diff --git a/matrix/docker-compose.yml b/matrix/docker-compose.yml index 5964424..dd93d3d 100644 --- a/matrix/docker-compose.yml +++ b/matrix/docker-compose.yml @@ -61,11 +61,33 @@ services: else printf '\nenable_registration_without_verification: true\n' >> /data/homeserver.yaml fi + # ===== BRIDGES: App-Service Registration-Dateien eintragen ===== + if ! grep -q "app_service_config_files:" /data/homeserver.yaml; then + printf '\napp_service_config_files:\n - /data/discord-registration.yaml\n - /data/whatsapp-registration.yaml\n' >> /data/homeserver.yaml + fi echo "Starting Synapse..." exec /start.py volumes: - synapse_data:/data + mautrix-discord: + image: dock.mau.dev/mautrix/discord:latest + container_name: mautrix-discord + restart: unless-stopped + depends_on: + - synapse + volumes: + - ./mautrix-discord:/data + + mautrix-whatsapp: + image: dock.mau.dev/mautrix/whatsapp:latest + container_name: mautrix-whatsapp + restart: unless-stopped + depends_on: + - synapse + volumes: + - ./mautrix-whatsapp:/data + well-known: image: nginx:alpine container_name: matrix-well-known diff --git a/matrix/mautrix-discord/config.yaml b/matrix/mautrix-discord/config.yaml new file mode 100644 index 0000000..3555ac0 --- /dev/null +++ b/matrix/mautrix-discord/config.yaml @@ -0,0 +1,374 @@ +# Homeserver details. +homeserver: + # The address that this appservice can use to connect to the homeserver. + address: http://synapse:8008 + # The domain of the homeserver (also known as server_name, used for MXIDs, etc). + domain: matrix.theocloud.dev + + # What software is the homeserver running? + # Standard Matrix homeservers like Synapse, Dendrite and Conduit should just use "standard" here. + software: standard + # The URL to push real-time bridge status to. + # If set, the bridge will make POST requests to this URL whenever a user's discord connection state changes. + # The bridge will use the appservice as_token to authorize requests. + status_endpoint: null + # Endpoint for reporting per-message status. + message_send_checkpoint_endpoint: null + # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? + async_media: false + # Should the bridge use a websocket for connecting to the homeserver? + # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, + # mautrix-asmux (deprecated), and hungryserv (proprietary). + websocket: false + # How often should the websocket be pinged? Pinging will be disabled if this is zero. + ping_interval_seconds: 0 + +# Application service host/registration related details. +# Changing these values requires regeneration of the registration. +appservice: + # The address that the homeserver can use to connect to this appservice. + address: http://mautrix-discord:29334 + + # The hostname and port where this appservice should listen. + hostname: 0.0.0.0 + port: 29334 + + # Database config. + database: + # The database type. "sqlite3-fk-wal" and "postgres" are supported. + type: sqlite3-fk-wal + # The database URI. + # SQLite: A raw file path is supported, but `file:?_txlock=immediate` is recommended. + # https://github.com/mattn/go-sqlite3#connection-string + # Postgres: Connection string. For example, postgres://user:password@host/database?sslmode=disable + # To connect via Unix socket, use something like postgres:///dbname?host=/var/run/postgresql + uri: file:/data/mautrix-discord.db?_txlock=immediate + # Maximum number of connections. Mostly relevant for Postgres. + max_open_conns: 20 + max_idle_conns: 2 + # Maximum connection idle time and lifetime before they're closed. Disabled if null. + # Parsed with https://pkg.go.dev/time#ParseDuration + max_conn_idle_time: null + max_conn_lifetime: null + + # The unique ID of this appservice. + id: discord + # Appservice bot details. + bot: + # Username of the appservice bot. + username: discordbot + # Display name and avatar for bot. Set to "remove" to remove display name/avatar, leave empty + # to leave display name/avatar as-is. + displayname: Discord bridge bot + avatar: mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC + # Whether or not to receive ephemeral events via appservice transactions. + # Requires MSC2409 support (i.e. Synapse 1.22+). + ephemeral_events: true + # Should incoming events be handled asynchronously? + # This may be necessary for large public instances with lots of messages going through. + # However, messages will not be guaranteed to be bridged in the same order they were sent in. + async_transactions: false + + # Authentication tokens for AS <-> HS communication. Autogenerated; do not modify. + as_token: "x6d57blS92F9s3WsG9kSuQvcuFMUUzpQRmIBnyuzkXl8PSdGJRwBXE7PuPNE9KX7" + hs_token: "Oxxh2padb3ql8NZ8YngHYkVIJPscIbeeL8wyQcverDGPQrhfYAyfVYYsXyFYzQEP" + +# Bridge config +bridge: + # Localpart template of MXIDs for Discord users. + # {{.}} is replaced with the internal ID of the Discord user. + username_template: discord_{{.}} + # Displayname template for Discord users. This is also used as the room name in DMs if private_chat_portal_meta is enabled. + # Available variables: + # .ID - Internal user ID + # .Username - Legacy display/username on Discord + # .GlobalName - New displayname on Discord + # .Discriminator - The 4 numbers after the name on Discord + # .Bot - Whether the user is a bot + # .System - Whether the user is an official system user + # .Webhook - Whether the user is a webhook and is not an application + # .Application - Whether the user is an application + displayname_template: '{{if .Webhook}}Webhook{{else}}{{or .GlobalName .Username}}{{if .Bot}} (bot){{end}}{{end}}' + # Displayname template for Discord channels (bridged as rooms, or spaces when type=4). + # Available variables: + # .Name - Channel name, or user displayname (pre-formatted with displayname_template) in DMs. + # .ParentName - Parent channel name (used for categories). + # .GuildName - Guild name. + # .NSFW - Whether the channel is marked as NSFW. + # .Type - Channel type (see values at https://github.com/bwmarrin/discordgo/blob/v0.25.0/structs.go#L251-L267) + channel_name_template: '{{if or (eq .Type 3) (eq .Type 4)}}{{.Name}}{{else}}#{{.Name}}{{end}}' + # Displayname template for Discord guilds (bridged as spaces). + # Available variables: + # .Name - Guild name + guild_name_template: '{{.Name}}' + # Whether to explicitly set the avatar and room name for private chat portal rooms. + # If set to `default`, this will be enabled in encrypted rooms and disabled in unencrypted rooms. + # If set to `always`, all DM rooms will have explicit names and avatars set. + # If set to `never`, DM rooms will never have names and avatars set. + private_chat_portal_meta: default + # Publicly accessible base URL that Discord can use to reach the bridge, used for avatars in relay mode. + # If not set, avatars will not be bridged. Only the /mautrix-discord/avatar/{server}/{id}/{hash} endpoint is used on this address. + # This should not have a trailing slash, the endpoint above will be appended to the provided address. + public_address: null + # A random key used to sign the avatar URLs. The bridge will only accept requests with a valid signature. + avatar_proxy_key: Tn5pmWYa3BOLGVjHd7YUwGt9nxLKDHOB + portal_message_buffer: 128 + # Number of private channel portals to create on bridge startup. + # Other portals will be created when receiving messages. + startup_private_channel_create_limit: 100 + # Should the bridge send a read receipt from the bridge bot when a message has been sent to Discord? + delivery_receipts: false + # Whether the bridge should send the message status as a custom com.beeper.message_send_status event. + message_status_events: false + # Whether the bridge should send error notices via m.notice events when a message fails to bridge. + message_error_notices: true + # Should the bridge use space-restricted join rules instead of invite-only for guild rooms? + # This can avoid unnecessary invite events in guild rooms when members are synced in. + restricted_rooms: false + # Should the bridge automatically join the user to threads on Discord when the thread is opened on Matrix? + # This only works with clients that support thread read receipts (MSC3771 added in Matrix v1.4). + autojoin_thread_on_open: true + # Should inline fields in Discord embeds be bridged as HTML tables to Matrix? + # Tables aren't supported in all clients, but are the only way to emulate the Discord inline field UI. + embed_fields_as_tables: true + # Should guild channels be muted when the portal is created? This only meant for single-user instances, + # it won't mute it for all users if there are multiple Matrix users in the same Discord guild. + mute_channels_on_create: false + # Should the bridge update the m.direct account data event when double puppeting is enabled. + # Note that updating the m.direct event is not atomic (except with mautrix-asmux) + # and is therefore prone to race conditions. + sync_direct_chat_list: false + # Set this to true to tell the bridge to re-send m.bridge events to all rooms on the next run. + # This field will automatically be changed back to false after it, except if the config file is not writable. + resend_bridge_info: false + # Should incoming custom emoji reactions be bridged as mxc:// URIs? + # If set to false, custom emoji reactions will be bridged as the shortcode instead, and the image won't be available. + custom_emoji_reactions: true + # Should the bridge attempt to completely delete portal rooms when a channel is deleted on Discord? + # If true, the bridge will try to kick Matrix users from the room. Otherwise, the bridge only makes ghosts leave. + delete_portal_on_channel_delete: false + # Should the bridge delete all portal rooms when you leave a guild on Discord? + # This only applies if the guild has no other Matrix users on this bridge instance. + delete_guild_on_leave: true + # Whether or not created rooms should have federation enabled. + # If false, created portal rooms will never be federated. + federate_rooms: true + # Prefix messages from webhooks with the profile info? This can be used along with a custom displayname_template + # to better handle webhooks that change their name all the time (like ones used by bridges). + # + # This will use the fallback mode in MSC4144, which means clients that support MSC4144 will not show the prefix + # (and will instead show the name and avatar as the message sender). + prefix_webhook_messages: true + # Bridge webhook avatars? + enable_webhook_avatars: true + # Should the bridge upload media to the Discord CDN directly before sending the message when using a user token, + # like the official client does? The other option is sending the media in the message send request as a form part + # (which is always used by bots and webhooks). + use_discord_cdn_upload: true + # Proxy for Discord connections + proxy: + # Should mxc uris copied from Discord be cached? + # This can be `never` to never cache, `unencrypted` to only cache unencrypted mxc uris, or `always` to cache everything. + # If you have a media repo that generates non-unique mxc uris, you should set this to never. + cache_media: unencrypted + # Settings for converting Discord media to custom mxc:// URIs instead of reuploading. + # More details can be found at https://docs.mau.fi/bridges/go/discord/direct-media.html + direct_media: + # Should custom mxc:// URIs be used instead of reuploading media? + enabled: false + # The server name to use for the custom mxc:// URIs. + # This server name will effectively be a real Matrix server, it just won't implement anything other than media. + # You must either set up .well-known delegation from this domain to the bridge, or proxy the domain directly to the bridge. + server_name: discord-media.example.com + # Optionally a custom .well-known response. This defaults to `server_name:443` + well_known_response: + # The bridge supports MSC3860 media download redirects and will use them if the requester supports it. + # Optionally, you can force redirects and not allow proxying at all by setting this to false. + allow_proxy: true + # Matrix server signing key to make the federation tester pass, same format as synapse's .signing.key file. + # This key is also used to sign the mxc:// URIs to ensure only the bridge can generate them. + server_key: ed25519 E3XWBQ VCRijepbAr65bxRWizMEfyZfNxGidhRdxyvW9COZvTU + # Settings for converting animated stickers. + animated_sticker: + # Format to which animated stickers should be converted. + # disable - No conversion, send as-is (lottie JSON) + # png - converts to non-animated png (fastest) + # gif - converts to animated gif + # webm - converts to webm video, requires ffmpeg executable with vp9 codec and webm container support + # webp - converts to animated webp, requires ffmpeg executable with webp codec/container support + target: webp + # Arguments for converter. All converters take width and height. + args: + width: 320 + height: 320 + fps: 25 # only for webm, webp and gif (2, 5, 10, 20 or 25 recommended) + # Servers to always allow double puppeting from + double_puppet_server_map: + example.com: https://example.com + # Allow using double puppeting from any server with a valid client .well-known file. + double_puppet_allow_discovery: false + # Shared secrets for https://github.com/devture/matrix-synapse-shared-secret-auth + # + # If set, double puppeting will be enabled automatically for local users + # instead of users having to find an access token and run `login-matrix` + # manually. + login_shared_secret_map: + example.com: foobar + + # The prefix for commands. Only required in non-management rooms. + command_prefix: '!discord' + + # Messages sent upon joining a management room. + # Markdown is supported. The defaults are listed below. + management_room_text: + # Sent when joining a room. + welcome: "Hello, I'm a Discord bridge bot." + # Sent when joining a management room and the user is already logged in. + welcome_connected: "Use `help` for help." + # Sent when joining a management room and the user is not logged in. + welcome_unconnected: "Use `help` for help or `login` to log in." + # Optional extra text sent when joining a management room. + additional_help: "" + # Settings for backfilling messages. + backfill: + # Limits for forward backfilling. + forward_limits: + # Initial backfill (when creating portal). 0 means backfill is disabled. + # A special unlimited value is not supported, you must set a limit. Initial backfill will + # fetch all messages first before backfilling anything, so high limits can take a lot of time. + initial: + dm: 100 + channel: 30 + thread: 30 + # Missed message backfill (on startup). + # 0 means backfill is disabled, -1 means fetch all messages since last bridged message. + # When using unlimited backfill (-1), messages are backfilled as they are fetched. + # With limits, all messages up to the limit are fetched first and backfilled afterwards. + missed: + dm: 0 + channel: 0 + thread: 0 + # Maximum members in a guild to enable backfilling. Set to -1 to disable limit. + # This can be used as a rough heuristic to disable backfilling in channels that are too active. + # Currently only applies to missed message backfill. + max_guild_members: -1 + + # End-to-bridge encryption support options. + # + # See https://docs.mau.fi/bridges/general/end-to-bridge-encryption.html for more info. + encryption: + # Allow encryption, work in group chat rooms with e2ee enabled + allow: true + # Default to encryption, force-enable encryption in all portals the bridge creates + # This will cause the bridge bot to be in private chats for the encryption to work properly. + default: false + # Whether to use MSC2409/MSC3202 instead of /sync long polling for receiving encryption-related data. + # Changing this option requires updating the appservice registration file. + appservice: false + # Whether to use MSC4190 instead of appservice login to create the bridge bot device. + # Requires the homeserver to support MSC4190 and the device masquerading parts of MSC3202. + # Only relevant when using end-to-bridge encryption, required when using encryption with next-gen auth (MSC3861). + # Changing this option requires updating the appservice registration file. + msc4190: false + # Require encryption, drop any unencrypted messages. + require: false + # Enable key sharing? If enabled, key requests for rooms where users are in will be fulfilled. + # You must use a client that supports requesting keys from other users to use this feature. + allow_key_sharing: false + # Should users mentions be in the event wire content to enable the server to send push notifications? + plaintext_mentions: false + # Options for deleting megolm sessions from the bridge. + delete_keys: + # Beeper-specific: delete outbound sessions when hungryserv confirms + # that the user has uploaded the key to key backup. + delete_outbound_on_ack: false + # Don't store outbound sessions in the inbound table. + dont_store_outbound: false + # Ratchet megolm sessions forward after decrypting messages. + ratchet_on_decrypt: false + # Delete fully used keys (index >= max_messages) after decrypting messages. + delete_fully_used_on_decrypt: false + # Delete previous megolm sessions from same device when receiving a new one. + delete_prev_on_new_session: false + # Delete megolm sessions received from a device when the device is deleted. + delete_on_device_delete: false + # Periodically delete megolm sessions when 2x max_age has passed since receiving the session. + periodically_delete_expired: false + # Delete inbound megolm sessions that don't have the received_at field used for + # automatic ratcheting and expired session deletion. This is meant as a migration + # to delete old keys prior to the bridge update. + delete_outdated_inbound: false + # What level of device verification should be required from users? + # + # Valid levels: + # unverified - Send keys to all device in the room. + # cross-signed-untrusted - Require valid cross-signing, but trust all cross-signing keys. + # cross-signed-tofu - Require valid cross-signing, trust cross-signing keys on first use (and reject changes). + # cross-signed-verified - Require valid cross-signing, plus a valid user signature from the bridge bot. + # Note that creating user signatures from the bridge bot is not currently possible. + # verified - Require manual per-device verification + # (currently only possible by modifying the `trust` column in the `crypto_device` database table). + verification_levels: + # Minimum level for which the bridge should send keys to when bridging messages from WhatsApp to Matrix. + receive: unverified + # Minimum level that the bridge should accept for incoming Matrix messages. + send: unverified + # Minimum level that the bridge should require for accepting key requests. + share: cross-signed-tofu + # Options for Megolm room key rotation. These options allow you to + # configure the m.room.encryption event content. See: + # https://spec.matrix.org/v1.3/client-server-api/#mroomencryption for + # more information about that event. + rotation: + # Enable custom Megolm room key rotation settings. Note that these + # settings will only apply to rooms created after this option is + # set. + enable_custom: false + # The maximum number of milliseconds a session should be used + # before changing it. The Matrix spec recommends 604800000 (a week) + # as the default. + milliseconds: 604800000 + # The maximum number of messages that should be sent with a given a + # session before changing it. The Matrix spec recommends 100 as the + # default. + messages: 100 + # Disable rotating keys when a user's devices change? + # You should not enable this option unless you understand all the implications. + disable_device_change_key_rotation: false + + # Settings for provisioning API + provisioning: + # Prefix for the provisioning API paths. + prefix: /_matrix/provision + # Shared secret for authentication. If set to "generate", a random secret will be generated, + # or if set to "disable", the provisioning API will be disabled. + shared_secret: s50aMG2kGmP0EIVGqqZ9P07cPJiu3uPg0tf7X8Rg4VI0sTLq9HPoSHyS2qIrL509 + # Enable debug API at /debug with provisioning authentication. + debug_endpoints: false + + # Permissions for using the bridge. + # Permitted values: + # relay - Talk through the relaybot (if enabled), no access otherwise + # user - Access to use the bridge to chat with a Discord account. + # admin - User level and some additional administration tools + # Permitted keys: + # * - All Matrix users + # domain - All users on that homeserver + # mxid - Specific user + permissions: + "*": user + "matrix.theocloud.dev": user + "@admin:example.com": admin + +# Logging config. See https://github.com/tulir/zeroconfig for details. +logging: + min_level: debug + writers: + - type: stdout + format: pretty-colored + - type: file + format: json + filename: ./logs/mautrix-discord.log + max_size: 100 + max_backups: 10 + compress: true diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-52-14.581.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-52-14.581.log.gz new file mode 100644 index 0000000..4cc1e27 Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-52-14.581.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-53-14.819.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-53-14.819.log.gz new file mode 100644 index 0000000..2720867 Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-53-14.819.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-54-15.045.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-54-15.045.log.gz new file mode 100644 index 0000000..cf4dac6 Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-54-15.045.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-55-15.264.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-55-15.264.log.gz new file mode 100644 index 0000000..59f87bb Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-55-15.264.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-56-15.468.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-56-15.468.log.gz new file mode 100644 index 0000000..cc74760 Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T18-56-15.468.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-10-06.976.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-10-06.976.log.gz new file mode 100644 index 0000000..0d5a994 Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-10-06.976.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-10-39.471.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-10-39.471.log.gz new file mode 100644 index 0000000..731899d Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-10-39.471.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-11-11.979.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-11-11.979.log.gz new file mode 100644 index 0000000..55a3868 Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-11-11.979.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-11-44.475.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-11-44.475.log.gz new file mode 100644 index 0000000..a75056b Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-11-44.475.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-12-13.033.log.gz b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-12-13.033.log.gz new file mode 100644 index 0000000..6c67f6a Binary files /dev/null and b/matrix/mautrix-discord/logs/mautrix-discord-2026-03-06T19-12-13.033.log.gz differ diff --git a/matrix/mautrix-discord/logs/mautrix-discord.log b/matrix/mautrix-discord/logs/mautrix-discord.log new file mode 100644 index 0000000..bf07e37 --- /dev/null +++ b/matrix/mautrix-discord/logs/mautrix-discord.log @@ -0,0 +1,11132 @@ +{"level":"info","name":"mautrix-discord","version":"0.7.6","built_at":"Feb 16 2026, 14:55:50","go_version":"go1.26.0","time":"2026-03-06T19:12:13.034099089Z","message":"Initializing bridge"} +{"level":"debug","time":"2026-03-06T19:12:13.03418681Z","message":"Initializing database connection"} +{"level":"debug","time":"2026-03-06T19:12:13.034222081Z","message":"Initializing state store"} +{"level":"debug","time":"2026-03-06T19:12:13.0361484Z","message":"Initializing Matrix event processor"} +{"level":"debug","time":"2026-03-06T19:12:13.036192121Z","message":"Initializing Matrix event handler"} +{"level":"info","time":"2026-03-06T19:12:13.036252953Z","message":"Bridge initialization complete, starting..."} +{"level":"debug","time":"2026-03-06T19:12:13.036269785Z","message":"Running database upgrades"} +{"level":"info","db_section":"main","current_version":24,"oldest_compatible_version":19,"latest_known_version":24,"time":"2026-03-06T19:12:13.03853875Z","message":"Database is up to date"} +{"level":"info","db_section":"matrix_state","current_version":5,"oldest_compatible_version":5,"latest_known_version":5,"time":"2026-03-06T19:12:13.03878236Z","message":"Database is up to date"} +{"level":"debug","time":"2026-03-06T19:12:13.03884899Z","message":"Starting application service HTTP server"} +{"level":"debug","time":"2026-03-06T19:12:13.038918971Z","message":"Checking connection to homeserver"} +{"level":"info","address":"0.0.0.0:29334","time":"2026-03-06T19:12:13.039086313Z","message":"Starting HTTP listener"} +{"level":"warn","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40discordbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","retry_in_seconds":4,"time":"2026-03-06T19:12:13.049116358Z","message":"Request failed, retrying"} +{"level":"warn","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40discordbot%3Amatrix.theocloud.dev\": dial tcp 192.168.96.6:8008: connect: connection refused","retry_in_seconds":8,"time":"2026-03-06T19:12:17.051782398Z","message":"Request failed, retrying"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1,"method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":5.903485,"status_code":200,"response_length":1211,"response_mime":"application/json","time":"2026-03-06T19:12:25.065122943Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/account/whoami?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":1.998536,"status_code":200,"response_length":63,"response_mime":"application/json","time":"2026-03-06T19:12:25.067493598Z","message":"Request completed"} +{"level":"debug","txn_id":"mautrix-go_1772824345067597663_1","time":"2026-03-06T19:12:25.157281525Z","message":"Received ping from homeserver"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3,"method":"POST","url":"http://synapse:8008/_matrix/client/v1/appservice/discord/ping?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":91.829066,"status_code":200,"response_length":18,"response_mime":"application/json","req_body":{"transaction_id":"mautrix-go_1772824345067597663_1"},"time":"2026-03-06T19:12:25.159544065Z","message":"Request completed"} +{"level":"debug","txn_id":"mautrix-go_1772824345067597663_1","duration_ms":89,"time":"2026-03-06T19:12:25.159601685Z","message":"Homeserver -> bridge connection works"} +{"level":"debug","component":"crypto","time":"2026-03-06T19:12:25.159625431Z","message":"Initializing end-to-bridge encryption..."} +{"level":"info","db_section":"crypto","current_version":0,"oldest_compatible_version":0,"latest_known_version":10,"time":"2026-03-06T19:12:25.160068929Z","message":"Preparing to update database schema"} +{"level":"info","db_section":"crypto","from":0,"to":10,"single_txn":true,"description":"Latest revision","time":"2026-03-06T19:12:25.160109996Z","message":"Upgrading database"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/config?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":2.119642,"status_code":200,"response_length":26,"response_mime":"application/json","time":"2026-03-06T19:12:25.161861919Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":5,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/login?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":3.233347,"status_code":200,"response_length":78,"response_mime":"application/json","time":"2026-03-06T19:12:25.166086467Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":6,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/login?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":23.745384,"status_code":200,"response_length":172,"response_mime":"application/json","req_body":{"type":"m.login.application_service","identifier":{"type":"m.id.user","user":"@discordbot:matrix.theocloud.dev"},"initial_device_display_name":"Discord bridge"},"time":"2026-03-06T19:12:25.190256631Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","user_id":"@discordbot:matrix.theocloud.dev","device_id":"HIQHDALBQU","time":"2026-03-06T19:12:25.190416221Z","message":"Stored credentials after login"} +{"level":"debug","component":"crypto","device_id":"HIQHDALBQU","time":"2026-03-06T19:12:25.190465529Z","message":"Logged in as bridge bot"} +{"level":"debug","time":"2026-03-06T19:12:25.191131196Z","message":"Starting event processor"} +{"level":"debug","module":"Provisioning","time":"2026-03-06T19:12:25.191208302Z","message":"Enabling provisioning API at /_matrix/provision"} +{"level":"debug","time":"2026-03-06T19:12:25.191261591Z","message":"Updating bot profile"} +{"level":"debug","component":"crypto","time":"2026-03-06T19:12:25.191414685Z","message":"Starting syncer for receiving to-device messages"} +{"level":"info","time":"2026-03-06T19:12:25.191645584Z","message":"Bridge started!"} +{"level":"debug","time":"2026-03-06T19:12:25.191797141Z","message":"Starting users"} +{"level":"debug","time":"2026-03-06T19:12:25.191933893Z","message":"Starting custom puppets"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":7,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discordbot:matrix.theocloud.dev/avatar_url?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":4.809266,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:12:25.196478946Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":8,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/user/@discordbot:matrix.theocloud.dev/filter?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":13.479692,"status_code":200,"response_length":17,"response_mime":"application/json","req_body":{"account_data":{"not_types":["*"]},"presence":{"not_types":["*"]},"room":{"account_data":{"not_types":["*"]},"ephemeral":{"not_types":["*"]},"state":{"not_types":["*"]},"timeline":{"not_types":["*"]}}},"time":"2026-03-06T19:12:25.206693304Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":9,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discordbot:matrix.theocloud.dev/avatar_url?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":23.130632,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC"},"time":"2026-03-06T19:12:25.219834052Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":11,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discordbot:matrix.theocloud.dev/displayname?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":4.770574,"status_code":200,"response_length":28,"response_mime":"application/json","time":"2026-03-06T19:12:25.224988968Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":12,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discordbot:matrix.theocloud.dev/displayname?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":9.156318,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Discord bridge bot"},"time":"2026-03-06T19:12:25.234388336Z","message":"Request completed"} +{"level":"debug","transaction_id":"1","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:12:25.244202009Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1","time":"2026-03-06T19:12:25.244345186Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":10,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":44.593572,"status_code":200,"response_length":142,"response_mime":"application/json","time":"2026-03-06T19:12:25.251897018Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:12:25.252187","keys_left":0,"time":"2026-03-06T19:12:25.252200273Z","message":"Sync response said we have less than 50 signed curve25519 keys left, sharing new ones..."} +{"level":"debug","component":"crypto","trace_id":"19:12:25.252187","time":"2026-03-06T19:12:25.252958201Z","message":"Going to upload initial account keys"} +{"level":"debug","component":"crypto","trace_id":"19:12:25.252187","count":50,"time":"2026-03-06T19:12:25.270415688Z","message":"Uploading one-time keys"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":13,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/keys/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":15.388899,"status_code":200,"response_length":48,"response_mime":"application/json","req_body":{"device_keys":{"user_id":"@discordbot:matrix.theocloud.dev","device_id":"HIQHDALBQU","algorithms":["m.megolm.v1.aes-sha2","m.olm.v1.curve25519-aes-sha2"],"keys":{"curve25519:HIQHDALBQU":"OPooKl0uuqw4uEn95GNgmzDHoiTIBDFb2mU4kmFxj3A","ed25519:HIQHDALBQU":"7LKGvK28R3cQl+rICINYl8av5JUeVPFAuN2FxgXp9GY"},"signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"IR0sbw20qXIqZriUEZ1QjcY966oilvXaJxeGH8aP5DmP9QlmEFDcLBcEMFIAEkhkvLUiQ9XPHjuMqbqF6j8zCA"}}},"one_time_keys":{"signed_curve25519:AAAAAQ":{"key":"S7uCpmpuJdJ1Kbh2ESGDj3cg8oYd49ejUwG8Gy7CA1g","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"tG5gZBpHBsvHXXvX+yqTMOl1yTkyxQDybyW/dnthkU+kZcAOQuUjpusz6BDZfx8B+cch6PT0kZo1PyWvbZz4Aw"}}},"signed_curve25519:AAAAAg":{"key":"bGggd95uAJtFI4Nl3YDym4Wedex1FWb5Lfu4oIOwlhs","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"O+6GCpnh4nZiay97G/saHeazfSrfP3nGps/kRCK6IEIoao9BrmlOVCzLAl+RXWZRIDjSITykGwhwhTXLpcAvBw"}}},"signed_curve25519:AAAAAw":{"key":"1PbXqbMcX+B/YSo7YWLhlaZdc+eF+6TI0EgA0NqxYCs","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"DF2hXjE3NG3RvVQCkJeX8DazkYCzGM+9XCc3YDwHPRqGOKzTFMvQ4vkSZN1UPirPm0xUTDm1ccclAsHAstVcDQ"}}},"signed_curve25519:AAAABA":{"key":"Gcg8gQPkM8qeqLFA8URm/tclk8qLSQOweGMaj5b8nk0","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"kEBhQcGcTI0NCGCPz4A8Mmf7Z9oafSbLIm7D8PT2XMFct4FrFUExiYygnPRISd4XwYnXPviYgSEBj0MCIr4KBw"}}},"signed_curve25519:AAAABQ":{"key":"GneHVpAnEoA4v1w1RfAvuxtkbRRpQIEjB7AquGsOiUw","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"/g4fbbd8T2r9EHWu7VWwVKTqrnP90c439sPuQeXbdY/E9kQVl0TZt+j4DaDsVCVME5HfxzIpabWwPxX5z/17Dw"}}},"signed_curve25519:AAAABg":{"key":"OdKa5Ak+Osn2SYXThJpmt/NFUKhd/U6Rca3CVLAUrRA","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"f7A+WPMXJ5FwS7+aq1+u9XP7M68R/beRcYznYyulmruBsvpmOGgqBeTP8ICnEQg+FCWLNpcapCM11+KOw85IDQ"}}},"signed_curve25519:AAAABw":{"key":"ts0RM+tgC/0olbtOuLAfSnduGnxM2mB00gavlQlRLjo","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"FHuaMK/O8MbUtlwTS9U88Wr7W6g8a3KD6vp6fOx7u28GvEHotmq2KWQ4dlNKr7uzyJWvPvSJx6zpBpZi2g5TBg"}}},"signed_curve25519:AAAACA":{"key":"gBQJ7l2JmRBJ3huFrJRWXkLe+3de9Ba1mh6n9KbCtWk","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"gOyaWJ4J0rbZr7/WO6YjdJH9Z1gPy2e2cn0tgSGQdPVCkjE4HUpS4Ht49FLpbjqGXfRacv4QMuB9BVurvQV5Aw"}}},"signed_curve25519:AAAACQ":{"key":"TP+jK6SWS6TaOq1ImscLnTcPv2mwXyzrZ36R2Qb+/QM","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"RHR6iQiAUlzJlrL3lPx6hEpJQJ3RdEky+SDB/fIPlL0xkTKCy1AG1FVmZCklpClkP0LR+OhBJFYERQFAY0wkAA"}}},"signed_curve25519:AAAACg":{"key":"CBBg7GpugdWauxF+j429zIVnCp46E9J2gZY9/FY/bA8","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"1c9Io5laVntq9ttmTfzMTI18PSX8o6poK0umsG482DQkN892B5iOH3ByOQvtkvRofcm3u1KYNowl0cFdEKbwAw"}}},"signed_curve25519:AAAACw":{"key":"xnIHu71hwW5kBT45FmCEL34QRd3rc5rkNmCEJFvAXEM","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"SkX3NM30tafkoamrcRLQeMyXxcyfsTPjWmAuInVipI+xuh5gDRmuEv9lKKj4scEzZoYXZGhkr32XRm1EpvC0Ag"}}},"signed_curve25519:AAAADA":{"key":"RAXeYh2qi9EoZLnj5laLT/1ZfsrzYirG3J8V28yraHY","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"YLQPBbMDtzPdPIAnBpCTVu0vB8M4mB2LRfk2CD4XyPSBQOwVKMANoUroOYx8k+Bu5D6iCwcSyveqSue93SmBDQ"}}},"signed_curve25519:AAAADQ":{"key":"yCeWc7WfU8hbpJHSohp5g2ULe221qba8WXiaRK6G/Qg","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"5Na6YZ2cF0oJYFO+Ayk4AeZQ6/YiFNz/O2+As4fG7WGMaKZs8efN+WANL1GUTX6dk/8TwuxD+9O8vdLPWBJGBA"}}},"signed_curve25519:AAAADg":{"key":"iT+QyshNyLhFMNdCQMfe1TvwTjOqZq6y5dRaDAuz4TE","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"RDbRpzdIpIGyDv6RgTUm0D1Qdd+EZ7VbUYevyYtW4KIPzZDZ5g6a9U0rlyNu6o0LynjrkriIONropxDQtuSqDw"}}},"signed_curve25519:AAAADw":{"key":"RgewAdt73YaUlcvTRxgIdoG4tYiaZqYd/zKXiUgygiI","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"a+Uuq8jWU9Yc2AIugjvCw6jBQ7hRD1tYfAfc0KTQQZrzebbBnGpVALOfo6zDuiXw6vwPl7NIyciO9nysUtHJBw"}}},"signed_curve25519:AAAAEA":{"key":"JUyIT9EPGUQJTSB+pHyuwNWAmcF13WHOaYsDdNJdBCI","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"2/zTnEab8043hiJ57kytxWU4x4rXSk2YgY/VEFak/thQSku4HZcHvPZ9/YIa/qEctUorWpGGbIbmrNJxjQmRCA"}}},"signed_curve25519:AAAAEQ":{"key":"7o1LZXd5ra5CyGlLjpw2e/t4iK8UCXw7c9kV+2+AIjI","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"G3Z/DYVNb9teVZg/6co8GIm/rg32HCKwvZL/uB0izps+kORJ7OPbYmKUkuCnCav2qdxiNEbWUb6A2sR15sUJCg"}}},"signed_curve25519:AAAAEg":{"key":"nc+iGpoJUp219guvWyIyw37SHKYeR5DMZJPC7OhVERs","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"k6w2OOLl9e+khX2a2b4UOcHENbkMYUe8BuvUNUyDY0kxceP6H3Pge53PeIz6EVr4ZRTquI7NQLGMYYV95KgFBg"}}},"signed_curve25519:AAAAEw":{"key":"65fiJI/6H/0kfNBFxuNnXISfaAX+z8BglTq2D0+XPw4","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"oyYRhMsOMQakdPvtiRMRilHvW/eNJ/5Znpkh2M9CHKpG26ZoUD3eh+H2XNmNY2ryBAFH0ThZb2Oi6qcaLy9FAg"}}},"signed_curve25519:AAAAFA":{"key":"Pr/sY4KqG5olqjfvByuUMYrdghpdJnxxrDYNNgoL9RM","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"m59RavfxMR4L0qxCBc2PEq8aanXqpanoE5Ttmjm/vawWBSIOviXPCV1mG+B+HFmyZNpBeXRHGKRgbK/zI8qtCA"}}},"signed_curve25519:AAAAFQ":{"key":"5ZHTsQaWMhSgU9FSDu8sdPy1CQ3kCQc3Fv0UwHzsyR8","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"COjTzN0Ftjoasvs/fixcgmhRa3/40wLjgRcCQ9WE/EVEj/NwK3wI4kyiku+1Hzx+aqkeiG0eIIpxWPrW2oBnDw"}}},"signed_curve25519:AAAAFg":{"key":"2eDhImc8tct4JcWv+ssXVu3/40n/ZUjcdsC5FsUbyww","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"hJH4ufBD6p25pViWnH7smwqVnEJeDwEOalonljS9/GDMCD7xY2FfKHCrMr2ggNTWRp7P+al5wfLm96JaIw1QDQ"}}},"signed_curve25519:AAAAFw":{"key":"oVcEqEy9fAy0fMvy6i1wVV5YXAH+OGPNcryKaJwb5W4","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"Iv3AyUL7HyZQLP8DaHbVV9pxIpsxF2hT4YBIYZMvtcnsFKFf71jSd5L4AOI1wB1UH/t08XgIM13VDNrOqPn7AQ"}}},"signed_curve25519:AAAAGA":{"key":"RlIMfHc1UEYORvi+9BfKjt2AaDjP34PCwki+WGIhO3I","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"ryaR9IdsTywphKSts0rDTePDNnkdklDOl5ZG0/l9Zh08CSPMcnDFOy5UeS1G7X5wiJvWQ2bu4lYreCFyVshQDg"}}},"signed_curve25519:AAAAGQ":{"key":"yEE21t82rehTq2sowIV49UXOkp6pGj44zvMeXqcs3V4","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"NS9A7ihTUjDmpgnVbMEiZnp1FTFLI6GdIEvvmiiOJQmcMuyPVJE/neN5FQ+d5O6dzfLoxkQj3PuhbZOKDPh7CA"}}},"signed_curve25519:AAAAGg":{"key":"4nbueWTMISCYBysOs9veCc2R7j1mEKflHWTyiiMU+E4","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"je0vpi/CluffXwsfbQJRXE95TMtd6pK0VQ9YEq1x+bo+vvBffsRHZSlSVQ+Ta3THJvdhHRnvT+W0fkV3rCy9AA"}}},"signed_curve25519:AAAAGw":{"key":"wFIoIElVYrFRjMvAg0+Sp7auxxyk0/4u1HUNX+VbNDg","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"k1THs3iSsfYyWgS9N6jVwQuL+AMrBDK0572u7iX/KmCoY3dXfppWp/V2thfTUjqDwMh/N03Dv0fa+OnuZb6PDg"}}},"signed_curve25519:AAAAHA":{"key":"78gCCQ5u3vDIdNcLYrEgxFe3FcOJKY9Y4IYg1nTs5HU","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"mlILTc5D/2Brn8mrzdFp7ivQ7ROn2Stkg9KsP4e/al/3lpucpDWxYSlCSoGMwIvv1WxR2sUy93lSwGMY7jCdAQ"}}},"signed_curve25519:AAAAHQ":{"key":"s9RNUjNqSjIJg3Hq0spYTjLYg95EtIn2KYqTGP2mR2M","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"6rv3Lvjw6qZDQ5D3pgMWD3bqE+VV6/vufTgUDVVjAXo7sbVgd/cBuaZVG+6ztbVLnVUKjcw8nBukrE7y6XCXAw"}}},"signed_curve25519:AAAAHg":{"key":"lCu/xTiig/tcn6YnYmqJnHXSVNtc7MRnsfy1K98qoAc","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"c27lH2ZK5ZFswClNSYn5EPghJvu3Q7WTL+sQoGPxOhD2hWnDFM2rrNvmxicO2AFc8XUFKsvYJMbIr0gtdf57CQ"}}},"signed_curve25519:AAAAHw":{"key":"xJoHMZaUbKZScNJkUeRYYZd7Dx88E6FZItkI/rtxkVQ","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"m7jqM9ixZHY8Q4Qh/ZYNFVG7j4PDlvPCaQXynPWqmImkWvTkb6UiNW9HWuZog+ucaV3G/fzW+K1XS++9k3CMBw"}}},"signed_curve25519:AAAAIA":{"key":"S/VH2IXV45ltXtDpAoHd6un+tGghVbLIAr6bvoROoFs","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"7aMqprbpNqWZ2w4wb0cLWrKJpIVlkibGgG2G/Ty4uky2w2jtHKVF2naaxiEizBmQfGkQIfA4o4b3fYYjXrGhDQ"}}},"signed_curve25519:AAAAIQ":{"key":"xHU3sWJKPYRFhjCSc8HrWkxwn6oc4/OcFun5cYIYVxU","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"K58mWlw0awkoo/ywhDpNqRBfXaAP+WQxdOKbFr6PYS+jQNYxqymGyQmduDxl1x0V4E3FDuSf39r/fAG9DQfHCw"}}},"signed_curve25519:AAAAIg":{"key":"BmS/k/PLOsqvsx3BJNlhwPymsa9Eg0Ca7UOOSvI4nQs","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"rF6z5ufG2GiOMm4V62zQXJ5LSxyU77jDDmCk5ZQ5Jkpvl2hB4OTqpokSwfgtrkAq7eaVeY7e2uocUZsazvXZBQ"}}},"signed_curve25519:AAAAIw":{"key":"i2LS6gwdHGeh72431RAvrnVkuGv82Vqb32oVySk2ECY","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"wd/g4RovQWfWwGfyi1Y8HXS1oQj0KDJ6QZiij0U7xMzYtmFDU5JisDfM8x1Nqg/4FUWLsImvWsJN0AwxybRsCg"}}},"signed_curve25519:AAAAJA":{"key":"jMbJLu2oyu1OnSv+xHTFhIXreGS+S4umkBurxcQUaG4","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"BE2/Y+mDVs0nt+n/auWykopJ6uAtVzRwum6ilVDgukvbTWBolIDYnTYxEB0fyW2n/JHZFsLc4/taDZWpQoL4AQ"}}},"signed_curve25519:AAAAJQ":{"key":"dCcDv5fYCAi7LwFqH2I5VRCp/9HdegLEkfhqL7w9+Vk","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"+xeIRx9brEfD8sCyEFCbBbA/PCKGEq04NP5ptVnv/D3tkP5s53+MJ8HdhGEmqlZnLCnIHzcy5YuQofH+O9+mCg"}}},"signed_curve25519:AAAAJg":{"key":"QUB5fCBrfwlm1t9MBC3F0fHIswZgVGBEK3pOfVDNOhI","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"2RJZobZKGX51FO6H8FYQNMDYZuM5Zgs1sL+ca6//SBnCapPS8N5in+ON7buPn766P6pzLNzkh9uCt6QcJpXFBQ"}}},"signed_curve25519:AAAAJw":{"key":"+L94upxL0qHOqMKiUwqTwM9GWgb1mQud8RirnWgRZis","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"hWz+fp3eKvxAwfs10UXMmuVF63/O1h2wDeIv8tr1nT7CNrKWjUD1p1RQ0XDvgldeTJX2rBtxfGnsRgnTN14iCA"}}},"signed_curve25519:AAAAKA":{"key":"v6QRLi19Ue0Awh5IX4RhtT0gAj84QPwpRYFRUXlOBFo","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"5VjD7QdS+5s0NERFNJthWj6+QvptwqhBQ0X9p0IrkKWKoqF06CKZG6iSmQ15ZmVUbFCbcIrfuI0zCogfgeXdBQ"}}},"signed_curve25519:AAAAKQ":{"key":"LWa7qhMquzVmCNv0equHUK9eBkSJJ0bPCSEBj7QWih8","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"+hVj+p2WMxuAtPYql6aFv4MRQVRPzrLxy/GKlkY2YRzUSEB3RbDock0/zkYV9d8c3vbkd2nG1iuPYn6f0GPJDA"}}},"signed_curve25519:AAAAKg":{"key":"H5gg2+qAOE1V7NCnONzcSaJLnHRH3LngulB4xVVSyXc","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"iW4qWuWdsil5+cqR+XiuHwN9NzZvqtrHwRC73zzk9DeAJNoEqJBlVzjf3KdqIj5CkqZl8HPA1Vu/FUpeXRrXBA"}}},"signed_curve25519:AAAAKw":{"key":"gnAktnOuloVmQCWChXJYAeL7tsjEOM0tw9amssnDcHo","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"3fA0b5mGq7IzRImPlqSl8AmFNsyyih5UCyvYUoQImYKDC0HJ4o4JWo9oPIWPdwq9ppJPWiXVljyjJkAlGFbMDg"}}},"signed_curve25519:AAAALA":{"key":"su+Z2lSrcdusXRYkcyElxVn3dlSaIwUaPfNHVxynUSs","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"GFlp9x5M65Y/BDSAJq8d97zS+ECqBD6l9mHfg9qfSWHT0IkrEumw+a2SzRldCMbBXbrnIKq6uMRuHwYeexUeCw"}}},"signed_curve25519:AAAALQ":{"key":"0XeRcLdw7+Eir/N5MBc34bdfuofOFftFSJUSXMMDohs","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"hnHVfLZlDimfvrlonNZWlOm8FHTJRNEl+TSR+DW5/eoovqODf+KIPpa9WC/1m9lSE3mtHNOyYmYonNJxwifkAw"}}},"signed_curve25519:AAAALg":{"key":"gOPSh+MMVXPFeGbJVddSuOKV/vrh6jEyV1kkr/jiJB4","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"VmyPeRRJ5ayTZh0nRnq7o7ZmZDOxT0742v21y16q6sZZU3iMo0tCrSN2K0MdiljdET3KRwLmbrQ1ymgSNi3MCg"}}},"signed_curve25519:AAAALw":{"key":"Yi3mjPYYNeszCYt3o/vIM08bbiRLxz4wQpMvnQg6jiI","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"lb8dM6EvSe9KKGQpYZTmrGrb2mQJsabyt7h0Rus6/woxaZnK7hnvzNfDG34J2oaRxNrshdzjOXBhFai5MwwLCQ"}}},"signed_curve25519:AAAAMA":{"key":"QkakjBKoNiHVDg15vM2aEuGSCDHttD/1ogNnifsdrjQ","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"5o4vZ0ONDd0JPEdzeOxPEkVD2jPAbec4Gd5/LYrgLS3xdNw/ubHS04AatkB/ca7fhFyqWl0LpPsfSJzCM/FPDw"}}},"signed_curve25519:AAAAMQ":{"key":"2C2k4f09kUHforWVzeORlOLXvC1cEVfgon8sBOZrAig","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"NyaK2EBLkX3ccUE0M6qdVetnXH5iMJ4xC21WLs2UZEaFn+lliLSBJWulD0Xnc0FZYKPPI7ZeesB/H4gIWdt3Dw"}}},"signed_curve25519:AAAAMg":{"key":"NPmS7VBsiy5wpaJymdo2GzJXHYGE/82VWzjth30OaA0","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"64qKNOMZ+8DNqZqqNQNFu+TEf6aGvHl/gZooorFyTVMk70CV5QLLP/1BgTfm+zdXe1JVC9xIm6zG0Osg8moxBA"}}}}},"time":"2026-03-06T19:12:25.286291946Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:12:25.252187","time":"2026-03-06T19:12:25.287098904Z","message":"Successfully shared keys"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":14,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_885_0_350_361_1_83_88_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":2.982403,"status_code":200,"response_length":207,"response_mime":"application/json","time":"2026-03-06T19:12:25.290197036Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:12:25.290557","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:12:25.290583682Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:12:25.290557","time":"2026-03-06T19:12:25.29077072Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":15,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_885_0_350_361_1_83_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.281015,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:12:55.295209997Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":16,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_885_0_350_361_1_83_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30005.636008,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:13:25.301308989Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":17,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_886_0_350_363_1_83_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":11114.572519,"status_code":200,"response_length":1221,"response_mime":"application/json","time":"2026-03-06T19:13:36.41658056Z","message":"Request completed"} +{"level":"debug","transaction_id":"2","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:36.431090005Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2","time":"2026-03-06T19:13:36.431581065Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":19,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev/join?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":55.453686,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:13:36.488415672Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":20,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev/joined_members?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":6.028362,"status_code":200,"response_length":263,"response_mime":"application/json","time":"2026-03-06T19:13:36.495001166Z","message":"Request completed"} +{"level":"debug","transaction_id":"3","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:36.501171379Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3","time":"2026-03-06T19:13:36.501453192Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":18,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s472_886_0_350_364_1_83_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":99.729053,"status_code":200,"response_length":236,"response_mime":"application/json","time":"2026-03-06T19:13:36.516763937Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:13:36.517058","changes":["@discordbot:matrix.theocloud.dev","@theo:matrix.theocloud.dev"],"time":"2026-03-06T19:13:36.517083465Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:13:36.517058","time":"2026-03-06T19:13:36.517355431Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":21,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824416495847515_2?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.344099,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"Hello, I'm a Discord bridge bot."},"time":"2026-03-06T19:13:36.546507579Z","message":"Request completed"} +{"level":"debug","transaction_id":"4","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:36.556587839Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"4","time":"2026-03-06T19:13:36.556681078Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":23,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824416546858467_3?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":40.641685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"This room has been registered as your bridge management/status room."},"time":"2026-03-06T19:13:36.587603448Z","message":"Request completed"} +{"level":"debug","sender":"@theo:matrix.theocloud.dev","target":"@discordbot:matrix.theocloud.dev","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","time":"2026-03-06T19:13:36.587703532Z","message":"Registered room as management room with inviter"} +{"level":"debug","transaction_id":"5","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:36.596497787Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"5","time":"2026-03-06T19:13:36.596627623Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":24,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824416587886589_4?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":39.976507,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"Use `help` for help or `login` to log in.","format":"org.matrix.custom.html","formatted_body":"Use help for help or login to log in."},"time":"2026-03-06T19:13:36.627978406Z","message":"Request completed"} +{"level":"debug","message_checkpoint":{"event_id":"$_RxTF5CgMoVIpWixd4E7YdIj0WmQtUQYKXoXiJwOigs","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824416628,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.notice"},"time":"2026-03-06T19:13:36.6284636Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$TRCRksevnMkj3FmG7c-Zc4bZ3xxGgQmP-5ufquiTVGU","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824416628,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.notice"},"time":"2026-03-06T19:13:36.628518845Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"6","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:36.638580526Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"6","time":"2026-03-06T19:13:36.638672579Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Kx12CWYuU0l5eao9kln_u2l-5glQiR2IDJJlhAz3AdE","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824416638,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.notice"},"time":"2026-03-06T19:13:36.63880905Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"7","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:13:36.858963575Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"7","time":"2026-03-06T19:13:36.859137413Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":22,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s473_886_0_350_365_1_83_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":559.518849,"status_code":200,"response_length":2610,"response_mime":"application/json","time":"2026-03-06T19:13:37.077149038Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:13:37.077721","sender":"@theo:matrix.theocloud.dev","type":"m.room.encrypted","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","time":"2026-03-06T19:13:37.077731034Z","message":"Handling encrypted to-device event"} +{"level":"debug","component":"crypto","trace_id":"19:13:37.077721","sender":"@theo:matrix.theocloud.dev","type":"m.room.encrypted","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","new_olm_session_id":"ScVZIN2arsy/Jc9/ktyMyiu8Se5+3ecltooQDIsK5XE","olm_session_description":"sender chain index: 0 receiver chain indices: 0 skipped message keys:","time":"2026-03-06T19:13:37.079615377Z","message":"Created inbound olm session"} +{"level":"debug","component":"crypto","trace_id":"19:13:37.077721","sender":"@theo:matrix.theocloud.dev","type":"m.room.encrypted","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"qCjqyoWYmPyrt1WNvGePcENuonpZuYQy/33Q51RyWNk","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","max_age":"0s","max_messages":0,"is_scheduled":false,"time":"2026-03-06T19:13:37.08080081Z","message":"Received inbound group session"} +{"level":"debug","component":"crypto","trace_id":"19:13:37.080873","keys_left":0,"time":"2026-03-06T19:13:37.080880569Z","message":"Sync response said we have less than 50 signed curve25519 keys left, sharing new ones..."} +{"level":"debug","component":"crypto","trace_id":"19:13:37.080873","count":1,"time":"2026-03-06T19:13:37.081313452Z","message":"Uploading one-time keys"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":25,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/keys/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":8.915082,"status_code":200,"response_length":48,"response_mime":"application/json","req_body":{"one_time_keys":{"signed_curve25519:AAAAMw":{"key":"PkmcJpRCiKtWwOsejVN9MK+6SgfzveNchEXEBzQcm34","signatures":{"@discordbot:matrix.theocloud.dev":{"ed25519:HIQHDALBQU":"2EymcUKjB8Doj72H3l0yHpIWJpFRIzAdlFan6fvkWfaDYXvLmLglwS49/P2jKS0f97BqgX70CaYJlXy7VDJtCw"}}}}},"time":"2026-03-06T19:13:37.090415152Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:13:37.080873","time":"2026-03-06T19:13:37.09120821Z","message":"Successfully shared keys"} +{"level":"debug","transaction_id":"8","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:37.179086503Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"8","time":"2026-03-06T19:13:37.179217038Z","message":"Finished dispatching events from transaction"} +{"level":"debug","event_id":"$8TbuWv6Ww4wBeYhj9DVcgGF2xFjn51m8Vv3FfyA9CxE","session_id":"qCjqyoWYmPyrt1WNvGePcENuonpZuYQy/33Q51RyWNk","time":"2026-03-06T19:13:37.179411688Z","message":"Decrypting received event"} +{"level":"debug","message_checkpoint":{"event_id":"$8TbuWv6Ww4wBeYhj9DVcgGF2xFjn51m8Vv3FfyA9CxE","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824417179,"status":"SUCCESS","event_type":"m.room.encrypted","reported_by":"BRIDGE","retry_num":0},"time":"2026-03-06T19:13:37.179540058Z","message":"Sent message checkpoint"} +{"level":"debug","component":"crypto","action":"decrypt megolm event","event_id":"$8TbuWv6Ww4wBeYhj9DVcgGF2xFjn51m8Vv3FfyA9CxE","sender":"@theo:matrix.theocloud.dev","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"qCjqyoWYmPyrt1WNvGePcENuonpZuYQy/33Q51RyWNk","prev_ratchet_index":0,"new_ratchet_index":1,"next_new_index":1,"missed_indices":[],"lost_indices":[],"max_messages":0,"time":"2026-03-06T19:13:37.180826063Z","message":"Ratchet safety data changed (ratchet state didn't change)"} +{"level":"debug","component":"crypto","action":"decrypt megolm event","event_id":"$8TbuWv6Ww4wBeYhj9DVcgGF2xFjn51m8Vv3FfyA9CxE","sender":"@theo:matrix.theocloud.dev","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"qCjqyoWYmPyrt1WNvGePcENuonpZuYQy/33Q51RyWNk","user_id":"@theo:matrix.theocloud.dev","identity_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","time":"2026-03-06T19:13:37.181008212Z","message":"Didn't find identity in crypto store, fetching from server"} +{"level":"debug","component":"crypto","users":["@theo:matrix.theocloud.dev"],"time":"2026-03-06T19:13:37.181072118Z","message":"Querying keys for users"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":27,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/keys/query?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":6.779935,"status_code":200,"response_length":4906,"response_mime":"application/json","req_body":{"device_keys":{"@theo:matrix.theocloud.dev":[]},"timeout":10000},"time":"2026-03-06T19:13:37.188305887Z","message":"Request completed"} +{"level":"debug","component":"crypto","user_id":"@theo:matrix.theocloud.dev","new_device_count":6,"old_device_count":0,"time":"2026-03-06T19:13:37.18859259Z","message":"Updating devices in store"} +{"level":"debug","component":"crypto","user_id":"@theo:matrix.theocloud.dev","key":"842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","usages":["master"],"usage":"master","time":"2026-03-06T19:13:37.195819794Z","message":"Storing cross-signing key"} +{"level":"debug","component":"crypto","user_id":"@theo:matrix.theocloud.dev","key":"842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","usages":["master"],"sign_key_id":"ed25519:842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","signer_user_id":"@theo:matrix.theocloud.dev","signing_key":"842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","time":"2026-03-06T19:13:37.196007041Z","message":"Verifying cross-signing key signature"} +{"level":"debug","component":"crypto","user_id":"@theo:matrix.theocloud.dev","key":"842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","usages":["master"],"sign_key_id":"ed25519:842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","signer_user_id":"@theo:matrix.theocloud.dev","signing_key":"842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","time":"2026-03-06T19:13:37.196317141Z","message":"Cross-signing key signature verified"} +{"level":"debug","component":"crypto","user_id":"@theo:matrix.theocloud.dev","key":"842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","usages":["master"],"sign_key_id":"ed25519:TUMOJAANYT","signer_user_id":"@theo:matrix.theocloud.dev","signing_key":"TUMOJAANYT","time":"2026-03-06T19:13:37.196553487Z","message":"Cross-signing key has a signature from an unknown key"} +{"level":"debug","component":"crypto","user_id":"@theo:matrix.theocloud.dev","key":"DcKPf1pBpNL2MnvYbHScJ+ZsLyBb4t0fsTncTig/f/8","usages":["self_signing"],"usage":"self_signing","time":"2026-03-06T19:13:37.196718594Z","message":"Storing cross-signing key"} +{"level":"debug","component":"crypto","user_id":"@theo:matrix.theocloud.dev","key":"DcKPf1pBpNL2MnvYbHScJ+ZsLyBb4t0fsTncTig/f/8","usages":["self_signing"],"sign_key_id":"ed25519:842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","signer_user_id":"@theo:matrix.theocloud.dev","signing_key":"842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","time":"2026-03-06T19:13:37.196882095Z","message":"Verifying cross-signing key signature"} +{"level":"debug","component":"crypto","user_id":"@theo:matrix.theocloud.dev","key":"DcKPf1pBpNL2MnvYbHScJ+ZsLyBb4t0fsTncTig/f/8","usages":["self_signing"],"sign_key_id":"ed25519:842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","signer_user_id":"@theo:matrix.theocloud.dev","signing_key":"842B+0RFHgdhwjUkmlmy4Dh02idw8/5XEpz5kJTnuKg","time":"2026-03-06T19:13:37.197181788Z","message":"Cross-signing key signature verified"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":28,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/keys/query?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":3.996932,"status_code":200,"response_length":645,"response_mime":"application/json","req_body":{"device_keys":{"@discordbot:matrix.theocloud.dev":[]}},"time":"2026-03-06T19:13:37.201821687Z","message":"Request completed"} +{"level":"debug","component":"crypto","action":"decrypt megolm event","event_id":"$8TbuWv6Ww4wBeYhj9DVcgGF2xFjn51m8Vv3FfyA9CxE","sender":"@theo:matrix.theocloud.dev","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"qCjqyoWYmPyrt1WNvGePcENuonpZuYQy/33Q51RyWNk","message_index":0,"decrypted_event_type":"m.room.message (message)","time":"2026-03-06T19:13:37.201980159Z","message":"Event decrypted successfully"} +{"level":"debug","message_checkpoint":{"event_id":"$8TbuWv6Ww4wBeYhj9DVcgGF2xFjn51m8Vv3FfyA9CxE","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","step":"DECRYPTED","timestamp":1772824417202,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:13:37.20213898Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$8TbuWv6Ww4wBeYhj9DVcgGF2xFjn51m8Vv3FfyA9CxE","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","step":"COMMAND","timestamp":1772824417202,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:13:37.202162656Z","message":"Sent message checkpoint"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_id":"$8TbuWv6Ww4wBeYhj9DVcgGF2xFjn51m8Vv3FfyA9CxE","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","mx_command":"login","time":"2026-03-06T19:13:37.20240892Z","message":"Received command"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":29,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":35.542853,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<588 bytes>","time":"2026-03-06T19:13:37.788247325Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":30,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824417788528859_5?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":45.586795,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.image","body":"https://discordapp.com/ra/bbJocSVJcIKLuImlLstemcJ8wwQs0Wfa6c7ahW_Vbn4","url":"mxc://matrix.theocloud.dev/SRtfBTRDRmClNCSbazkFTsUO","filename":"qr.png"},"time":"2026-03-06T19:13:37.834264208Z","message":"Request completed"} +{"level":"debug","transaction_id":"9","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:37.846410471Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"9","time":"2026-03-06T19:13:37.846512021Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$F2fU3BnmJLuved0XW_nW3LZkn512rgRUhZVyk2W6Sww","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824417846,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:13:37.846675382Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"10","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:13:38.020789697Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"10","time":"2026-03-06T19:13:38.020900746Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":31,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev/redact/$F2fU3BnmJLuved0XW_nW3LZkn512rgRUhZVyk2W6Sww/mautrix-go_1772824435378800411_6?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":36.80979,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:13:55.41575659Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:13:55.415877417Z","message":"Connecting to discord"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:13:55.416066899Z","message":"Creating new heartbeat session"} +{"level":"debug","transaction_id":"11","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:55.429607562Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"11","time":"2026-03-06T19:13:55.429716446Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vAr6vhisqBDu50mI5SNtpSGh0QaDXrh3B4SB2gtut_Q","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824435429,"status":"SUCCESS","event_type":"m.room.redaction","reported_by":"BRIDGE","retry_num":0},"time":"2026-03-06T19:13:55.429905858Z","message":"Sent message checkpoint"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"droid.go:209:LoadMainPage()","time":"2026-03-06T19:13:55.465508216Z","message":"Found gateway URL wss://gateway.discord.gg/ and confirmed API version"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"droid.go:244:LoadMainPage()","time":"2026-03-06T19:13:56.292050879Z","message":"Found build number 507104 from JS file /assets/web.aff961bacf30bead.js"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:65:Open()","time":"2026-03-06T19:13:56.292255377Z","message":"called"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:93:Open()","time":"2026-03-06T19:13:56.292319073Z","message":"connecting to gateway wss://gateway.discord.gg/?encoding=json&v=9&compress=zlib-stream"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:143:Open()","time":"2026-03-06T19:13:56.485605007Z","message":"Op 10 Hello Packet received from Discord"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:13:57.143792618Z","message":"Discord connection ready"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:228:Open()","time":"2026-03-06T19:13:57.144180313Z","message":"We are now connected to Discord, emitting connect event"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:234:Open()","time":"2026-03-06T19:13:57.144750505Z","message":"creating new VoiceConnections map"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:13:57.144823769Z","message":"Connected to Discord"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:247:Open()","time":"2026-03-06T19:13:57.144869167Z","message":"exiting"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:373:heartbeat()","time":"2026-03-06T19:13:57.144900177Z","message":"called"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:255:listen()","time":"2026-03-06T19:13:57.144990552Z","message":"called"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.ReadySupplemental","time":"2026-03-06T19:13:57.145870774Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:13:57.145905067Z","message":"unknown event: Op: 0, Seq: 3, Type: SESSIONS_REPLACE"} +{"level":"debug","module":"Guild/467730051622764565","time":"2026-03-06T19:13:57.146443061Z","message":"Updating name \"\" -> \"SteamDB\""} +{"level":"debug","module":"Guild/467730051622764565","time":"2026-03-06T19:13:57.146507945Z","message":"Updating avatar \"\" -> \"650d2bcb9c960ded7d8b58b8e784e216\""} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":32,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824437145495163_7?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":35.993684,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"Successfully logged in as @retischtheo"},"time":"2026-03-06T19:13:57.181605901Z","message":"Request completed"} +{"level":"debug","transaction_id":"12","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:57.19118623Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"12","time":"2026-03-06T19:13:57.191281286Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mDJk60MY0nmOiPis27_w9cmhkFCOkyD4xidQvvYO81Q","room_id":"!ZRiFajVHBzPNfTpbKI:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824437191,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.notice"},"time":"2026-03-06T19:13:57.1915008Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":33,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":13.090669,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<5003 bytes>","time":"2026-03-06T19:13:57.211740031Z","message":"Request completed"} +{"level":"debug","module":"Guild/467730051622764565","time":"2026-03-06T19:13:57.212083934Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"775659989460451328","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.212294718Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"848978382725054485","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.212379088Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1286288226226798684","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.212424066Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1240663852404965386","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.21247973Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1240663852404965386","channel_receiver":"","room_id":"","old_name":"","new_name":"#deadlock-updates","time":"2026-03-06T19:13:57.213176616Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1240663852404965386","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:deadlock:1242891738750652509> All Deadlock related updates, such as the apps updating, group announcements, blog posts, gametracker pushes.","time":"2026-03-06T19:13:57.213227182Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1240663852404965386","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"996118630964138034","time":"2026-03-06T19:13:57.213264827Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1240663852404965386","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.213819584Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"526140050467979265","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.214102724Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1205632096220221491","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.214158458Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1205632096220221491","channel_receiver":"","room_id":"","old_name":"","new_name":"#tf-updates","time":"2026-03-06T19:13:57.214747787Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1205632096220221491","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:logo_tf2:850659016069218325> All Team Fortress related updates, such as the apps updating, group announcements, blog posts, gametracker pushes.","time":"2026-03-06T19:13:57.214807432Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1205632096220221491","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"996118630964138034","time":"2026-03-06T19:13:57.214852341Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1205632096220221491","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.21490137Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1409217725313843250","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.215200644Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1124705114897260605","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.21525526Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1094180025680527451","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.215297655Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1094180025680527451","channel_receiver":"","room_id":"","old_name":"","new_name":"#rules-and-info","time":"2026-03-06T19:13:57.215882653Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1094180025680527451","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:feels_ban_man:973685742834430002> Server rules and information.","time":"2026-03-06T19:13:57.215929308Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1094180025680527451","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.215971283Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"814937099660034139","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.216318818Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"814937099660034139","channel_receiver":"","room_id":"","old_name":"","new_name":"#verify-account","time":"2026-03-06T19:13:57.216960947Z","message":"Updating portal name"} +{"level":"debug","channel_id":"814937099660034139","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:steamdb:843039715728424972> https://steamdb.info/discord/","time":"2026-03-06T19:13:57.217011513Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"814937099660034139","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.217053Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"760061856885768234","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.217419322Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"813816823694491648","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.217480364Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"813816823694491648","channel_receiver":"","room_id":"","old_name":"","new_name":"#status","time":"2026-03-06T19:13:57.218051324Z","message":"Updating portal name"} +{"level":"debug","channel_id":"813816823694491648","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:cartoon_check_mark:1115924999681884161> Updates from https://steamstat.us","time":"2026-03-06T19:13:57.218100354Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"813816823694491648","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"775661697343029258","time":"2026-03-06T19:13:57.218147497Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"813816823694491648","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.218698063Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"996117597080793209","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.219001947Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"996117597080793209","channel_receiver":"","room_id":"","old_name":"","new_name":"#removed-apps","time":"2026-03-06T19:13:57.219595746Z","message":"Updating portal name"} +{"level":"debug","channel_id":"996117597080793209","channel_receiver":"","room_id":"","old_topic":"","new_topic":"🗑️ Announces apps that get retired or removed from the Steam store.","time":"2026-03-06T19:13:57.219647638Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"996117597080793209","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"775661697343029258","time":"2026-03-06T19:13:57.219687309Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"996117597080793209","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.219732217Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"775662290141184013","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.220010748Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"775662290141184013","channel_receiver":"","room_id":"","old_name":"","new_name":"#steam-updates","time":"2026-03-06T19:13:57.220597353Z","message":"Updating portal name"} +{"level":"debug","channel_id":"775662290141184013","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:git:1058863053422211072> Commits to Steam tracking repositories.","time":"2026-03-06T19:13:57.220650363Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"775662290141184013","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"996118630964138034","time":"2026-03-06T19:13:57.220684656Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"775662290141184013","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.220731311Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"814210858019455006","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.221035543Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"814210858019455006","channel_receiver":"","room_id":"","old_name":"","new_name":"#cs-updates","time":"2026-03-06T19:13:57.221632275Z","message":"Updating portal name"} +{"level":"debug","channel_id":"814210858019455006","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:cs2:1088173085288583339> All Counter-Strike related updates, such as the apps updating, group announcements, blog posts, gametracker pushes.","time":"2026-03-06T19:13:57.221685775Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"814210858019455006","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"996118630964138034","time":"2026-03-06T19:13:57.221725305Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"814210858019455006","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.221770773Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"814210883139141683","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.222140378Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"814210883139141683","channel_receiver":"","room_id":"","old_name":"","new_name":"#dota-updates","time":"2026-03-06T19:13:57.222748843Z","message":"Updating portal name"} +{"level":"debug","channel_id":"814210883139141683","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:dota:814777601603403806> All Dota 2, Underlords, and Artifact related updates, such as the apps updating, group announcements, blog posts, gametracker pushes.","time":"2026-03-06T19:13:57.222805625Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"814210883139141683","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"996118630964138034","time":"2026-03-06T19:13:57.22286527Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"814210883139141683","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.22291395Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1105095144937631864","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.223191713Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"845984309638463488","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.223248914Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"845984309638463488","channel_receiver":"","room_id":"","old_name":"","new_name":"#free-promotions","time":"2026-03-06T19:13:57.223817918Z","message":"Updating portal name"} +{"level":"debug","channel_id":"845984309638463488","channel_receiver":"","room_id":"","old_topic":"","new_topic":"🆓 Announces free to keep promotions on Steam. https://steamdb.info/upcoming/free/","time":"2026-03-06T19:13:57.223872116Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"845984309638463488","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"775661697343029258","time":"2026-03-06T19:13:57.223922682Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"845984309638463488","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.223965215Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"775429805469597768","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.22425527Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"876841149984280576","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.224311563Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"876841149984280576","channel_receiver":"","room_id":"","old_name":"","new_name":"#free-weekends","time":"2026-03-06T19:13:57.224893838Z","message":"Updating portal name"} +{"level":"debug","channel_id":"876841149984280576","channel_receiver":"","room_id":"","old_topic":"","new_topic":"🗓️ Announces limited play for free promotions on Steam. https://steamdb.info/upcoming/free/","time":"2026-03-06T19:13:57.224942099Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"876841149984280576","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"775661697343029258","time":"2026-03-06T19:13:57.224984353Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"876841149984280576","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.225024582Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"959120991961894913","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.225294732Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"959120991961894913","channel_receiver":"","room_id":"","old_name":"","new_name":"#steam-deck-compat","time":"2026-03-06T19:13:57.225866461Z","message":"Updating portal name"} +{"level":"debug","channel_id":"959120991961894913","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:logo_steamdeck:1058863300064055366> New Steam Deck compatibility reports.","time":"2026-03-06T19:13:57.225923173Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"959120991961894913","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"996118630964138034","time":"2026-03-06T19:13:57.225974576Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"959120991961894913","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.226013269Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1082397346375147600","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.2262918Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1317164496459927666","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.226375471Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"928588045819727914","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.226416468Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"928588045819727914","channel_receiver":"","room_id":"","old_name":"","new_name":"#new-apps","time":"2026-03-06T19:13:57.226947688Z","message":"Updating portal name"} +{"level":"debug","channel_id":"928588045819727914","channel_receiver":"","room_id":"","old_topic":"","new_topic":"🆕 Announces new apps published on Steam.","time":"2026-03-06T19:13:57.226995391Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"928588045819727914","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"775661697343029258","time":"2026-03-06T19:13:57.227034502Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"928588045819727914","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.227084649Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"775661588119945216","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.227406761Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"775661588119945216","channel_receiver":"","room_id":"","old_name":"","new_name":"#announcements","time":"2026-03-06T19:13:57.227942172Z","message":"Updating portal name"} +{"level":"debug","channel_id":"775661588119945216","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:logo_steam:924446675819450448> Announcements from various Steam groups. Announces new player peaks across all Steam games.","time":"2026-03-06T19:13:57.227990852Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"775661588119945216","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"775661697343029258","time":"2026-03-06T19:13:57.228038135Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"775661588119945216","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.228081437Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"844823280384868363","permissions":140737525122048,"view_channel":true,"time":"2026-03-06T19:13:57.22838581Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"844823280384868363","channel_receiver":"","room_id":"","old_name":"","new_name":"#other-updates","time":"2026-03-06T19:13:57.228924992Z","message":"Updating portal name"} +{"level":"debug","channel_id":"844823280384868363","channel_receiver":"","room_id":"","old_topic":"","new_topic":"<:steamdb:843039715728424972> Updates on various Valve apps and other important apps.","time":"2026-03-06T19:13:57.228982472Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"844823280384868363","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"996118630964138034","time":"2026-03-06T19:13:57.229033108Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"844823280384868363","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.229084023Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"467730051622764565","channel_id":"1286286510416597022","permissions":140737525121024,"view_channel":false,"time":"2026-03-06T19:13:57.229378896Z","message":"Computed permissions in channel"} +{"level":"debug","module":"Guild/593059705971146772","time":"2026-03-06T19:13:57.231733767Z","message":"Updating name \"\" -> \"Eier Lecken\""} +{"level":"debug","module":"Guild/593059705971146772","time":"2026-03-06T19:13:57.231782447Z","message":"Updating avatar \"\" -> \"dadb12f3d74ce35047d7bd7e2ff47b78\""} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":34,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":27.016372,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<30659 bytes>","time":"2026-03-06T19:13:57.517505623Z","message":"Request completed"} +{"level":"debug","module":"Guild/593059705971146772","time":"2026-03-06T19:13:57.517829691Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"593059705971146772","channel_id":"593059705971146787","permissions":2249574885883903,"view_channel":true,"time":"2026-03-06T19:13:57.518027764Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"593059705971146787","channel_receiver":"","room_id":"","old_name":"","new_name":"#willkommens-chat","time":"2026-03-06T19:13:57.518725418Z","message":"Updating portal name"} +{"level":"debug","channel_id":"593059705971146787","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"593059705971146781","time":"2026-03-06T19:13:57.518780663Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"593059705971146787","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.519299521Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"593059705971146772","channel_id":"593060615979794434","permissions":2249574885883903,"view_channel":true,"time":"2026-03-06T19:13:57.51963197Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"593060615979794434","channel_receiver":"","room_id":"","old_name":"","new_name":"#anime-chat","time":"2026-03-06T19:13:57.520174365Z","message":"Updating portal name"} +{"level":"debug","channel_id":"593060615979794434","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"593059705971146781","time":"2026-03-06T19:13:57.520221997Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"593060615979794434","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.520256848Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"593059705971146772","channel_id":"593062488099127296","permissions":2249574885883903,"view_channel":true,"time":"2026-03-06T19:13:57.520534541Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"593062488099127296","channel_receiver":"","room_id":"","old_name":"","new_name":"#allgemein","time":"2026-03-06T19:13:57.521063596Z","message":"Updating portal name"} +{"level":"debug","channel_id":"593062488099127296","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"593059705971146781","time":"2026-03-06T19:13:57.521111717Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"593062488099127296","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.521170524Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"593059705971146772","channel_id":"593062566855442448","permissions":2249574885883903,"view_channel":true,"time":"2026-03-06T19:13:57.521479856Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"593062566855442448","channel_receiver":"","room_id":"","old_name":"","new_name":"#spam-und-bot-chat","time":"2026-03-06T19:13:57.522031889Z","message":"Updating portal name"} +{"level":"debug","channel_id":"593062566855442448","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"593059705971146781","time":"2026-03-06T19:13:57.522080918Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"593062566855442448","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.522118144Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"593059705971146772","channel_id":"593062859232247808","permissions":2249574885883903,"view_channel":true,"time":"2026-03-06T19:13:57.522389411Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"593062859232247808","channel_receiver":"","room_id":"","old_name":"","new_name":"#pokecord","time":"2026-03-06T19:13:57.522911761Z","message":"Updating portal name"} +{"level":"debug","channel_id":"593062859232247808","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"593059705971146781","time":"2026-03-06T19:13:57.522958136Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"593062859232247808","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.52300521Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"593059705971146772","channel_id":"1395494755273805854","permissions":2249574885883903,"view_channel":true,"time":"2026-03-06T19:13:57.523287163Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1395494755273805854","channel_receiver":"","room_id":"","old_name":"","new_name":"#dubios","time":"2026-03-06T19:13:57.523825716Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1395494755273805854","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"593059705971146781","time":"2026-03-06T19:13:57.523875235Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1395494755273805854","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:57.523913438Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","module":"Guild/626215981387350057","time":"2026-03-06T19:13:57.525708733Z","message":"Updating name \"\" -> \"Caleb Gannon's Discord\""} +{"level":"debug","module":"Guild/626215981387350057","time":"2026-03-06T19:13:57.525752664Z","message":"Updating avatar \"\" -> \"c92ce72cce155322a73ee9f7a56b7250\""} +{"level":"debug","transaction_id":"13","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:13:57.698617078Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"13","time":"2026-03-06T19:13:57.698757181Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":35,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":25.004008,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<37209 bytes>","time":"2026-03-06T19:13:58.044196164Z","message":"Request completed"} +{"level":"debug","module":"Guild/626215981387350057","time":"2026-03-06T19:13:58.044530569Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1017477883054272572","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.044734858Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1017477883054272572","channel_receiver":"","room_id":"","old_name":"","new_name":"#algomancy-content","time":"2026-03-06T19:13:58.045389Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1017477883054272572","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279323525267556","time":"2026-03-06T19:13:58.045443337Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1017477883054272572","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.045969179Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"639075168140132377","permissions":2222085186638401,"view_channel":false,"time":"2026-03-06T19:13:58.046252739Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"950878497570701362","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.046312454Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"950878497570701362","channel_receiver":"","room_id":"","old_name":"","new_name":"#calebs-articles-discussion","time":"2026-03-06T19:13:58.046833687Z","message":"Updating portal name"} +{"level":"debug","channel_id":"950878497570701362","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"715685775580069888","time":"2026-03-06T19:13:58.046881668Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"950878497570701362","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.047399409Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"733055073311260714","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.047742963Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"968607199049941012","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.0478017Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"626218018351087639","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.047839205Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1176303029385965650","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.047874475Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1176303029385965650","channel_receiver":"","room_id":"","old_name":"","new_name":"#algomancy-marketing-stuff","time":"2026-03-06T19:13:58.048393752Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1176303029385965650","channel_receiver":"","room_id":"","old_topic":"","new_topic":"(Just a place where I put marketing stuff/ideas)","time":"2026-03-06T19:13:58.048447042Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1176303029385965650","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.048494116Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1176303029385965650","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.048961221Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"626216309708816384","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.049249599Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"626216309708816384","channel_receiver":"","room_id":"","old_name":"","new_name":"#art-and-media","time":"2026-03-06T19:13:58.049780121Z","message":"Updating portal name"} +{"level":"debug","channel_id":"626216309708816384","channel_receiver":"","room_id":"","old_topic":"","new_topic":"For ANYTHING ARTY WUH","time":"2026-03-06T19:13:58.049831525Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"626216309708816384","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626215981387350058","time":"2026-03-06T19:13:58.04987364Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"626216309708816384","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.050364281Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"627166401932558336","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.050650495Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"799722981966086184","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.050703924Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"788599634964381736","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.050743594Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"689679396902141964","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.050780681Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"689679396902141964","channel_receiver":"","room_id":"","old_name":"","new_name":"#people-who-are-without-voice","time":"2026-03-06T19:13:58.051275373Z","message":"Updating portal name"} +{"level":"debug","channel_id":"689679396902141964","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626215981387350060","time":"2026-03-06T19:13:58.05132084Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"689679396902141964","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.051834879Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1367540804880699582","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.052119905Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1367540804880699582","channel_receiver":"","room_id":"","old_name":"","new_name":"#azoth-card-changes","time":"2026-03-06T19:13:58.052662859Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1367540804880699582","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1313223599921827932","time":"2026-03-06T19:13:58.052727812Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1367540804880699582","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.05322907Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"626217085743136778","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.053520382Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"626217085743136778","channel_receiver":"","room_id":"","old_name":"","new_name":"#rules","time":"2026-03-06T19:13:58.054053208Z","message":"Updating portal name"} +{"level":"debug","channel_id":"626217085743136778","channel_receiver":"","room_id":"","old_topic":"","new_topic":"da rulez","time":"2026-03-06T19:13:58.054106707Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"626217085743136778","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"627654379452891186","time":"2026-03-06T19:13:58.054152454Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"626217085743136778","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.054713776Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1226269424361803886","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.054969538Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1226269424361803886","channel_receiver":"","room_id":"","old_name":"","new_name":"#digital-client-dev","time":"2026-03-06T19:13:58.055481901Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1226269424361803886","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.055536797Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1226269424361803886","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.05558855Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"796159826820464670","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.055848992Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"958504410806382622","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.055903399Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"958504410806382622","channel_receiver":"","room_id":"","old_name":"","new_name":"#calebs-cube-suggestions","time":"2026-03-06T19:13:58.056419603Z","message":"Updating portal name"} +{"level":"debug","channel_id":"958504410806382622","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Post suggestions for my cube here. This isn't for discussion, just ideas","time":"2026-03-06T19:13:58.056471216Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"958504410806382622","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626217935177777194","time":"2026-03-06T19:13:58.056511096Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"958504410806382622","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.05696556Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"869199208400453662","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.057218947Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1069021934672687135","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.057274332Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1069021934672687135","channel_receiver":"","room_id":"","old_name":"","new_name":"#tournament-feedback","time":"2026-03-06T19:13:58.057769164Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1069021934672687135","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.057820289Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1069021934672687135","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.057857375Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1016472669027311656","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.058084572Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1016472669027311656","channel_receiver":"","room_id":"","old_name":"","new_name":"#calebs-to-do-list","time":"2026-03-06T19:13:58.05857214Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1016472669027311656","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279323525267556","time":"2026-03-06T19:13:58.058636046Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1016472669027311656","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.058681443Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"979159063633993738","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.058920583Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"979159063633993738","channel_receiver":"","room_id":"","old_name":"","new_name":"#algomancy-previews","time":"2026-03-06T19:13:58.059405847Z","message":"Updating portal name"} +{"level":"debug","channel_id":"979159063633993738","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279323525267556","time":"2026-03-06T19:13:58.059481277Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"979159063633993738","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.059528909Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"949051953428693032","permissions":2221705080930881,"view_channel":false,"time":"2026-03-06T19:13:58.05979403Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1016040667857813666","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.059851161Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1016040667857813666","channel_receiver":"","room_id":"","old_name":"","new_name":"#playtesting-feedback","time":"2026-03-06T19:13:58.060318406Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1016040667857813666","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.060479951Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1016040667857813666","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.060526256Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"788592114739970089","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.06077238Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1017104585581666324","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.060830559Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1017104585581666324","channel_receiver":"","room_id":"","old_name":"","new_name":"#card-changes","time":"2026-03-06T19:13:58.061290749Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1017104585581666324","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279323525267556","time":"2026-03-06T19:13:58.061364573Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1017104585581666324","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.061411506Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"788200540899246091","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.061657281Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1314009083069730906","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.061711619Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1314009083069730906","channel_receiver":"","room_id":"","old_name":"","new_name":"#playtesting","time":"2026-03-06T19:13:58.062239975Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1314009083069730906","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1313223599921827932","time":"2026-03-06T19:13:58.062286211Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1314009083069730906","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.062396422Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"737722451743473764","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.062655327Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"737722451743473764","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-magic","time":"2026-03-06T19:13:58.06313186Z","message":"Updating portal name"} +{"level":"debug","channel_id":"737722451743473764","channel_receiver":"","room_id":"","old_topic":"","new_topic":"The general chat for MTG content","time":"2026-03-06T19:13:58.063178864Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"737722451743473764","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626217935177777194","time":"2026-03-06T19:13:58.063233481Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"737722451743473764","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.063281183Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1330413537335574609","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.063581295Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1330413537335574609","channel_receiver":"","room_id":"","old_name":"","new_name":"#card-design-ideas","time":"2026-03-06T19:13:58.064057689Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1330413537335574609","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1313223599921827932","time":"2026-03-06T19:13:58.064145411Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1330413537335574609","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.064197862Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1369311596194566184","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.064523467Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1369311596194566184","channel_receiver":"","room_id":"","old_name":"","new_name":"#azoth-to-do","time":"2026-03-06T19:13:58.065002165Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1369311596194566184","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1313223599921827932","time":"2026-03-06T19:13:58.065049938Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1369311596194566184","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.065092192Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"875168303759380572","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.065357872Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1016040585280356362","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.0654208Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1016040585280356362","channel_receiver":"","room_id":"","old_name":"","new_name":"#looking-for-live-draft-games","time":"2026-03-06T19:13:58.065895517Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1016040585280356362","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"979159143661338684","time":"2026-03-06T19:13:58.065955652Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1016040585280356362","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.066435887Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"754048768067764245","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.066699192Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"792921990129254422","permissions":2222085186589249,"view_channel":false,"time":"2026-03-06T19:13:58.066755974Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"950874133363826738","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.066807098Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"950874133363826738","channel_receiver":"","room_id":"","old_name":"","new_name":"#calebs-articles-and-writing","time":"2026-03-06T19:13:58.067282514Z","message":"Updating portal name"} +{"level":"debug","channel_id":"950874133363826738","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"715685775580069888","time":"2026-03-06T19:13:58.067370655Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"950874133363826738","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.067717073Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1350232738082324611","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.068080113Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1350232738082324611","channel_receiver":"","room_id":"","old_name":"","new_name":"#photo-contest-entries","time":"2026-03-06T19:13:58.069001402Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1350232738082324611","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279323525267556","time":"2026-03-06T19:13:58.069070755Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1350232738082324611","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.069116083Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"734870413250658374","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.069404042Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1085028159721832478","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.06946697Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1168651124862111884","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.069512577Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1168651124862111884","channel_receiver":"","room_id":"","old_name":"","new_name":"#terms","time":"2026-03-06T19:13:58.070102464Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1168651124862111884","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"627654379452891186","time":"2026-03-06T19:13:58.070154846Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1168651124862111884","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.070204085Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"949802673631289434","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.070525848Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"627198578569379840","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.070594154Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"627198578569379840","channel_receiver":"","room_id":"","old_name":"","new_name":"#memes","time":"2026-03-06T19:13:58.071061678Z","message":"Updating portal name"} +{"level":"debug","channel_id":"627198578569379840","channel_receiver":"","room_id":"","old_topic":"","new_topic":"I'm sure you guys can figure out what goes here","time":"2026-03-06T19:13:58.071107285Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"627198578569379840","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626215981387350058","time":"2026-03-06T19:13:58.071147025Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"627198578569379840","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.071186625Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"626530271529009172","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.071461175Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"626530271529009172","channel_receiver":"","room_id":"","old_name":"","new_name":"#custom-cards","time":"2026-03-06T19:13:58.071942109Z","message":"Updating portal name"} +{"level":"debug","channel_id":"626530271529009172","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Got a cool custom card you wanna share? place it here!","time":"2026-03-06T19:13:58.071988903Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"626530271529009172","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626217935177777194","time":"2026-03-06T19:13:58.072033253Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"626530271529009172","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.072066568Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1031767190212448318","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.072365213Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1031767190212448318","channel_receiver":"","room_id":"","old_name":"","new_name":"#leaks","time":"2026-03-06T19:13:58.072864934Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1031767190212448318","channel_receiver":"","room_id":"","old_topic":"","new_topic":"For discussions of unofficially spoiled magic cards","time":"2026-03-06T19:13:58.072910262Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1031767190212448318","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626217935177777194","time":"2026-03-06T19:13:58.072947558Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1031767190212448318","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.072988276Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1146579536117514420","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.073246343Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"878301629701574717","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.073300121Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"785659021080002591","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.073381138Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"633505867081449512","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.073430866Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"994830598424252516","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.073471235Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"948306021875589220","permissions":2222085186638401,"view_channel":false,"time":"2026-03-06T19:13:58.073508391Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"722152470364553366","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.073546455Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"722152470364553366","channel_receiver":"","room_id":"","old_name":"","new_name":"#bot-games","time":"2026-03-06T19:13:58.07401349Z","message":"Updating portal name"} +{"level":"debug","channel_id":"722152470364553366","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"658434280300609578","time":"2026-03-06T19:13:58.074076627Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"722152470364553366","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.075423115Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"761302246453411881","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.075658484Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"761302246453411881","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-gaming","time":"2026-03-06T19:13:58.076085569Z","message":"Updating portal name"} +{"level":"debug","channel_id":"761302246453411881","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Channel for the discussion of other games besides MTG.","time":"2026-03-06T19:13:58.076131595Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"761302246453411881","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"937438305727946752","time":"2026-03-06T19:13:58.076167564Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"761302246453411881","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.076597024Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1016040535577874514","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.076851529Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1016040535577874514","channel_receiver":"","room_id":"","old_name":"","new_name":"#looking-for-constructed-games","time":"2026-03-06T19:13:58.07731137Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1016040535577874514","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"979159143661338684","time":"2026-03-06T19:13:58.077397276Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1016040535577874514","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.077437296Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"971478553264783430","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.077653038Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1218295940763357184","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.077715966Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1218295940763357184","channel_receiver":"","room_id":"","old_name":"","new_name":"#future-set-design","time":"2026-03-06T19:13:58.078177414Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1218295940763357184","channel_receiver":"","room_id":"","old_topic":"","new_topic":"A place for Caleb to post ideas he has for the designs for future sets","time":"2026-03-06T19:13:58.078230983Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1218295940763357184","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279323525267556","time":"2026-03-06T19:13:58.078271561Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1218295940763357184","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.078310114Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"785647645284761630","permissions":2222085186323008,"view_channel":false,"time":"2026-03-06T19:13:58.078625521Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"802211473622827039","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.078689357Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"639079797942648842","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.078737618Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"639079797942648842","channel_receiver":"","room_id":"","old_name":"","new_name":"#spoilers","time":"2026-03-06T19:13:58.079858726Z","message":"Updating portal name"} +{"level":"debug","channel_id":"639079797942648842","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Channel for spoilers, anything unofficial goes in #leaks","time":"2026-03-06T19:13:58.079915438Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"639079797942648842","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626217935177777194","time":"2026-03-06T19:13:58.079960835Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"639079797942648842","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.079995198Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1381791497904586824","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.080227982Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1381791497904586824","channel_receiver":"","room_id":"","old_name":"","new_name":"#playtesting-feedback","time":"2026-03-06T19:13:58.080692223Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1381791497904586824","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1313223599921827932","time":"2026-03-06T19:13:58.080744605Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1381791497904586824","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.08078672Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"802001541296160768","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.080984932Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"875603191713108008","permissions":2222085186638401,"view_channel":false,"time":"2026-03-06T19:13:58.08103878Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"946494113187004466","permissions":2222085185591873,"view_channel":false,"time":"2026-03-06T19:13:58.081088298Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"626218107999879168","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.081128248Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"626218107999879168","channel_receiver":"","room_id":"","old_name":"","new_name":"#commander","time":"2026-03-06T19:13:58.081604502Z","message":"Updating portal name"} +{"level":"debug","channel_id":"626218107999879168","channel_receiver":"","room_id":"","old_topic":"","new_topic":"The place to discussion anything about the commander format","time":"2026-03-06T19:13:58.081661354Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"626218107999879168","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626217935177777194","time":"2026-03-06T19:13:58.081709545Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"626218107999879168","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.081756828Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"626218002416664608","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.081975085Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"948690187616124968","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.082028445Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"948690187616124968","channel_receiver":"","room_id":"","old_name":"","new_name":"#discord-feedback-and-ideas","time":"2026-03-06T19:13:58.08250414Z","message":"Updating portal name"} +{"level":"debug","channel_id":"948690187616124968","channel_receiver":"","room_id":"","old_topic":"","new_topic":"This channel is for giving feedback and ideas about our discord. Tell us what worked and what we can improve on. Did we run an event poorly, do you have an idea for a future event? let us know!","time":"2026-03-06T19:13:58.082556172Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"948690187616124968","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"627654379452891186","time":"2026-03-06T19:13:58.08260618Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"948690187616124968","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.082643475Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1051261544912138290","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.08284958Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1051261544912138290","channel_receiver":"","room_id":"","old_name":"","new_name":"#stream-chat","time":"2026-03-06T19:13:58.083314938Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1051261544912138290","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1047999130619887636","time":"2026-03-06T19:13:58.083427035Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1051261544912138290","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.084833099Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1151980234934063215","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.08505827Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1151980234934063215","channel_receiver":"","room_id":"","old_name":"","new_name":"#strategy","time":"2026-03-06T19:13:58.085573846Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1151980234934063215","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"979159143661338684","time":"2026-03-06T19:13:58.08562497Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1151980234934063215","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.085662266Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"956285985119952947","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.085856218Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"947236507452862474","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.085909089Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1221482068404473966","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.085949457Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1221482068404473966","channel_receiver":"","room_id":"","old_name":"","new_name":"#fitness-and-health","time":"2026-03-06T19:13:58.086404549Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1221482068404473966","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626215981387350058","time":"2026-03-06T19:13:58.086460144Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1221482068404473966","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.086504843Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"770743736505466890","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.086722471Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"770743736505466890","channel_receiver":"","room_id":"","old_name":"","new_name":"#news-events-and-politics","time":"2026-03-06T19:13:58.087177493Z","message":"Updating portal name"} +{"level":"debug","channel_id":"770743736505466890","channel_receiver":"","room_id":"","old_topic":"","new_topic":"I don't enjoy this channel","time":"2026-03-06T19:13:58.087221564Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"770743736505466890","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626215981387350058","time":"2026-03-06T19:13:58.087258999Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"770743736505466890","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.087300905Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"977946178639495168","permissions":2222085185592897,"view_channel":true,"time":"2026-03-06T19:13:58.087526565Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"977946178639495168","channel_receiver":"","room_id":"","old_name":"","new_name":"#algomancy-discussion","time":"2026-03-06T19:13:58.089074269Z","message":"Updating portal name"} +{"level":"debug","channel_id":"977946178639495168","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.089126022Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"977946178639495168","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.089164086Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"775507428133044284","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.089381505Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"775507428133044284","channel_receiver":"","room_id":"","old_name":"","new_name":"#limited-and-cube","time":"2026-03-06T19:13:58.089829822Z","message":"Updating portal name"} +{"level":"debug","channel_id":"775507428133044284","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626217935177777194","time":"2026-03-06T19:13:58.089875988Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"775507428133044284","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.089908185Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"627358931680755712","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.090099553Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"627358931680755712","channel_receiver":"","room_id":"","old_name":"","new_name":"#cooking","time":"2026-03-06T19:13:58.090558137Z","message":"Updating portal name"} +{"level":"debug","channel_id":"627358931680755712","channel_receiver":"","room_id":"","old_topic":"","new_topic":"post food and food related topics","time":"2026-03-06T19:13:58.090607795Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"627358931680755712","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626215981387350058","time":"2026-03-06T19:13:58.090644811Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"627358931680755712","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.090678475Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1068267031914369096","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.090894008Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1169774973049647204","permissions":2222085185592897,"view_channel":true,"time":"2026-03-06T19:13:58.090959869Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1169774973049647204","channel_receiver":"","room_id":"","old_name":"","new_name":"#pokemon","time":"2026-03-06T19:13:58.091440314Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1169774973049647204","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"937438305727946752","time":"2026-03-06T19:13:58.091492556Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1169774973049647204","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.091525871Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"937438574004039720","permissions":2222085185591873,"view_channel":false,"time":"2026-03-06T19:13:58.091733512Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"782777577101197312","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.09178729Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1288563744103731251","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.09182703Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1288563744103731251","channel_receiver":"","room_id":"","old_name":"","new_name":"#whats-the-play","time":"2026-03-06T19:13:58.09284526Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1288563744103731251","channel_receiver":"","room_id":"","old_topic":"","new_topic":"This is for sharing unique and challenging scenarios that require clever thinking to find the line","time":"2026-03-06T19:13:58.092896874Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1288563744103731251","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.092952189Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1288563744103731251","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.092987948Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"645407379151781899","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.093180224Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"645407379151781899","channel_receiver":"","room_id":"","old_name":"","new_name":"#server-notifications","time":"2026-03-06T19:13:58.093648935Z","message":"Updating portal name"} +{"level":"debug","channel_id":"645407379151781899","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"627654379452891186","time":"2026-03-06T19:13:58.093700478Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"645407379151781899","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.093745806Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1141064199565488248","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.093979987Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1141064199565488248","channel_receiver":"","room_id":"","old_name":"","new_name":"#tournament-chat","time":"2026-03-06T19:13:58.094435638Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1141064199565488248","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.09448774Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1141064199565488248","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.09452762Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1452676178967134299","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.094788411Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1064280394695975002","permissions":2222085186638401,"view_channel":false,"time":"2026-03-06T19:13:58.094841421Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"799723157371486208","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.094882488Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"799723157371486208","channel_receiver":"","room_id":"","old_name":"","new_name":"#roles","time":"2026-03-06T19:13:58.095389054Z","message":"Updating portal name"} +{"level":"debug","channel_id":"799723157371486208","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Info on the role commands","time":"2026-03-06T19:13:58.095441575Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"799723157371486208","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"627654379452891186","time":"2026-03-06T19:13:58.095489278Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"799723157371486208","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.095537958Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1016402109853335563","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.095761942Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1016402109853335563","channel_receiver":"","room_id":"","old_name":"","new_name":"#algomancy-news","time":"2026-03-06T19:13:58.096215427Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1016402109853335563","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279323525267556","time":"2026-03-06T19:13:58.096262361Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1016402109853335563","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.096294768Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"788200427547000852","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.096525178Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1348882016841760838","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.096581959Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1348882016841760838","channel_receiver":"","room_id":"","old_name":"","new_name":"#meetup-faciliation-ideas","time":"2026-03-06T19:13:58.097028321Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1348882016841760838","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.097075604Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1348882016841760838","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.097115624Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"956699992381349918","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.097361818Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"626274553861242880","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.097423838Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"626274553861242880","channel_receiver":"","room_id":"","old_name":"","new_name":"#bot-spam","time":"2026-03-06T19:13:58.097879279Z","message":"Updating portal name"} +{"level":"debug","channel_id":"626274553861242880","channel_receiver":"","room_id":"","old_topic":"","new_topic":"You can Spam whatever Bot related stuff here you want.","time":"2026-03-06T19:13:58.097928308Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"626274553861242880","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"658434280300609578","time":"2026-03-06T19:13:58.097966931Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"626274553861242880","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.09801177Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"630494504775843861","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.09822409Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"630494504775843861","channel_receiver":"","room_id":"","old_name":"","new_name":"#coding-stem-and-academia","time":"2026-03-06T19:13:58.098724579Z","message":"Updating portal name"} +{"level":"debug","channel_id":"630494504775843861","channel_receiver":"","room_id":"","old_topic":"","new_topic":"SCIENCE and MATH","time":"2026-03-06T19:13:58.098774237Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"630494504775843861","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626215981387350058","time":"2026-03-06T19:13:58.098815095Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"630494504775843861","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.098864124Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"796866214748094494","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.099154668Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1329899607840264273","permissions":2222085186639425,"view_channel":true,"time":"2026-03-06T19:13:58.09921138Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1329899607840264273","channel_receiver":"","room_id":"","old_name":"","new_name":"#news-and-content","time":"2026-03-06T19:13:58.099684212Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1329899607840264273","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1313223599921827932","time":"2026-03-06T19:13:58.099734358Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1329899607840264273","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.09976921Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1280199902089052240","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.100020851Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1280199902089052240","channel_receiver":"","room_id":"","old_name":"","new_name":"#algomancy-deckbuilding","time":"2026-03-06T19:13:58.10051275Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1280199902089052240","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"979159143661338684","time":"2026-03-06T19:13:58.100565202Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1280199902089052240","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.100598586Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"627578177803386892","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.100851485Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"635857398631890982","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.100905683Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"878300071626682478","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.100942489Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1174753708215644202","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.10097762Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1174753708215644202","channel_receiver":"","room_id":"","old_name":"","new_name":"#rules-bot-development","time":"2026-03-06T19:13:58.101489284Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1174753708215644202","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.101541945Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1174753708215644202","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.10157533Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"628435587539533845","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.101824946Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"628435587539533845","channel_receiver":"","room_id":"","old_name":"","new_name":"#pets","time":"2026-03-06T19:13:58.102192945Z","message":"Updating portal name"} +{"level":"debug","channel_id":"628435587539533845","channel_receiver":"","room_id":"","old_topic":"","new_topic":"For pictures of .................................................................................................................................................\n......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... pets","time":"2026-03-06T19:13:58.102235409Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"628435587539533845","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626215981387350058","time":"2026-03-06T19:13:58.102290794Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"628435587539533845","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.10231454Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"626218039268081674","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.102484047Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"626218039268081674","channel_receiver":"","room_id":"","old_name":"","new_name":"#pauper","time":"2026-03-06T19:13:58.102803436Z","message":"Updating portal name"} +{"level":"debug","channel_id":"626218039268081674","channel_receiver":"","room_id":"","old_topic":"","new_topic":"The place to discussion anything about the pauper format.","time":"2026-03-06T19:13:58.102836541Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"626218039268081674","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626217935177777194","time":"2026-03-06T19:13:58.102862732Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"626218039268081674","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.102886548Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1239233988749430884","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.103022042Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1239233988749430884","channel_receiver":"","room_id":"","old_name":"","new_name":"#game-dev","time":"2026-03-06T19:13:58.103325925Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1239233988749430884","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"715685775580069888","time":"2026-03-06T19:13:58.103383545Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1239233988749430884","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.103405895Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1016040698325258340","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.103560875Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1016040698325258340","channel_receiver":"","room_id":"","old_name":"","new_name":"#suggestions","time":"2026-03-06T19:13:58.103893044Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1016040698325258340","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.103931737Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1016040698325258340","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.103956531Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"626215981387350059","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.104121079Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"626215981387350059","channel_receiver":"","room_id":"","old_name":"","new_name":"#welcome-welcome-welcome","time":"2026-03-06T19:13:58.104436696Z","message":"Updating portal name"} +{"level":"debug","channel_id":"626215981387350059","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"627654379452891186","time":"2026-03-06T19:13:58.104464284Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"626215981387350059","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.104489567Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"627115512052056092","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.104618775Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"627115512052056092","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-discussion","time":"2026-03-06T19:13:58.104885153Z","message":"Updating portal name"} +{"level":"debug","channel_id":"627115512052056092","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Its general chat.","time":"2026-03-06T19:13:58.104910157Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"627115512052056092","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"626215981387350058","time":"2026-03-06T19:13:58.104928595Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"627115512052056092","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.104945706Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"800448939212013588","permissions":2222085186638401,"view_channel":false,"time":"2026-03-06T19:13:58.105064927Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"627225430205661185","permissions":2222085186586177,"view_channel":true,"time":"2026-03-06T19:13:58.105097334Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"627225430205661185","channel_receiver":"","room_id":"","old_name":"","new_name":"#calebs-videos","time":"2026-03-06T19:13:58.105372442Z","message":"Updating portal name"} +{"level":"debug","channel_id":"627225430205661185","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"715685775580069888","time":"2026-03-06T19:13:58.10540436Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"627225430205661185","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.105424196Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1004488436109033522","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.105551797Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"628047588028842004","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.10558623Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"628047588028842004","channel_receiver":"","room_id":"","old_name":"","new_name":"#calebs-videos-discussion","time":"2026-03-06T19:13:58.105836125Z","message":"Updating portal name"} +{"level":"debug","channel_id":"628047588028842004","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Caleb never misplays","time":"2026-03-06T19:13:58.105868532Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"628047588028842004","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"715685775580069888","time":"2026-03-06T19:13:58.105888088Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"628047588028842004","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.105915396Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1020475407146942515","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.106062274Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1020475407146942515","channel_receiver":"","room_id":"","old_name":"","new_name":"#custom-algomancy","time":"2026-03-06T19:13:58.106327395Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1020475407146942515","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"979159143661338684","time":"2026-03-06T19:13:58.106374469Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1020475407146942515","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.106394584Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1313223815261847562","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.106548725Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1313223815261847562","channel_receiver":"","room_id":"","old_name":"","new_name":"#general","time":"2026-03-06T19:13:58.1068121Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1313223815261847562","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1313223599921827932","time":"2026-03-06T19:13:58.106838361Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1313223815261847562","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.106856799Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1050139956112261180","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.106982725Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1381788584117276813","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.107017925Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1381788584117276813","channel_receiver":"","room_id":"","old_name":"","new_name":"#patch-notes","time":"2026-03-06T19:13:58.107269427Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1381788584117276813","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1313223599921827932","time":"2026-03-06T19:13:58.107297993Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1381788584117276813","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.107315593Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"1064279804741955646","permissions":2222085186641473,"view_channel":true,"time":"2026-03-06T19:13:58.107452973Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1064279804741955646","channel_receiver":"","room_id":"","old_name":"","new_name":"#rules-questions","time":"2026-03-06T19:13:58.10772438Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1064279804741955646","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1064279655898685553","time":"2026-03-06T19:13:58.107752945Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1064279804741955646","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.107777739Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"626215981387350057","channel_id":"937440163255164968","permissions":2222085186640449,"view_channel":false,"time":"2026-03-06T19:13:58.107907157Z","message":"Computed permissions in channel"} +{"level":"debug","module":"Guild/749658718932566048","time":"2026-03-06T19:13:58.112317484Z","message":"Updating name \"\" -> \"idfc\""} +{"level":"debug","module":"Guild/749658718932566048","time":"2026-03-06T19:13:58.112361136Z","message":"Updating avatar \"\" -> \"d02b25b3c370e64b8e88a5883fbc2ee9\""} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":36,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":25.497862,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<17848 bytes>","time":"2026-03-06T19:13:58.371088054Z","message":"Request completed"} +{"level":"debug","module":"Guild/749658718932566048","time":"2026-03-06T19:13:58.371420433Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"749658718932566051","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.371622626Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"749658718932566051","channel_receiver":"","room_id":"","old_name":"","new_name":"#main-chat","time":"2026-03-06T19:13:58.37215657Z","message":"Updating portal name"} +{"level":"debug","channel_id":"749658718932566051","channel_receiver":"","room_id":"","old_topic":"","new_topic":"main (/meɪn/ noun) what a man calls a woman that is his #1 girl, as apposed to the other females he may have.","time":"2026-03-06T19:13:58.372202247Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"749658718932566051","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"833600601657049098","time":"2026-03-06T19:13:58.372239892Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"749658718932566051","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.372734025Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"782362329928171590","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.373044125Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"782362329928171590","channel_receiver":"","room_id":"","old_name":"","new_name":"#phasmo-chat","time":"2026-03-06T19:13:58.373532881Z","message":"Updating portal name"} +{"level":"debug","channel_id":"782362329928171590","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Geister suchen war noch nie so einfach In schā' Allāh!","time":"2026-03-06T19:13:58.373582399Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"782362329928171590","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1220474689596555355","time":"2026-03-06T19:13:58.373616761Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"782362329928171590","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.374078698Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"790352562851151942","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.374299609Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"790352562851151942","channel_receiver":"","room_id":"","old_name":"","new_name":"#memes","time":"2026-03-06T19:13:58.374819305Z","message":"Updating portal name"} +{"level":"debug","channel_id":"790352562851151942","channel_receiver":"","room_id":"","old_topic":"","new_topic":"A meme ( / miːm / MEEM) The real reason why most high schoolers don't chug a gallon of bleach when they get home.","time":"2026-03-06T19:13:58.374873782Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"790352562851151942","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"833600601657049098","time":"2026-03-06T19:13:58.374925116Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"790352562851151942","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.374961923Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"798597751969284096","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.375175081Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"798597751969284096","channel_receiver":"","room_id":"","old_name":"","new_name":"#informatik-nerds","time":"2026-03-06T19:13:58.375706022Z","message":"Updating portal name"} +{"level":"debug","channel_id":"798597751969284096","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Informatics\n\n**Not to be confused with computer science\n\n(noun, uncountable)\n\nInformatics is the emerging scientific study of information and data acquisition, storage, processing, manipulation, and retrieval, and the development and engineering of information systems. Fields of informatics include bioinformatics, urban informatics, behavioral informatics (BI), geoinformatics, and ecoinformatics. Informatics is the short form for information sciences. Short forms are commonly adopted by many advanced technological disciplines including aeronautics and robotics. Aeronautics, for example, is an umbrella term for both aeronautical science and aeronautical/aerospace engineering.\n\nSee also: information sciences, information systems engineering, information engineering, emerging field\n\"To distinguish themselves from those in similar fields, people in the field of urban informatics are called either civil or urban technologists\"","time":"2026-03-06T19:13:58.375763432Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"798597751969284096","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"833617249322795108","time":"2026-03-06T19:13:58.375855205Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"798597751969284096","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.376280893Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"800693215048499219","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.37660559Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"800693215048499219","channel_receiver":"","room_id":"","old_name":"","new_name":"#fun-with-bots","time":"2026-03-06T19:13:58.377050206Z","message":"Updating portal name"} +{"level":"debug","channel_id":"800693215048499219","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Discord \na program where gamers come together and chat, voice chat and do amazing things","time":"2026-03-06T19:13:58.377095743Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"800693215048499219","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"833600601657049098","time":"2026-03-06T19:13:58.377140302Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"800693215048499219","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.377182836Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"808966402060058634","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.377403188Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"808966402060058634","channel_receiver":"","room_id":"","old_name":"","new_name":"#omniscient","time":"2026-03-06T19:13:58.37786268Z","message":"Updating portal name"} +{"level":"debug","channel_id":"808966402060058634","channel_receiver":"","room_id":"","old_topic":"","new_topic":"omniscient\nOne having total knowledge \nNo mortal being is omniscient, though this could be used to state that some person knows almost everything about a thing.\n- omniscient God \n- the omniscient narrator","time":"2026-03-06T19:13:58.377909614Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"808966402060058634","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"833600427207557130","time":"2026-03-06T19:13:58.377964859Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"808966402060058634","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.378384192Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"833612686422966282","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.378614253Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"833612686422966282","channel_receiver":"","room_id":"","old_name":"","new_name":"#self-roles","time":"2026-03-06T19:13:58.379051395Z","message":"Updating portal name"} +{"level":"debug","channel_id":"833612686422966282","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"833612569536888892","time":"2026-03-06T19:13:58.379098329Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"833612686422966282","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.379560545Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"833616835156901889","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.379867571Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"833616835156901889","channel_receiver":"","room_id":"","old_name":"","new_name":"#schule-main","time":"2026-03-06T19:13:58.380316028Z","message":"Updating portal name"} +{"level":"debug","channel_id":"833616835156901889","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"833617249322795108","time":"2026-03-06T19:13:58.380387058Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"833616835156901889","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.380425192Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"863500989242540073","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.380618864Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"863500989242540073","channel_receiver":"","room_id":"","old_name":"","new_name":"#music","time":"2026-03-06T19:13:58.381064318Z","message":"Updating portal name"} +{"level":"debug","channel_id":"863500989242540073","channel_receiver":"","room_id":"","old_topic":"","new_topic":"⏯ Pause/Resume the song.\n⏹ Stop and empty the queue.\n⏭ Skip the song.\n🔄 Switch between the loop modes.\n🔀 Shuffle the queue.\n⭐ Add the current song to your private playlist.\n❌ Remove the current song from your private playlist.","time":"2026-03-06T19:13:58.381112998Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"863500989242540073","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"833600601657049098","time":"2026-03-06T19:13:58.381162516Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"863500989242540073","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.381225025Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"749658718932566048","channel_id":"1036032585643589672","permissions":2248475508473855,"view_channel":true,"time":"2026-03-06T19:13:58.381494616Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1036032585643589672","channel_receiver":"","room_id":"","old_name":"","new_name":"#die-wahren-txt","time":"2026-03-06T19:13:58.381949079Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1036032585643589672","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"833600601657049098","time":"2026-03-06T19:13:58.381996642Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1036032585643589672","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.382043506Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","module":"Guild/888085585036726313","time":"2026-03-06T19:13:58.3840382Z","message":"Updating name \"\" -> \"Informatik-HWR\""} +{"level":"debug","module":"Guild/888085585036726313","time":"2026-03-06T19:13:58.384083458Z","message":"Updating avatar \"\" -> \"51cc56708c3162e8278d1cf8221ff863\""} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:13:58.404051352Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":37,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":20.77108,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38299 bytes>","time":"2026-03-06T19:13:58.640799548Z","message":"Request completed"} +{"level":"debug","module":"Guild/888085585036726313","time":"2026-03-06T19:13:58.641141496Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1154833583396106291","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.64135228Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963445533047914516","permissions":2239634423148097,"view_channel":true,"time":"2026-03-06T19:13:58.641421144Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"963445533047914516","channel_receiver":"","room_id":"","old_name":"","new_name":"#❗wichtige-infos❗","time":"2026-03-06T19:13:58.641996714Z","message":"Updating portal name"} +{"level":"debug","channel_id":"963445533047914516","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Hier findet ihr wichtige (aktuelle) Infos. Gerne könnt ihr auch einmal im FAQ-Channel vorbeischauen","time":"2026-03-06T19:13:58.642046372Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"963445533047914516","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"963425572829151252","time":"2026-03-06T19:13:58.64209156Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"963445533047914516","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.642589325Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963344321254404137","permissions":2239703142622785,"view_channel":true,"time":"2026-03-06T19:13:58.642908714Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"963344321254404137","channel_receiver":"","room_id":"","old_name":"","new_name":"#regeln","time":"2026-03-06T19:13:58.643416746Z","message":"Updating portal name"} +{"level":"debug","channel_id":"963344321254404137","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"888089720964390922","time":"2026-03-06T19:13:58.643465706Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"963344321254404137","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.64389307Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963437318390300713","permissions":2239703142624833,"view_channel":true,"time":"2026-03-06T19:13:58.644135493Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"963437318390300713","channel_receiver":"","room_id":"","old_name":"","new_name":"#kurssprecher-rollen","time":"2026-03-06T19:13:58.644627252Z","message":"Updating portal name"} +{"level":"debug","channel_id":"963437318390300713","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"888089720964390922","time":"2026-03-06T19:13:58.644678795Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"963437318390300713","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.644727964Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963344321254404138","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.645006774Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"888085585036726319","permissions":2239602210754113,"view_channel":true,"time":"2026-03-06T19:13:58.645068934Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"888085585036726319","channel_receiver":"","room_id":"","old_name":"","new_name":"#🏫hausaufgabenhilfe","time":"2026-03-06T19:13:58.645593449Z","message":"Updating portal name"} +{"level":"debug","channel_id":"888085585036726319","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"963425572829151252","time":"2026-03-06T19:13:58.645660009Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"888085585036726319","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.645704848Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995722664841298","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.645988896Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995722664841298","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem1-b","time":"2026-03-06T19:13:58.646482611Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995722664841298","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.646531849Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995722664841298","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.646939519Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1017926559702720592","permissions":2168387357969985,"view_channel":true,"time":"2026-03-06T19:13:58.647207294Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1017926559702720592","channel_receiver":"","room_id":"","old_name":"","new_name":"#👋willkommenschat","time":"2026-03-06T19:13:58.647671325Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1017926559702720592","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Herzlich Willkommen!","time":"2026-03-06T19:13:58.647725733Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1017926559702720592","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"888089720964390922","time":"2026-03-06T19:13:58.647774482Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1017926559702720592","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.647808286Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995199949701170","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.648036111Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995199949701170","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem1-a","time":"2026-03-06T19:13:58.648523191Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995199949701170","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.648571871Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995199949701170","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.648609586Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1292453914167349279","permissions":2239703141575233,"view_channel":false,"time":"2026-03-06T19:13:58.648805703Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1292453735011848296","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.649058741Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"978543446564433960","permissions":2238605741260800,"view_channel":false,"time":"2026-03-06T19:13:58.649719938Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1176501990755405914","permissions":2238605741260800,"view_channel":false,"time":"2026-03-06T19:13:58.649858854Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963437253986766878","permissions":2239703142624833,"view_channel":true,"time":"2026-03-06T19:13:58.649970322Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"963437253986766878","channel_receiver":"","room_id":"","old_name":"","new_name":"#💬kurssprecher-austausch","time":"2026-03-06T19:13:58.650863046Z","message":"Updating portal name"} +{"level":"debug","channel_id":"963437253986766878","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"963437164845228042","time":"2026-03-06T19:13:58.65092758Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"963437253986766878","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.651391402Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1216501088086130753","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.651638714Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"934057804002623549","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.651698778Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963432291407900682","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.651740404Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1292454196532084756","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.651795649Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"900013550314082324","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.651856691Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1154808068610215996","permissions":2239565703671361,"view_channel":true,"time":"2026-03-06T19:13:58.651912425Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1154808068610215996","channel_receiver":"","room_id":"","old_name":"","new_name":"#❗wichtige-infos❗","time":"2026-03-06T19:13:58.652425975Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1154808068610215996","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1154807974578094162","time":"2026-03-06T19:13:58.652479614Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1154808068610215996","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.652930446Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1053024906671034549","permissions":2239703141575233,"view_channel":false,"time":"2026-03-06T19:13:58.659361029Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995892618166353","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.659399652Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995892618166353","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem6-b","time":"2026-03-06T19:13:58.660360053Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995892618166353","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.660390434Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995892618166353","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.660410339Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995852902305814","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.660524322Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995852902305814","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem5-b","time":"2026-03-06T19:13:58.660784973Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995852902305814","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.660809837Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995852902305814","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.660828066Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"962808287777140756","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.66095441Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1069573779795214346","permissions":2239703142624833,"view_channel":true,"time":"2026-03-06T19:13:58.660984442Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1069573779795214346","channel_receiver":"","room_id":"","old_name":"","new_name":"#old-stundenplanänderungen","time":"2026-03-06T19:13:58.661231055Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1069573779795214346","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"888085585036726317","time":"2026-03-06T19:13:58.661259271Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1069573779795214346","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.661495408Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"965941185866772570","permissions":2239168418743873,"view_channel":true,"time":"2026-03-06T19:13:58.661633766Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"965941185866772570","channel_receiver":"","room_id":"","old_name":"","new_name":"#htw-mensa","time":"2026-03-06T19:13:58.66188834Z","message":"Updating portal name"} +{"level":"debug","channel_id":"965941185866772570","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Ein Webhook zur Automatisierten Ausgabe des HTW Mensa Plans\nrealisiert durch Martin S. Github: \"https://github.com/martincodes-de/studierendenwerk-berlin-mensa-crawler-for-discord/tree/dev\"","time":"2026-03-06T19:13:58.661917954Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"965941185866772570","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"888089720964390922","time":"2026-03-06T19:13:58.661953433Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"965941185866772570","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.661978507Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1151826913296400405","permissions":2238605741260800,"view_channel":false,"time":"2026-03-06T19:13:58.66210541Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1154808878001815652","permissions":2239703142624833,"view_channel":true,"time":"2026-03-06T19:13:58.662137328Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1154808878001815652","channel_receiver":"","room_id":"","old_name":"","new_name":"#💬allgemeiner-chat","time":"2026-03-06T19:13:58.662403986Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1154808878001815652","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1154807974578094162","time":"2026-03-06T19:13:58.66243311Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1154808878001815652","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.662452107Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"888085585036726318","permissions":2238605741260800,"view_channel":false,"time":"2026-03-06T19:13:58.662562458Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995819679350797","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.66259249Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995819679350797","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem4-b","time":"2026-03-06T19:13:58.662834074Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995819679350797","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.662859846Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995819679350797","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.662878075Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963146107670655066","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.662992756Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1478739691758162040","permissions":2239703141575233,"view_channel":false,"time":"2026-03-06T19:13:58.663022578Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963385455519354930","permissions":2239170566227521,"view_channel":true,"time":"2026-03-06T19:13:58.663049328Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"963385455519354930","channel_receiver":"","room_id":"","old_name":"","new_name":"#hier-rollen-wählen","time":"2026-03-06T19:13:58.663290004Z","message":"Updating portal name"} +{"level":"debug","channel_id":"963385455519354930","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"888089720964390922","time":"2026-03-06T19:13:58.663323598Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"963385455519354930","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.663368018Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"916340188513443910","permissions":2239376724053569,"view_channel":true,"time":"2026-03-06T19:13:58.663491499Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"916340188513443910","channel_receiver":"","room_id":"","old_name":"","new_name":"#bot","time":"2026-03-06T19:13:58.663737693Z","message":"Updating portal name"} +{"level":"debug","channel_id":"916340188513443910","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1016263238024970280","time":"2026-03-06T19:13:58.663762417Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"916340188513443910","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.664001766Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995836686995487","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.664118612Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995836686995487","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem5-a","time":"2026-03-06T19:13:58.664409645Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995836686995487","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.664439677Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995836686995487","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.664463982Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995805380706364","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.6645846Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995805380706364","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem4-a","time":"2026-03-06T19:13:58.664831911Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995805380706364","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.664858172Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995805380706364","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.664880312Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995755837853696","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.66498724Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995755837853696","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem2-b","time":"2026-03-06T19:13:58.665241466Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995755837853696","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.665266679Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995755837853696","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.665286724Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963411848122732544","permissions":2239703141575233,"view_channel":false,"time":"2026-03-06T19:13:58.665423196Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"888090056831688824","permissions":2239602210754113,"view_channel":true,"time":"2026-03-06T19:13:58.665461329Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"888090056831688824","channel_receiver":"","room_id":"","old_name":"","new_name":"#😂memes","time":"2026-03-06T19:13:58.665718977Z","message":"Updating portal name"} +{"level":"debug","channel_id":"888090056831688824","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"963425572829151252","time":"2026-03-06T19:13:58.665745657Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"888090056831688824","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.665765772Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995741006790667","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.665897285Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995741006790667","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem2-a","time":"2026-03-06T19:13:58.666155142Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995741006790667","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.666183079Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995741006790667","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.666203054Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1478739618428879050","permissions":2239703141575233,"view_channel":false,"time":"2026-03-06T19:13:58.666322694Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1016270905200095282","permissions":2239685962616385,"view_channel":true,"time":"2026-03-06T19:13:58.666387996Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1016270905200095282","channel_receiver":"","room_id":"","old_name":"","new_name":"#❓faq","time":"2026-03-06T19:13:58.666622876Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1016270905200095282","channel_receiver":"","room_id":"","old_topic":"","new_topic":"In diesem Kanal sollen häufig gestellte Fragen beantwortet werden. Wenn du einen Wunsch für weitere Einträge hast, kannst du dich gerne an uns Admins und Kurssprecher wenden.","time":"2026-03-06T19:13:58.666652489Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1016270905200095282","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"963425572829151252","time":"2026-03-06T19:13:58.666684895Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1016270905200095282","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.666713251Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1070733327323111474","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.666827443Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1292453634025586708","permissions":2239703141575233,"view_channel":false,"time":"2026-03-06T19:13:58.666861317Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963412151307997205","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.666898473Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963068330485383169","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.666935769Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1154833663003992187","permissions":2239703142624833,"view_channel":true,"time":"2026-03-06T19:13:58.666970201Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1154833663003992187","channel_receiver":"","room_id":"","old_name":"","new_name":"#❓fragen","time":"2026-03-06T19:13:58.667225893Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1154833663003992187","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1154807974578094162","time":"2026-03-06T19:13:58.667256135Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1154833663003992187","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.667284701Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1217126265572823212","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.667434442Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1073274739411394632","permissions":2239703142624833,"view_channel":true,"time":"2026-03-06T19:13:58.66747076Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1073274739411394632","channel_receiver":"","room_id":"","old_name":"","new_name":"#old-stundenplanänderungen","time":"2026-03-06T19:13:58.667728408Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1073274739411394632","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"963145159040696362","time":"2026-03-06T19:13:58.667759767Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1073274739411394632","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.667991294Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"900020755323039774","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.668110794Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1292452996830990346","permissions":2239703141575233,"view_channel":false,"time":"2026-03-06T19:13:58.66814369Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"969488674989420624","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.668176586Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1154809161167687731","permissions":2239703142624833,"view_channel":true,"time":"2026-03-06T19:13:58.668211437Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1154809161167687731","channel_receiver":"","room_id":"","old_name":"","new_name":"#old-stundenplanänderungen","time":"2026-03-06T19:13:58.668485777Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1154809161167687731","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1154807974578094162","time":"2026-03-06T19:13:58.668516787Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1154809161167687731","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.668546889Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1262006339731849309","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.668673863Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1262006339731849309","channel_receiver":"","room_id":"","old_name":"","new_name":"#info","time":"2026-03-06T19:13:58.668942336Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1262006339731849309","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.668972927Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1262006339731849309","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.669001492Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963426020789190737","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.669139152Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963432462342557696","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.6691754Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963432366062334082","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.669211299Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963463792451264554","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.669247547Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"888089773116391466","permissions":2239703142624833,"view_channel":true,"time":"2026-03-06T19:13:58.669278976Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"888089773116391466","channel_receiver":"","room_id":"","old_name":"","new_name":"#❗wichtige-infos❗","time":"2026-03-06T19:13:58.669557018Z","message":"Updating portal name"} +{"level":"debug","channel_id":"888089773116391466","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"888085585036726317","time":"2026-03-06T19:13:58.669588028Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"888089773116391466","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.669616523Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1243518498706030693","permissions":2238605741260800,"view_channel":false,"time":"2026-03-06T19:13:58.669732182Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995871055122442","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.669765986Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995871055122442","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem6-a","time":"2026-03-06T19:13:58.670026986Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995871055122442","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.670056529Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995871055122442","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.670082371Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1012347006137679963","permissions":2239168417695297,"view_channel":true,"time":"2026-03-06T19:13:58.670199985Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1012347006137679963","channel_receiver":"","room_id":"","old_name":"","new_name":"#👋willkommensgrüße","time":"2026-03-06T19:13:58.670476211Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1012347006137679963","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Herzlich Willkommen auf dem Informatik-Discordserver! Hier findest du die wichtigsten Informationen von uns Admins zum Start. Bei Fragen gerne an uns @Admin wenden oder im willkommenschat nachfragen","time":"2026-03-06T19:13:58.670514764Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1012347006137679963","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"888089720964390922","time":"2026-03-06T19:13:58.670548149Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1012347006137679963","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.670578181Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963412493961691217","permissions":2239703142621761,"view_channel":false,"time":"2026-03-06T19:13:58.6707157Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963412471283073024","permissions":2239703142621761,"view_channel":false,"time":"2026-03-06T19:13:58.670765707Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1154804920059449466","permissions":2168249918753344,"view_channel":false,"time":"2026-03-06T19:13:58.670801955Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963413913414807683","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.670836807Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995773017456640","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.670872636Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995773017456640","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem3-a","time":"2026-03-06T19:13:58.671198101Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995773017456640","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.671229809Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995773017456640","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.671256489Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963431353586696292","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.671422993Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1261995787358048288","permissions":461799282771521,"view_channel":true,"time":"2026-03-06T19:13:58.671456587Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1261995787358048288","channel_receiver":"","room_id":"","old_name":"","new_name":"#sem3-b","time":"2026-03-06T19:13:58.671704457Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1261995787358048288","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1261994992218411038","time":"2026-03-06T19:13:58.671734698Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1261995787358048288","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.67176068Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1047893766612197487","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.671887094Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1210616114338467910","permissions":2238605741260800,"view_channel":false,"time":"2026-03-06T19:13:58.671925717Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963079485354311700","permissions":2239170566278721,"view_channel":true,"time":"2026-03-06T19:13:58.67195966Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"963079485354311700","channel_receiver":"","room_id":"","old_name":"","new_name":"#server-vorschläge","time":"2026-03-06T19:13:58.672226807Z","message":"Updating portal name"} +{"level":"debug","channel_id":"963079485354311700","channel_receiver":"","room_id":"","old_topic":"","new_topic":"suggestions Kanal: \"+suggest \" zur erstellung eines Vorschlags","time":"2026-03-06T19:13:58.672262985Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"963079485354311700","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1016263238024970280","time":"2026-03-06T19:13:58.672298674Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"963079485354311700","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.672357831Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1154833694528393226","permissions":2168249919014465,"view_channel":true,"time":"2026-03-06T19:13:58.672496398Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1154833694528393226","channel_receiver":"","room_id":"","old_name":"","new_name":"#archiv","time":"2026-03-06T19:13:58.672752719Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1154833694528393226","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1154807974578094162","time":"2026-03-06T19:13:58.672782681Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1154833694528393226","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.672808732Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1154833628396789801","permissions":2239703142624833,"view_channel":true,"time":"2026-03-06T19:13:58.672944086Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1154833628396789801","channel_receiver":"","room_id":"","old_name":"","new_name":"#💬chat-kurs-b","time":"2026-03-06T19:13:58.673187417Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1154833628396789801","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1154807974578094162","time":"2026-03-06T19:13:58.673237494Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1154833628396789801","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.6732699Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1292453871544963134","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.673417687Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963145932453609472","permissions":2238642248482816,"view_channel":false,"time":"2026-03-06T19:13:58.673453865Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"1153973001860161598","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.673490043Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"888089972714897448","permissions":2238605741260800,"view_channel":false,"time":"2026-03-06T19:13:58.673523428Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"983652222963437588","permissions":2239602210754113,"view_channel":true,"time":"2026-03-06T19:13:58.67356247Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"983652222963437588","channel_receiver":"","room_id":"","old_name":"","new_name":"#💬allgemeiner-chat","time":"2026-03-06T19:13:58.673816486Z","message":"Updating portal name"} +{"level":"debug","channel_id":"983652222963437588","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"963425572829151252","time":"2026-03-06T19:13:58.673847216Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"983652222963437588","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.673874175Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963146683254988930","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.673989625Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963063479470805033","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.674023917Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963412184111644742","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.67406254Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"888085585036726313","channel_id":"963146135516635166","permissions":2239703142623809,"view_channel":false,"time":"2026-03-06T19:13:58.67409774Z","message":"Computed permissions in channel"} +{"level":"debug","module":"Guild/1000343719314198548","time":"2026-03-06T19:13:58.675564008Z","message":"Updating name \"\" -> \"Shapez 2\""} +{"level":"debug","module":"Guild/1000343719314198548","time":"2026-03-06T19:13:58.675593063Z","message":"Updating avatar \"\" -> \"e065ef98a9c8d4a286cd5d63ce10ccc7\""} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":38,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":21.155492,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<13849 bytes>","time":"2026-03-06T19:13:58.733280093Z","message":"Request completed"} +{"level":"debug","module":"Guild/1000343719314198548","time":"2026-03-06T19:13:58.73359571Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1092755082862411818","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.733755788Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1097212699252895874","permissions":2181575055099392,"view_channel":true,"time":"2026-03-06T19:13:58.733806563Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1097212699252895874","channel_receiver":"","room_id":"","old_name":"","new_name":"#❓faq","time":"2026-03-06T19:13:58.734280164Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1097212699252895874","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Frequently asked questions","time":"2026-03-06T19:13:58.734326539Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1097212699252895874","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1272792400120643656","time":"2026-03-06T19:13:58.734393797Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1097212699252895874","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.734768011Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175446810630819860","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.734971392Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1274675232078303232","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.735022307Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1274675232078303232","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-ja","time":"2026-03-06T19:13:58.735432211Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1274675232078303232","channel_receiver":"","room_id":"","old_topic":"","new_topic":"シェイプス2について日本語でチャットする!","time":"2026-03-06T19:13:58.735484732Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1274675232078303232","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1274673925829296210","time":"2026-03-06T19:13:58.735520981Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1274675232078303232","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.735888071Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1274674994114199623","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.73607022Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1274674994114199623","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-es","time":"2026-03-06T19:13:58.736520144Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1274674994114199623","channel_receiver":"","room_id":"","old_topic":"","new_topic":"¡Chatea en español sobre shapez 2!","time":"2026-03-06T19:13:58.736570779Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1274674994114199623","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1274673925829296210","time":"2026-03-06T19:13:58.736603186Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1274674994114199623","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.736635663Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1174728111124926576","permissions":2181437615835648,"view_channel":false,"time":"2026-03-06T19:13:58.736807614Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1000352074426499182","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.736861113Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1000346230687289364","permissions":2181849933006400,"view_channel":true,"time":"2026-03-06T19:13:58.736899666Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1000346230687289364","channel_receiver":"","room_id":"","old_name":"","new_name":"#📢discussions","time":"2026-03-06T19:13:58.737351406Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1000346230687289364","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Discussions and Surveys - Please participate by voting and giving your opinion in the corresponding threads! I","time":"2026-03-06T19:13:58.737403997Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1000346230687289364","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1272792400120643656","time":"2026-03-06T19:13:58.737440734Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1000346230687289364","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.737483198Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1000733575567659138","permissions":2181849933006400,"view_channel":true,"time":"2026-03-06T19:13:58.737676731Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1000733575567659138","channel_receiver":"","room_id":"","old_name":"","new_name":"#✨updates","time":"2026-03-06T19:13:58.738073505Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1000733575567659138","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Regular updates about the development. Please participate by sharing your opinion in the corresponding thread","time":"2026-03-06T19:13:58.738119321Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1000733575567659138","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1272792400120643656","time":"2026-03-06T19:13:58.738152217Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1000733575567659138","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.738182249Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175446927693840465","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.738369356Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1274677290621730900","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.73842516Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1274677290621730900","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-pt","time":"2026-03-06T19:13:58.738805591Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1274677290621730900","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Converse em português via shapez 2!","time":"2026-03-06T19:13:58.73885008Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1274677290621730900","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1274673925829296210","time":"2026-03-06T19:13:58.738881021Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1274677290621730900","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.738914405Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1274675117980651561","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.739080071Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1274675117980651561","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-tr","time":"2026-03-06T19:13:58.739496331Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1274675117980651561","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Shapez 2 ile Türkçe sohbet edin!","time":"2026-03-06T19:13:58.739543614Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1274675117980651561","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1274673925829296210","time":"2026-03-06T19:13:58.739575811Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1274675117980651561","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.739606123Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1092754937072599080","permissions":2181849933006400,"view_channel":true,"time":"2026-03-06T19:13:58.739771719Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1092754937072599080","channel_receiver":"","room_id":"","old_name":"","new_name":"#windows-specific","time":"2026-03-06T19:13:58.740172683Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1092754937072599080","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Windows specific build hints","time":"2026-03-06T19:13:58.740216544Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1092754937072599080","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1090657312122884126","time":"2026-03-06T19:13:58.740250976Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1092754937072599080","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.74064335Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1435311283691065477","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.740825778Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1435311408500834506","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.740874807Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1032588324231196682","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.74091336Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1068092532828930068","permissions":2181849931958848,"view_channel":false,"time":"2026-03-06T19:13:58.740951494Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1274674827017457695","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.740989767Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1274674827017457695","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-kor","time":"2026-03-06T19:13:58.741386471Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1274674827017457695","channel_receiver":"","room_id":"","old_topic":"","new_topic":"셰이프즈 2를 통해 한국어로 채팅하세요!","time":"2026-03-06T19:13:58.741435081Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1274674827017457695","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1274673925829296210","time":"2026-03-06T19:13:58.741470142Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1274674827017457695","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.741499685Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1092755204774039653","permissions":2181849933006400,"view_channel":true,"time":"2026-03-06T19:13:58.741686932Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1092755204774039653","channel_receiver":"","room_id":"","old_name":"","new_name":"#linux-specific","time":"2026-03-06T19:13:58.742088595Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1092755204774039653","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Linux specific build hints","time":"2026-03-06T19:13:58.742132456Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1092755204774039653","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1090657312122884126","time":"2026-03-06T19:13:58.742163466Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1092755204774039653","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.742194336Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1017532676422508586","permissions":2181849933005376,"view_channel":false,"time":"2026-03-06T19:13:58.74240959Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1259715601782538281","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.742474892Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1201822000037765160","permissions":2181575055099392,"view_channel":true,"time":"2026-03-06T19:13:58.742513655Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1201822000037765160","channel_receiver":"","room_id":"","old_name":"","new_name":"#🔍troubleshooting","time":"2026-03-06T19:13:58.742894854Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1201822000037765160","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1272792400120643656","time":"2026-03-06T19:13:58.742942207Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1201822000037765160","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.742974613Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1274675315377045565","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.743174223Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1274675315377045565","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-cn","time":"2026-03-06T19:13:58.743602146Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1274675315377045565","channel_receiver":"","room_id":"","old_topic":"","new_topic":"通过 shapez 用简体中文聊天 2!","time":"2026-03-06T19:13:58.74364894Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1274675315377045565","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1274673925829296210","time":"2026-03-06T19:13:58.743684211Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1274675315377045565","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.743716198Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175446974816849980","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.743886474Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1070834065495830588","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.743934735Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1002817143936663672","permissions":2181884292746816,"view_channel":true,"time":"2026-03-06T19:13:58.743973288Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1002817143936663672","channel_receiver":"","room_id":"","old_name":"","new_name":"#🖼gallery","time":"2026-03-06T19:13:58.744367198Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1002817143936663672","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Share cool screenshots of your factories here!","time":"2026-03-06T19:13:58.744415878Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1002817143936663672","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1000343719813324840","time":"2026-03-06T19:13:58.744449262Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1002817143936663672","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.744809788Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1093933544025358436","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.744999689Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1093933544025358436","channel_receiver":"","room_id":"","old_name":"","new_name":"#🛠blueprint-chat","time":"2026-03-06T19:13:58.745413714Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1093933544025358436","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Discuss blueprints here - but sharing should mostly happen in the #blueprints forum!","time":"2026-03-06T19:13:58.745463232Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1093933544025358436","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1000343719813324840","time":"2026-03-06T19:13:58.745498083Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1093933544025358436","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.745532446Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1277608001376751647","permissions":2181884292746816,"view_channel":true,"time":"2026-03-06T19:13:58.745721369Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1277608001376751647","channel_receiver":"","room_id":"","old_name":"","new_name":"#shape-bot-spam","time":"2026-03-06T19:13:58.746108295Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1277608001376751647","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Use the shape bot here to not spam other channels :)","time":"2026-03-06T19:13:58.746152505Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1277608001376751647","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1000343719813324840","time":"2026-03-06T19:13:58.746184912Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1277608001376751647","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.746214525Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1000351178535731230","permissions":2181575055099392,"view_channel":true,"time":"2026-03-06T19:13:58.74643362Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1000351178535731230","channel_receiver":"","room_id":"","old_name":"","new_name":"#new-members","time":"2026-03-06T19:13:58.746827041Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1000351178535731230","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1272792400120643656","time":"2026-03-06T19:13:58.746870832Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1000351178535731230","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.746903239Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1092755347254554634","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.747071279Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175446754913681498","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.747119401Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1248891331615526962","permissions":2181884292746816,"view_channel":true,"time":"2026-03-06T19:13:58.74715509Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1248891331615526962","channel_receiver":"","room_id":"","old_name":"","new_name":"#🎰make-anything-machine","time":"2026-03-06T19:13:58.747564296Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1248891331615526962","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Discussion about Make Anything Machines (MAM) that can automatically produce any given shape.","time":"2026-03-06T19:13:58.747622474Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1248891331615526962","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1000343719813324840","time":"2026-03-06T19:13:58.747658722Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1248891331615526962","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.747692037Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1174730612276469831","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.74789437Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1179827410418540604","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.747942561Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1219552445798023250","permissions":2181884292746816,"view_channel":true,"time":"2026-03-06T19:13:58.747980625Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1219552445798023250","channel_receiver":"","room_id":"","old_name":"","new_name":"#🔌wires","time":"2026-03-06T19:13:58.748382358Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1219552445798023250","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Discuss everything about wires in shapez 2!","time":"2026-03-06T19:13:58.748431806Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1219552445798023250","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1000343719813324840","time":"2026-03-06T19:13:58.748467076Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1219552445798023250","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.74849669Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1274674626101772350","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.748696159Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1274674626101772350","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-ru","time":"2026-03-06T19:13:58.749076171Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1274674626101772350","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Общайся на русском языке через shapez 2!","time":"2026-03-06T19:13:58.749119403Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1274674626101772350","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1274673925829296210","time":"2026-03-06T19:13:58.749155651Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1274674626101772350","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.74918708Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1274674268407336990","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.749374886Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1274674268407336990","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-fr","time":"2026-03-06T19:13:58.749764117Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1274674268407336990","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Salon Textuel en français pour le jeu","time":"2026-03-06T19:13:58.749809374Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1274674268407336990","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1274673925829296210","time":"2026-03-06T19:13:58.749859102Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1274674268407336990","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.749891229Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1000343719813324842","permissions":2181884292746816,"view_channel":true,"time":"2026-03-06T19:13:58.750056965Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1000343719813324842","channel_receiver":"","room_id":"","old_name":"","new_name":"#💬shapez-2","time":"2026-03-06T19:13:58.750469523Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1000343719813324842","channel_receiver":"","room_id":"","old_topic":"","new_topic":"General shapez 2 related chatting","time":"2026-03-06T19:13:58.750518552Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1000343719813324842","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1000343719813324840","time":"2026-03-06T19:13:58.750551518Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1000343719813324842","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.750583436Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1264239189092991137","permissions":2181884292746816,"view_channel":true,"time":"2026-03-06T19:13:58.750748613Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1264239189092991137","channel_receiver":"","room_id":"","old_name":"","new_name":"#📖wiki","time":"2026-03-06T19:13:58.75113931Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1264239189092991137","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Wiki Discussion (https://shapez2.wiki.gg/)","time":"2026-03-06T19:13:58.751184428Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1264239189092991137","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1000343719813324840","time":"2026-03-06T19:13:58.751217045Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1264239189092991137","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.751250429Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1000357913996566590","permissions":2181884292746816,"view_channel":true,"time":"2026-03-06T19:13:58.751448921Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1000357913996566590","channel_receiver":"","room_id":"","old_name":"","new_name":"#👻off-topic","time":"2026-03-06T19:13:58.751846533Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1000357913996566590","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Anything which doesn't belong directly to shapez 2 goes here","time":"2026-03-06T19:13:58.75189179Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1000357913996566590","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1000343719813324840","time":"2026-03-06T19:13:58.751924267Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1000357913996566590","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.751956674Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175446687897108631","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.75212234Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175446871632781373","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.752172277Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1010093950603902996","permissions":2181575055098432,"view_channel":false,"time":"2026-03-06T19:13:58.752218233Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1199783111102304266","permissions":2181884292743744,"view_channel":false,"time":"2026-03-06T19:13:58.752261814Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175447671775961098","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.75229939Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1110855752186351708","permissions":2181884292745792,"view_channel":false,"time":"2026-03-06T19:13:58.752364622Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1116341350053445682","permissions":2181849931956800,"view_channel":false,"time":"2026-03-06T19:13:58.752404223Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175456458444394516","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.752440471Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1112319996761219113","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.752475392Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1000343910662549515","permissions":2181849933006400,"view_channel":true,"time":"2026-03-06T19:13:58.75251164Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1000343910662549515","channel_receiver":"","room_id":"","old_name":"","new_name":"#🌟read-this-first","time":"2026-03-06T19:13:58.752899753Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1000343910662549515","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1272792400120643656","time":"2026-03-06T19:13:58.752944941Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1000343910662549515","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.752974554Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1274674118591254538","permissions":2181849933008448,"view_channel":true,"time":"2026-03-06T19:13:58.753141058Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1274674118591254538","channel_receiver":"","room_id":"","old_name":"","new_name":"#general-de","time":"2026-03-06T19:13:58.753549356Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1274674118591254538","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Chatte auf Deutsch über Shapez 2!","time":"2026-03-06T19:13:58.753595592Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1274674118591254538","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1274673925829296210","time":"2026-03-06T19:13:58.753627998Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1274674118591254538","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.753658519Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1099567758292832276","permissions":2181849931957824,"view_channel":true,"time":"2026-03-06T19:13:58.753824814Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1099567758292832276","channel_receiver":"","room_id":"","old_name":"","new_name":"#💡suggestions","time":"2026-03-06T19:13:58.754220959Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1099567758292832276","channel_receiver":"","room_id":"","old_topic":"","new_topic":"This is just a catch-all channel since the link to the suggestions board is only linked in #read-this-first, #faq, #play and more.","time":"2026-03-06T19:13:58.754266356Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1099567758292832276","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1000343719813324840","time":"2026-03-06T19:13:58.754303582Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1099567758292832276","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.754364415Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1079719398492868631","permissions":2181575055066688,"view_channel":true,"time":"2026-03-06T19:13:58.754541535Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1079719398492868631","channel_receiver":"","room_id":"","old_name":"","new_name":"#📋rules","time":"2026-03-06T19:13:58.754945013Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1079719398492868631","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1272792400120643656","time":"2026-03-06T19:13:58.754990271Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1079719398492868631","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:58.755020303Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175446596184449054","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.755208877Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1000343719314198548","channel_id":"1175446466194571284","permissions":2181849933007424,"view_channel":false,"time":"2026-03-06T19:13:58.755259862Z","message":"Computed permissions in channel"} +{"level":"debug","module":"Guild/1149714172016340994","time":"2026-03-06T19:13:58.757151958Z","message":"Updating name \"\" -> \"AzuDu Server\""} +{"level":"debug","module":"Guild/1149714172016340994","time":"2026-03-06T19:13:58.757194771Z","message":"Updating avatar \"\" -> \"0b0aed484aecaa3f7cea261854be35dc\""} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":39,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":17.040317,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<9283 bytes>","time":"2026-03-06T19:13:58.999295117Z","message":"Request completed"} +{"level":"debug","module":"Guild/1149714172016340994","time":"2026-03-06T19:13:58.999593204Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1288124843572596746","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:58.999754749Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1288124843572596746","channel_receiver":"","room_id":"","old_name":"","new_name":"#2023","time":"2026-03-06T19:13:59.000281359Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1288124843572596746","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1288124740191649802","time":"2026-03-06T19:13:59.00032536Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1288124843572596746","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.000760617Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1284974726522998895","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.000993052Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1149714173043941455","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:59.001043548Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1149714173043941455","channel_receiver":"","room_id":"","old_name":"","new_name":"#sitzungsplanung","time":"2026-03-06T19:13:59.001513097Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1149714173043941455","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1149714173043941452","time":"2026-03-06T19:13:59.001562615Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1149714173043941455","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.001982507Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1282709653440172156","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.002181697Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1282999496799813653","permissions":2239677372678721,"view_channel":false,"time":"2026-03-06T19:13:59.002237012Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1149714173043941453","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:59.002280593Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1149714173043941453","channel_receiver":"","room_id":"","old_name":"","new_name":"#allgemein","time":"2026-03-06T19:13:59.002772632Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1149714173043941453","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1149714173043941452","time":"2026-03-06T19:13:59.002827947Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1149714173043941453","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.00286643Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1288124881447292980","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.003063036Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1282709187297804419","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.003119329Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1280154271819497536","permissions":2239677372678721,"view_channel":false,"time":"2026-03-06T19:13:59.003186587Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1282709539585785916","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.003234359Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1149714173043941454","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:59.00329156Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1149714173043941454","channel_receiver":"","room_id":"","old_name":"","new_name":"#hausaufgabenhilfe","time":"2026-03-06T19:13:59.0038005Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1149714173043941454","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1149714173043941452","time":"2026-03-06T19:13:59.003857212Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1149714173043941454","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.003907289Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1151574339255291924","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:59.004121425Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1151574339255291924","channel_receiver":"","room_id":"","old_name":"","new_name":"#ausbildungsnachweise","time":"2026-03-06T19:13:59.004626454Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1151574339255291924","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1149714173043941452","time":"2026-03-06T19:13:59.004675344Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1151574339255291924","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.00472116Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1149714173043941451","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:59.005008142Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1149714173043941451","channel_receiver":"","room_id":"","old_name":"","new_name":"#notizen-ressourcen","time":"2026-03-06T19:13:59.005577705Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1149714173043941451","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1149714173043941449","time":"2026-03-06T19:13:59.005628271Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1149714173043941451","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.006059337Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1288124801541734462","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.006286464Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1282710391767699466","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.00637237Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1282709407389581343","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.006416092Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1400093815427305492","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.006471546Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1149714173043941456","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:59.006534125Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1149714173043941456","channel_receiver":"","room_id":"","old_name":"","new_name":"#nebenthemen","time":"2026-03-06T19:13:59.007148946Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1149714173043941456","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1149714173043941452","time":"2026-03-06T19:13:59.007201048Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1149714173043941456","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.007241487Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1318486069422981120","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:59.007471128Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1318486069422981120","channel_receiver":"","room_id":"","old_name":"","new_name":"#azudus","time":"2026-03-06T19:13:59.00796603Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1318486069422981120","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1149714173043941452","time":"2026-03-06T19:13:59.008011707Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1318486069422981120","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.008044114Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1281172897099943998","permissions":2239677372678721,"view_channel":false,"time":"2026-03-06T19:13:59.008267679Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1283746492154380302","permissions":2239677372680769,"view_channel":false,"time":"2026-03-06T19:13:59.008322854Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1252302786423423049","permissions":2239677372679745,"view_channel":true,"time":"2026-03-06T19:13:59.008399401Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1252302786423423049","channel_receiver":"","room_id":"","old_name":"","new_name":"#regeln","time":"2026-03-06T19:13:59.008885573Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1252302786423423049","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.008933345Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1285301093559046285","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:59.009130231Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1285301093559046285","channel_receiver":"","room_id":"","old_name":"","new_name":"#minecraft-stuff","time":"2026-03-06T19:13:59.009642384Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1285301093559046285","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1149714173043941452","time":"2026-03-06T19:13:59.009691553Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1285301093559046285","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.009726404Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1149714172016340994","channel_id":"1289206307005665352","permissions":2239677372681793,"view_channel":true,"time":"2026-03-06T19:13:59.009956394Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1289206307005665352","channel_receiver":"","room_id":"","old_name":"","new_name":"#spielabende","time":"2026-03-06T19:13:59.010446617Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1289206307005665352","channel_receiver":"","room_id":"","old_topic":"","new_topic":"Chat fürs besprechen und reden über geplante Spielabende (Meistens über Events verkündet)","time":"2026-03-06T19:13:59.010496205Z","message":"Updating portal topic"} +{"level":"debug","channel_id":"1289206307005665352","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1149714173043941452","time":"2026-03-06T19:13:59.010533431Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1289206307005665352","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.010581482Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","module":"Guild/1239865508417765386","time":"2026-03-06T19:13:59.013017021Z","message":"Updating name \"\" -> \"DxSign\""} +{"level":"debug","module":"Guild/1239865508417765386","time":"2026-03-06T19:13:59.013074152Z","message":"Updating avatar \"\" -> \"0e3da9a72e113c72fdf1f6d54cddd0d6\""} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":40,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":12.15185,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<3530 bytes>","time":"2026-03-06T19:13:59.070242254Z","message":"Request completed"} +{"level":"debug","module":"Guild/1239865508417765386","time":"2026-03-06T19:13:59.070575331Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1240644160873037846","permissions":140737488684096,"view_channel":true,"time":"2026-03-06T19:13:59.070791633Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1240644160873037846","channel_receiver":"","room_id":"","old_name":"","new_name":"#rules","time":"2026-03-06T19:13:59.071414556Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1240644160873037846","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1240649009803169902","time":"2026-03-06T19:13:59.071483071Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1240644160873037846","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.072008424Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1240644160873037847","permissions":140737488355328,"view_channel":false,"time":"2026-03-06T19:13:59.072349464Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1240644326116294656","permissions":140737488684096,"view_channel":true,"time":"2026-03-06T19:13:59.072414836Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1240644326116294656","channel_receiver":"","room_id":"","old_name":"","new_name":"#announcements","time":"2026-03-06T19:13:59.072911694Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1240644326116294656","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1240643682101755985","time":"2026-03-06T19:13:59.072958488Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1240644326116294656","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.073482235Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1240645893204738150","permissions":140874927688768,"view_channel":true,"time":"2026-03-06T19:13:59.073709571Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1240645893204738150","channel_receiver":"","room_id":"","old_name":"","new_name":"#chat","time":"2026-03-06T19:13:59.074227661Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1240645893204738150","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1240645856739459183","time":"2026-03-06T19:13:59.074273617Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1240645893204738150","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.074797504Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1240649683542609920","permissions":140874927688768,"view_channel":true,"time":"2026-03-06T19:13:59.075062276Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1240649683542609920","channel_receiver":"","room_id":"","old_name":"","new_name":"#reviews","time":"2026-03-06T19:13:59.075601388Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1240649683542609920","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1240645856739459183","time":"2026-03-06T19:13:59.07566662Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1240649683542609920","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.075716767Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1291521398027845632","permissions":140737488684096,"view_channel":true,"time":"2026-03-06T19:13:59.075946758Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1291521398027845632","channel_receiver":"","room_id":"","old_name":"","new_name":"#welcome","time":"2026-03-06T19:13:59.076477628Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1291521398027845632","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1240649009803169902","time":"2026-03-06T19:13:59.076529172Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1291521398027845632","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.076588259Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1293318724396519535","permissions":140874927688768,"view_channel":true,"time":"2026-03-06T19:13:59.076819436Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1293318724396519535","channel_receiver":"","room_id":"","old_name":"","new_name":"#customer-chat","time":"2026-03-06T19:13:59.077325234Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1293318724396519535","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1292094526965682347","time":"2026-03-06T19:13:59.077415889Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1293318724396519535","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.077904575Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1314530029668929558","permissions":140737488684096,"view_channel":true,"time":"2026-03-06T19:13:59.078100133Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1314530029668929558","channel_receiver":"","room_id":"","old_name":"","new_name":"#customer-announcements","time":"2026-03-06T19:13:59.078594966Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1314530029668929558","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1292094526965682347","time":"2026-03-06T19:13:59.078644484Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1314530029668929558","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.07872145Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1478006691697135801","permissions":140737488355328,"view_channel":false,"time":"2026-03-06T19:13:59.078936215Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1478227217904566373","permissions":140737488684096,"view_channel":true,"time":"2026-03-06T19:13:59.079016394Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1478227217904566373","channel_receiver":"","room_id":"","old_name":"","new_name":"#decisions","time":"2026-03-06T19:13:59.079523588Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1478227217904566373","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1240643682101755985","time":"2026-03-06T19:13:59.079574503Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1478227217904566373","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.079622065Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1478273865082994800","permissions":140737488422912,"view_channel":false,"time":"2026-03-06T19:13:59.079842278Z","message":"Computed permissions in channel"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1478364619247714439","permissions":141149805577280,"view_channel":true,"time":"2026-03-06T19:13:59.079927835Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1478364619247714439","channel_receiver":"","room_id":"","old_name":"","new_name":"#revoke-queue-and-buys","time":"2026-03-06T19:13:59.080436915Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1478364619247714439","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1478366300408647782","time":"2026-03-06T19:13:59.080489436Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1478364619247714439","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.080984827Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1239865508417765386","channel_id":"1478383235745579008","permissions":141149805577280,"view_channel":true,"time":"2026-03-06T19:13:59.081213351Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1478383235745579008","channel_receiver":"","room_id":"","old_name":"","new_name":"#read-please","time":"2026-03-06T19:13:59.081752952Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1478383235745579008","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1478366300408647782","time":"2026-03-06T19:13:59.081805473Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1478383235745579008","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.081854572Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","module":"Guild/1242526114815938701","time":"2026-03-06T19:13:59.083871197Z","message":"Updating name \"\" -> \"Kurs B MC Server\""} +{"level":"debug","module":"Guild/1242526114815938701","time":"2026-03-06T19:13:59.083919388Z","message":"Updating avatar \"\" -> \"3f0aac5602f6cb7fcbbdc2211eb3e37e\""} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":41,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":17.49918,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<12460 bytes>","time":"2026-03-06T19:13:59.337285845Z","message":"Request completed"} +{"level":"debug","module":"Guild/1242526114815938701","time":"2026-03-06T19:13:59.33762877Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1242526114815938701","channel_id":"1242526115487289427","permissions":2248473465835073,"view_channel":true,"time":"2026-03-06T19:13:59.337808334Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1242526115487289427","channel_receiver":"","room_id":"","old_name":"","new_name":"#welcome","time":"2026-03-06T19:13:59.338384673Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1242526115487289427","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1242526115487289425","time":"2026-03-06T19:13:59.338438521Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1242526115487289427","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.338897245Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1242526114815938701","channel_id":"1242528383070638081","permissions":2248473465835073,"view_channel":true,"time":"2026-03-06T19:13:59.33911187Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1242528383070638081","channel_receiver":"","room_id":"","old_name":"","new_name":"#ideen","time":"2026-03-06T19:13:59.339597483Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1242528383070638081","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1242526115487289425","time":"2026-03-06T19:13:59.339660481Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1242528383070638081","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.33970036Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1242526114815938701","channel_id":"1242528418789195957","permissions":2248473465835073,"view_channel":true,"time":"2026-03-06T19:13:59.339897595Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1242528418789195957","channel_receiver":"","room_id":"","old_name":"","new_name":"#orga","time":"2026-03-06T19:13:59.340365328Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1242528418789195957","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1242526115487289425","time":"2026-03-06T19:13:59.340416872Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1242528418789195957","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.340451025Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1242526114815938701","channel_id":"1242546594759573505","permissions":2248473465835073,"view_channel":true,"time":"2026-03-06T19:13:59.340653497Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1242546594759573505","channel_receiver":"","room_id":"","old_name":"","new_name":"#zeugs","time":"2026-03-06T19:13:59.341125142Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1242546594759573505","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1242526115487289425","time":"2026-03-06T19:13:59.341171727Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1242546594759573505","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.341210908Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1242526114815938701","channel_id":"1242546632512245932","permissions":2248473465835073,"view_channel":true,"time":"2026-03-06T19:13:59.341476309Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1242546632512245932","channel_receiver":"","room_id":"","old_name":"","new_name":"#memes","time":"2026-03-06T19:13:59.341983084Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1242546632512245932","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1242526115487289425","time":"2026-03-06T19:13:59.342030996Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1242546632512245932","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.342064869Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1242526114815938701","channel_id":"1242562741269561414","permissions":2248473465835073,"view_channel":true,"time":"2026-03-06T19:13:59.342263082Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1242562741269561414","channel_receiver":"","room_id":"","old_name":"","new_name":"#ingame-shit","time":"2026-03-06T19:13:59.342752117Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1242562741269561414","channel_receiver":"","room_id":"","old_parent_id":"","new_parent_id":"1242526115487289425","time":"2026-03-06T19:13:59.342802613Z","message":"Updating parent ID"} +{"level":"debug","channel_id":"1242562741269561414","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.342837883Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","module":"Guild/1391458693559619744","time":"2026-03-06T19:13:59.343541404Z","message":"Updating name \"\" -> \"Homelab Monitoring\""} +{"level":"debug","module":"Guild/1391458693559619744","time":"2026-03-06T19:13:59.343586382Z","message":"Updating avatar \"\" -> \"0f8486c922c686633a411c7873403db0\""} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":42,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":16.498691,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2690 bytes>","time":"2026-03-06T19:13:59.690765693Z","message":"Request completed"} +{"level":"debug","module":"Guild/1391458693559619744","time":"2026-03-06T19:13:59.691084803Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1391458693559619744","channel_id":"1391458892516556810","permissions":1945370111,"view_channel":true,"time":"2026-03-06T19:13:59.691257383Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1391458892516556810","channel_receiver":"","room_id":"","old_name":"","new_name":"#uptimekuma","time":"2026-03-06T19:13:59.691784971Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1391458892516556810","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.691835257Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1391458693559619744","channel_id":"1406079019329257502","permissions":1945370111,"view_channel":true,"time":"2026-03-06T19:13:59.692029558Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1406079019329257502","channel_receiver":"","room_id":"","old_name":"","new_name":"#beszel-system-monitoring","time":"2026-03-06T19:13:59.692484022Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1406079019329257502","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.692535077Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","guild_id":"1391458693559619744","channel_id":"1463489587874627687","permissions":1945370111,"view_channel":true,"time":"2026-03-06T19:13:59.692784204Z","message":"Computed permissions in channel"} +{"level":"debug","channel_id":"1463489587874627687","channel_receiver":"","room_id":"","old_name":"","new_name":"#qbit-file-mover","time":"2026-03-06T19:13:59.693240274Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1463489587874627687","channel_receiver":"","room_id":"","time":"2026-03-06T19:13:59.693287487Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"info","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:13:59.694305717Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"316966695430520833","time":"2026-03-06T19:13:59.694378353Z","message":"Found other user ID"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:13:59.694647595Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":43,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":4.167765,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_316966695430520833","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:13:59.699222191Z","message":"Request completed"} +{"level":"debug","transaction_id":"14","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:59.747658338Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"14","time":"2026-03-06T19:13:59.747820302Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"15","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:59.817466696Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"15","time":"2026-03-06T19:13:59.817719176Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":44,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":163.72884,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1167763580809134111","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_316966695430520833:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1167763580809134111","external_url":"https://discord.com/channels/@me/1167763580809134111"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/1167763580809134111","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_316966695430520833:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1167763580809134111","external_url":"https://discord.com/channels/@me/1167763580809134111"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:13:59.863637161Z","message":"Request completed"} +{"level":"info","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","time":"2026-03-06T19:13:59.864139048Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"16","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:59.873070752Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"16","time":"2026-03-06T19:13:59.873421849Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"17","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:59.883696689Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"17","time":"2026-03-06T19:13:59.883910825Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"18","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:59.927291791Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"18","time":"2026-03-06T19:13:59.927435526Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"19","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:13:59.996613349Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"19","time":"2026-03-06T19:13:59.996977926Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":26,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s476_886_0_351_366_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":22920.321763,"status_code":200,"response_length":207,"response_mime":"application/json","time":"2026-03-06T19:14:00.011701995Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:00.012073","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:00.012099817Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:00.012073","time":"2026-03-06T19:14:00.012296353Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":45,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":195.500909,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Discord","topic":"Your Discord bridged chats","creation_content":{"type":"m.space"},"initial_state":[{"type":"m.room.avatar","content":{"url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC"}}],"room_version":"11","power_level_content_override":{"users":{"@discordbot:matrix.theocloud.dev":9001,"@theo:matrix.theocloud.dev":50}}},"time":"2026-03-06T19:14:00.059859052Z","message":"Request completed"} +{"level":"debug","transaction_id":"20","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.073182715Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"20","time":"2026-03-06T19:14:00.073505177Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"21","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.084047722Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"21","time":"2026-03-06T19:14:00.084170016Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":47,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21pPUyETSDSEkOlXFfaM:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":66.658893,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:00.127411577Z","message":"Request completed"} +{"level":"debug","transaction_id":"22","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.146078171Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"22","time":"2026-03-06T19:14:00.146356911Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"23","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.183025899Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"23","time":"2026-03-06T19:14:00.183111176Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"24","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.234281996Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"24","time":"2026-03-06T19:14:00.234558641Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":46,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s490_886_0_353_368_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":236.660753,"status_code":200,"response_length":207,"response_mime":"application/json","time":"2026-03-06T19:14:00.249138556Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:00.249428","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:00.249453614Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:00.249428","time":"2026-03-06T19:14:00.249634785Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":48,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":164.116255,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Direct Messages","topic":"Your Discord direct messages","creation_content":{"type":"m.space"},"initial_state":[{"type":"m.room.avatar","content":{"url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC"}},{"state_key":"!pPUyETSDSEkOlXFfaM:matrix.theocloud.dev","type":"m.space.parent","content":{"via":["matrix.theocloud.dev"],"canonical":true}}],"room_version":"11","power_level_content_override":{"users":{"@discordbot:matrix.theocloud.dev":9001,"@theo:matrix.theocloud.dev":50}}},"time":"2026-03-06T19:14:00.291994378Z","message":"Request completed"} +{"level":"debug","transaction_id":"25","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.304729411Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"25","time":"2026-03-06T19:14:00.30501311Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"26","content":{"pdu":7,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.313685909Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"26","time":"2026-03-06T19:14:00.313838793Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":50,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":74.714007,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:00.36752966Z","message":"Request completed"} +{"level":"debug","transaction_id":"27","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.385478625Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"27","time":"2026-03-06T19:14:00.385801575Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":51,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21pPUyETSDSEkOlXFfaM:matrix.theocloud.dev/state/m.space.child/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":66.81115,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"],"order":" 0000"},"time":"2026-03-06T19:14:00.43492476Z","message":"Request completed"} +{"level":"debug","transaction_id":"28","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.447930501Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"28","time":"2026-03-06T19:14:00.448023531Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":52,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":51.512766,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:00.486742807Z","message":"Request completed"} +{"level":"debug","transaction_id":"29","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.491107318Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"29","time":"2026-03-06T19:14:00.491164519Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":53,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":55.754565,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:00.542928788Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":54,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_316966695430520833:matrix.theocloud.dev/displayname?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":8.938968,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:00.552732542Z","message":"Request completed"} +{"level":"debug","transaction_id":"30","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.559290029Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"30","time":"2026-03-06T19:14:00.559650974Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":55,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_316966695430520833:matrix.theocloud.dev/displayname?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":63.500208,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Domı"},"time":"2026-03-06T19:14:00.616425236Z","message":"Request completed"} +{"level":"debug","transaction_id":"31","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.622962399Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"31","time":"2026-03-06T19:14:00.623291914Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":56,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":26.203409,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<18340 bytes>","time":"2026-03-06T19:14:00.680120583Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":57,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_316966695430520833:matrix.theocloud.dev/avatar_url?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":2.250806,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:00.682887453Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":58,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_316966695430520833:matrix.theocloud.dev/avatar_url?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":46.790454,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gPYObQsGQGNZAQqBstghQODp"},"time":"2026-03-06T19:14:00.72982709Z","message":"Request completed"} +{"level":"debug","transaction_id":"32","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.735629094Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"32","time":"2026-03-06T19:14:00.735924736Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":59,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824440730595914_1?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":33.298681,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:00.764006133Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","old_name":"","new_name":"Domı","time":"2026-03-06T19:14:00.764449491Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","action":"initial backfill","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:00.764428958Z","message":"Fetching messages for backfill"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","time":"2026-03-06T19:14:00.76472432Z","message":"Updating bridge info..."} +{"level":"debug","transaction_id":"33","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.774637727Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"33","event_id":"$ZnD0F4msr5P1I5EqYHdPuTOawjflye4Gr-LeGyG-W9E","time":"2026-03-06T19:14:00.774740814Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"33","time":"2026-03-06T19:14:00.774790262Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":60,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":32.501083,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:00.797108208Z","message":"Request completed"} +{"level":"info","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:00.797659752Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"428870593358594048","time":"2026-03-06T19:14:00.797694114Z","message":"Found other user ID"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:00.79785531Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":62,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":3.941896,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_428870593358594048","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:00.802073222Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":61,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1167763580809134111?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":56.786344,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_316966695430520833:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1167763580809134111","displayname":"Domı","external_url":"https://discord.com/channels/@me/1167763580809134111"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:00.821766148Z","message":"Request completed"} +{"level":"debug","transaction_id":"34","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.833772167Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"34","time":"2026-03-06T19:14:00.833882029Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"35","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.88594173Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"35","time":"2026-03-06T19:14:00.886013388Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":64,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1167763580809134111?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":67.590728,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_316966695430520833:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1167763580809134111","displayname":"Domı","external_url":"https://discord.com/channels/@me/1167763580809134111"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:00.889765243Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","old_avatar_id":"","new_avatar_id":"0e001d83535188702abbf419a48d1351","time":"2026-03-06T19:14:00.889931607Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","time":"2026-03-06T19:14:00.890221103Z","message":"Updating bridge info..."} +{"level":"debug","transaction_id":"36","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.899716295Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"36","time":"2026-03-06T19:14:00.899800245Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":65,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1167763580809134111?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":31.002408,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_316966695430520833:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1167763580809134111","displayname":"Domı","external_url":"https://discord.com/channels/@me/1167763580809134111"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:00.9215077Z","message":"Request completed"} +{"level":"debug","transaction_id":"37","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:00.971625368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"37","time":"2026-03-06T19:14:00.971926388Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":66,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1167763580809134111?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":60.060688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_316966695430520833:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1167763580809134111","displayname":"Domı","external_url":"https://discord.com/channels/@me/1167763580809134111"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:00.982055467Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":63,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":233.445705,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1163926603756224573","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_428870593358594048:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1163926603756224573","external_url":"https://discord.com/channels/@me/1163926603756224573"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/1163926603756224573","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_428870593358594048:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1163926603756224573","external_url":"https://discord.com/channels/@me/1163926603756224573"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:01.036049868Z","message":"Request completed"} +{"level":"info","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","time":"2026-03-06T19:14:01.036740538Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"38","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.044211701Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"38","time":"2026-03-06T19:14:01.044531858Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"39","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.055312426Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"39","time":"2026-03-06T19:14:01.055508962Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":67,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":52.986438,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:01.089980154Z","message":"Request completed"} +{"level":"debug","transaction_id":"40","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.097241511Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"40","time":"2026-03-06T19:14:01.097326859Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":68,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":40.518622,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:01.130932357Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":69,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_428870593358594048:matrix.theocloud.dev/displayname?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":7.182575,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:01.138832351Z","message":"Request completed"} +{"level":"debug","transaction_id":"41","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.145749945Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"41","time":"2026-03-06T19:14:01.146029523Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":70,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_428870593358594048:matrix.theocloud.dev/displayname?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":52.601327,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"alexx"},"time":"2026-03-06T19:14:01.19162372Z","message":"Request completed"} +{"level":"debug","transaction_id":"42","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.197811881Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"42","time":"2026-03-06T19:14:01.198083917Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":71,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":18.566021,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<11052 bytes>","time":"2026-03-06T19:14:01.237983038Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":72,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_428870593358594048:matrix.theocloud.dev/avatar_url?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":2.413957,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:01.240817026Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":73,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_428870593358594048:matrix.theocloud.dev/avatar_url?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":45.587911,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NPgoqrWRSQEHGBNlUFVtmXjz"},"time":"2026-03-06T19:14:01.286556774Z","message":"Request completed"} +{"level":"debug","transaction_id":"43","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.297916753Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"43","time":"2026-03-06T19:14:01.298271272Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":74,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824441286999713_1?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":42.756786,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:01.329861053Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","old_name":"","new_name":"alexx","time":"2026-03-06T19:14:01.330360704Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","action":"initial backfill","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:01.330317891Z","message":"Fetching messages for backfill"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","time":"2026-03-06T19:14:01.330589717Z","message":"Updating bridge info..."} +{"level":"debug","transaction_id":"44","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.343576251Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"44","event_id":"$vTMna7FejUUWEzp3YTHckI-7HBsL-X1y5Q1CyZZEl9s","time":"2026-03-06T19:14:01.343680386Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"44","time":"2026-03-06T19:14:01.343728996Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":75,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":36.059474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:01.366559165Z","message":"Request completed"} +{"level":"info","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:01.367356973Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"1142482369744482355","time":"2026-03-06T19:14:01.367411799Z","message":"Found other user ID"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:01.367759683Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":77,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":2.939031,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"discord_1142482369744482355","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:01.371190124Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":76,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1163926603756224573?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":60.460744,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_428870593358594048:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1163926603756224573","displayname":"alexx","external_url":"https://discord.com/channels/@me/1163926603756224573"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:01.391312579Z","message":"Request completed"} +{"level":"debug","transaction_id":"45","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.403319157Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"45","time":"2026-03-06T19:14:01.403435654Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"46","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.469311196Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"46","time":"2026-03-06T19:14:01.46942902Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":79,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1163926603756224573?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":82.866552,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_428870593358594048:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1163926603756224573","displayname":"alexx","external_url":"https://discord.com/channels/@me/1163926603756224573"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:01.474656432Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","old_avatar_id":"","new_avatar_id":"150dc29a4245e97b807b57ebc1382488","time":"2026-03-06T19:14:01.474848428Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","time":"2026-03-06T19:14:01.475178992Z","message":"Updating bridge info..."} +{"level":"debug","transaction_id":"47","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.488455511Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"47","time":"2026-03-06T19:14:01.488569843Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":80,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1163926603756224573?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":36.006604,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_428870593358594048:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1163926603756224573","displayname":"alexx","external_url":"https://discord.com/channels/@me/1163926603756224573"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:01.511501632Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","action":"initial backfill","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:01.542555234Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","action":"initial backfill","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","limit":100,"before_id":"1479141808725299410","time":"2026-03-06T19:14:01.542638277Z","message":"Fetching messages for backfill"} +{"level":"debug","transaction_id":"48","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.558652542Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"48","time":"2026-03-06T19:14:01.558971721Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":81,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1163926603756224573?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":54.836209,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_428870593358594048:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1163926603756224573","displayname":"alexx","external_url":"https://discord.com/channels/@me/1163926603756224573"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:01.566814445Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","action":"initial backfill","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:01.596865741Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","action":"initial backfill","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","limit":100,"before_id":"1471882942878843072","time":"2026-03-06T19:14:01.59694592Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":78,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":234.70091,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1168906216441925765","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_1142482369744482355:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1168906216441925765","external_url":"https://discord.com/channels/@me/1168906216441925765"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/1168906216441925765","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_1142482369744482355:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1168906216441925765","external_url":"https://discord.com/channels/@me/1168906216441925765"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:01.606413873Z","message":"Request completed"} +{"level":"info","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","time":"2026-03-06T19:14:01.606991258Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"49","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.615536106Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"49","time":"2026-03-06T19:14:01.615859057Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"50","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.624686137Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"50","time":"2026-03-06T19:14:01.624853898Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":82,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":55.912827,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:01.663127721Z","message":"Request completed"} +{"level":"debug","transaction_id":"51","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.672507952Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"51","time":"2026-03-06T19:14:01.672601959Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":83,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":51.11278,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:01.714760127Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":84,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_1142482369744482355:matrix.theocloud.dev/displayname?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":6.339859,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:14:01.721703982Z","message":"Request completed"} +{"level":"debug","transaction_id":"52","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.728250853Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"52","time":"2026-03-06T19:14:01.72853546Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":85,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_1142482369744482355:matrix.theocloud.dev/displayname?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":56.382097,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"lagopodus"},"time":"2026-03-06T19:14:01.778284152Z","message":"Request completed"} +{"level":"debug","transaction_id":"53","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:01.793943968Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"53","time":"2026-03-06T19:14:01.794317973Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","action":"initial backfill","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:01.81444406Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","action":"initial backfill","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:01.814539255Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","action":"initial backfill","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:01.814611192Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":86,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.107002,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_388409312340344833","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:01.819133407Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":87,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_388409312340344833:matrix.theocloud.dev/displayname?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":2.315968,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:01.821871781Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":88,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_388409312340344833:matrix.theocloud.dev/displayname?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.39713,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"theo"},"time":"2026-03-06T19:14:01.828394836Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":89,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":29.464202,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23980 bytes>","time":"2026-03-06T19:14:02.078665535Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":90,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_1142482369744482355:matrix.theocloud.dev/avatar_url?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":1.968923,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:02.081123073Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":92,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":35.239596,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23779 bytes>","time":"2026-03-06T19:14:02.121736192Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":93,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_388409312340344833:matrix.theocloud.dev/avatar_url?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.762964,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:02.129997131Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":94,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_388409312340344833:matrix.theocloud.dev/avatar_url?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.926817,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/aarhVkdMygJnUSPzPHCCmqBO"},"time":"2026-03-06T19:14:02.140060768Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":91,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_1142482369744482355:matrix.theocloud.dev/avatar_url?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":61.59142,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MMbrKyChRBwciknGvsfXaIxu"},"time":"2026-03-06T19:14:02.142867378Z","message":"Request completed"} +{"level":"debug","transaction_id":"54","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.15315018Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"54","time":"2026-03-06T19:14:02.153407549Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","action":"initial backfill","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:02.16210158Z","message":"Added messages to backfill collection"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":95,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.629022,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.162151168Z","message":"Request completed"} +{"level":"info","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","action":"initial backfill","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:02.162180711Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","action":"initial backfill","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:02.162246083Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","transaction_id":"55","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:02.178543698Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"55","time":"2026-03-06T19:14:02.17862234Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":98,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":31.327524,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.194125291Z","message":"Request completed"} +{"level":"debug","transaction_id":"56","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:02.199936793Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"56","time":"2026-03-06T19:14:02.199999232Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":97,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":44.478536,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:02.20697242Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":96,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824442143409982_1?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":78.282107,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:02.221782675Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","action":"initial backfill","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:02.22211687Z","message":"Fetching messages for backfill"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","old_name":"","new_name":"lagopodus","time":"2026-03-06T19:14:02.222131327Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","time":"2026-03-06T19:14:02.222551009Z","message":"Updating bridge info..."} +{"level":"debug","transaction_id":"57","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.233797913Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"57","event_id":"$jB-lFF2Z8LcMxeDD-804jEAymLbNmLAK9GZv3ngKXuI","time":"2026-03-06T19:14:02.233869641Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"57","time":"2026-03-06T19:14:02.233909172Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":100,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":35.34464,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:02.242494179Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960196357128284","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:02.24257345Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960196357128284","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":427.805043,"time":"2026-03-06T19:14:02.242675839Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":99,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824442194288512_2?ts=1766418213168&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":68.720077,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Und die Qualität ist crazy","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:02.263249335Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1452688018162057316","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":100.898209,"event_ids":{"":"$Xw8CuUs1oWaZjg1XI67FbQ9Q879FkfRE-2QnGs2x8kM"},"time":"2026-03-06T19:14:02.2633798Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":104,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.271345,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.272227414Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":103,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":34.800848,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.277952591Z","message":"Request completed"} +{"level":"debug","transaction_id":"58","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.279700184Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"58","time":"2026-03-06T19:14:02.279786509Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Xw8CuUs1oWaZjg1XI67FbQ9Q879FkfRE-2QnGs2x8kM","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824442279,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:02.279948752Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":101,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":60.193737,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:02.282421866Z","message":"Request completed"} +{"level":"info","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:02.28310625Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"122672447207112706","time":"2026-03-06T19:14:02.283152625Z","message":"Found other user ID"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"","old_name":"","new_name":"Marcys","time":"2026-03-06T19:14:02.283428222Z","message":"Updating portal name"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:02.283478369Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":107,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":4.528361,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_122672447207112706","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:02.288403085Z","message":"Request completed"} +{"level":"debug","transaction_id":"59","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:02.292365723Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"59","time":"2026-03-06T19:14:02.292444855Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":102,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1168906216441925765?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":99.305247,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_1142482369744482355:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1168906216441925765","displayname":"lagopodus","external_url":"https://discord.com/channels/@me/1168906216441925765"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:02.322101263Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":105,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":60.01515,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:02.332589192Z","message":"Request completed"} +{"level":"debug","transaction_id":"60","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.339720922Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"60","time":"2026-03-06T19:14:02.339802009Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":106,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824442278106803_2?ts=1772205201946&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":88.295877,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jaa muss ich schauen wie motiviert imo ist hahaha wir gehen ja auch die nächsten 3 tage also würde es relativ egal sein ob wir heut oder morgen gehen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:02.366584339Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960408341319821","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":123.840474,"event_ids":{"":"$3PjttaEl3WpHZRuGX_N4-g4NAThJx7vClEhX5bQC9KU"},"time":"2026-03-06T19:14:02.366704189Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.937432,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.377476026Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":110,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":55.03065,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:02.387843756Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1452688129646657577","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:02.387967517Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1452688129646657577","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":124.380146,"time":"2026-03-06T19:14:02.388077798Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"61","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.390657001Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"61","time":"2026-03-06T19:14:02.390730266Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3PjttaEl3WpHZRuGX_N4-g4NAThJx7vClEhX5bQC9KU","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824442390,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:02.390936091Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":113,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":9.15031,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.397876244Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":112,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":61.642754,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:02.43940646Z","message":"Request completed"} +{"level":"debug","transaction_id":"62","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.445293881Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"62","time":"2026-03-06T19:14:02.445383279Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":109,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1168906216441925765?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":142.26283,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_1142482369744482355:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1168906216441925765","displayname":"lagopodus","external_url":"https://discord.com/channels/@me/1168906216441925765"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:02.464740263Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","old_avatar_id":"","new_avatar_id":"c9a09fdf70b2f8a492bde05e7c4749ca","time":"2026-03-06T19:14:02.464961174Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","time":"2026-03-06T19:14:02.465277071Z","message":"Updating bridge info..."} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","action":"initial backfill","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:02.487572178Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","action":"initial backfill","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","limit":100,"before_id":"1313969990956744736","time":"2026-03-06T19:14:02.487649214Z","message":"Fetching messages for backfill"} +{"level":"debug","transaction_id":"63","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.491432567Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"63","time":"2026-03-06T19:14:02.491550321Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":115,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":73.634805,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:02.513220899Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960411441168490","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:02.513311275Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960411441168490","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":146.231544,"time":"2026-03-06T19:14:02.513387543Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824442398117199_3?ts=1766418254792&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":119.993634,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"sowasvon!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:02.518294658Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1452688192745504929","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":130.104344,"event_ids":{"":"$15mRMLuMvpRax17twrZbes4F1i20mTh_sWETAO2ruS8"},"time":"2026-03-06T19:14:02.518421492Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":117,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.016214,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.524092821Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":11.276936,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.530392101Z","message":"Request completed"} +{"level":"debug","transaction_id":"64","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.536349364Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"64","time":"2026-03-06T19:14:02.536433873Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$15mRMLuMvpRax17twrZbes4F1i20mTh_sWETAO2ruS8","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824442536,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:02.536584523Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":116,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1168906216441925765?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":98.580424,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_1142482369744482355:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1168906216441925765","displayname":"lagopodus","external_url":"https://discord.com/channels/@me/1168906216441925765"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:02.564165849Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":119,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":86.723239,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:02.611294479Z","message":"Request completed"} +{"level":"debug","transaction_id":"65","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.620778984Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"65","time":"2026-03-06T19:14:02.621007578Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":121,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1168906216441925765?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":74.215124,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_1142482369744482355:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1168906216441925765","displayname":"lagopodus","external_url":"https://discord.com/channels/@me/1168906216441925765"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:02.638894662Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":122,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":42.071214,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:02.653589957Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960487873843241","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:02.653701565Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960487873843241","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":140.222808,"time":"2026-03-06T19:14:02.653790264Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":120,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824442530718963_4?ts=1770801597602&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":128.202191,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wir müssen ein 1000x startup Gründen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:02.65909569Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471073265026990197","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":140.421649,"event_ids":{"":"$lvNU5f4H2jj6eKV5ZiwyZ0BmLlmJmZ8-5VRPX-jFR7s"},"time":"2026-03-06T19:14:02.65920185Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":123,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.144791,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.662446371Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":124,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":6.47193,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.66634678Z","message":"Request completed"} +{"level":"debug","transaction_id":"66","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.671138307Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"66","time":"2026-03-06T19:14:02.671223724Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lvNU5f4H2jj6eKV5ZiwyZ0BmLlmJmZ8-5VRPX-jFR7s","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824442671,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:02.671460768Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":125,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":31.784501,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:02.694557105Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":108,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":430.998579,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Marcys","initial_state":[{"state_key":"fi.mau.discord://discord/dm/908482324335833109","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_122672447207112706:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"908482324335833109","displayname":"Marcys","external_url":"https://discord.com/channels/@me/908482324335833109"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/908482324335833109","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_122672447207112706:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"908482324335833109","displayname":"Marcys","external_url":"https://discord.com/channels/@me/908482324335833109"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:02.719824698Z","message":"Request completed"} +{"level":"info","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","time":"2026-03-06T19:14:02.720591077Z","message":"Matrix room created"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":126,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824442666569228_5?ts=1770801600338&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":71.851733,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hast du Ideen?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:02.738571471Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471073276502736997","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":79.102194,"event_ids":{"":"$jYYAkS5PM1PnoS-H1X85AYhTwul1eKMcp94QPXcqUbI"},"time":"2026-03-06T19:14:02.738658704Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"67","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.741185246Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"67","time":"2026-03-06T19:14:02.741521048Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":127,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.500543,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:02.745279119Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960603456405717","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:02.745418943Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960603456405717","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":91.533902,"time":"2026-03-06T19:14:02.745528805Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":129,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.524524,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.747839884Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":130,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":5.050851,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.751186444Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","action":"initial backfill","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:02.75593844Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","action":"initial backfill","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:02.755999901Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","action":"initial backfill","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:02.75607142Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","transaction_id":"68","content":{"pdu":7,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.756505699Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"68","time":"2026-03-06T19:14:02.756697485Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$jYYAkS5PM1PnoS-H1X85AYhTwul1eKMcp94QPXcqUbI","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824442756,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:02.756839544Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":133,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":33.277728,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.789834761Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":131,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":56.830136,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:02.805014621Z","message":"Request completed"} +{"level":"debug","transaction_id":"69","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:02.809115058Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"69","time":"2026-03-06T19:14:02.809179034Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":128,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":115.08638,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:02.835934825Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824442751381863_3?ts=1772205263878&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":102.709358,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"haahaha so ruhige loot runs?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:02.854230835Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960668103086301","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":108.535667,"event_ids":{"":"$_YJuJBZvEvS8nvPKN6UYj5TkfWKBw84ECsmStibkuvE"},"time":"2026-03-06T19:14:02.854305078Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"70","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.856289854Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"70","time":"2026-03-06T19:14:02.856374294Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":137,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.789573,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.861595699Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":135,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":59.02381,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:02.864254872Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471110349561397258","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:02.864307882Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471110349561397258","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":125.371695,"time":"2026-03-06T19:14:02.864381077Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":3.918917,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.868600456Z","message":"Request completed"} +{"level":"debug","transaction_id":"71","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.871047727Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"71","time":"2026-03-06T19:14:02.871108839Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_YJuJBZvEvS8nvPKN6UYj5TkfWKBw84ECsmStibkuvE","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824442871,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:02.871275832Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":134,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824442790123908_2?ts=1721595867841&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":97.724439,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"100 Euro oder so","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:02.888003117Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689475867377684","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":131.851378,"event_ids":{"":"$k2HnBH_f8ZRAhAHV9M__hzXVfbldvd1Y7TINN2BtC4s"},"time":"2026-03-06T19:14:02.888100337Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":141,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.133964,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.895144974Z","message":"Request completed"} +{"level":"debug","transaction_id":"72","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.899859324Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"72","time":"2026-03-06T19:14:02.899935592Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$k2HnBH_f8ZRAhAHV9M__hzXVfbldvd1Y7TINN2BtC4s","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824442900,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:02.900123677Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":138,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":50.521775,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:02.912418564Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":140,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824442868779880_6?ts=1770815854655&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":77.861797,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Algorithmen sind auf meiner branch schon fertig!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:02.946770955Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471133063441420328","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":82.36676,"event_ids":{"":"$ucvL9QIAHyu8669T1JiFkdbbW7yWuKoqXkf46Sx1lTo"},"time":"2026-03-06T19:14:02.946853019Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":142,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":52.698059,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:02.948170663Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":143,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":39.614933,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:02.952176464Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960698641944676","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:02.952259367Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476960698641944676","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":97.801545,"time":"2026-03-06T19:14:02.952372372Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":144,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.523339,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.957990201Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":146,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":17.015733,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:02.969825317Z","message":"Request completed"} +{"level":"debug","transaction_id":"73","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:02.97392757Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"73","time":"2026-03-06T19:14:02.974001184Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ucvL9QIAHyu8669T1JiFkdbbW7yWuKoqXkf46Sx1lTo","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824442974,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:02.974188501Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":136,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":158.969441,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:02.995288537Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":149,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_122672447207112706:matrix.theocloud.dev/displayname?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.892034,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:03.005840442Z","message":"Request completed"} +{"level":"debug","transaction_id":"74","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.023701684Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"74","time":"2026-03-06T19:14:03.024077505Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":145,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":81.471732,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.029844518Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689606964547776","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.029938456Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689606964547776","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":141.578725,"time":"2026-03-06T19:14:03.030032883Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":151,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.111547,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.038797315Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":147,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":84.43877,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.042713299Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":148,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824442970102590_4?ts=1772205472828&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":114.51486,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:03.08475483Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1476961544502902885","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":132.313874,"event_ids":{"":"$xaeJ9FEdf-dB-UBfY8iQRIpwcFGVTgoKKHnb_9qZ-ss"},"time":"2026-03-06T19:14:03.08486993Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":153,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":42.91023,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.085806515Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471133898279751854","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.085930624Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471133898279751854","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":138.896225,"time":"2026-03-06T19:14:03.086048518Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":152,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":47.844024,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.087040557Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":154,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.550158,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.0972253Z","message":"Request completed"} +{"level":"debug","transaction_id":"75","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.101223209Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"75","time":"2026-03-06T19:14:03.101317147Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xaeJ9FEdf-dB-UBfY8iQRIpwcFGVTgoKKHnb_9qZ-ss","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443101,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:03.101551328Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":155,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":31.334159,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.118520197Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689694130569278","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.118622516Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689694130569278","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":88.428158,"time":"2026-03-06T19:14:03.11868719Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":157,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":3.670978,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.122853069Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":156,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.016861,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.124596192Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":150,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_122672447207112706:matrix.theocloud.dev/displayname?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":138.993235,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"pitah"},"time":"2026-03-06T19:14:03.145012822Z","message":"Request completed"} +{"level":"debug","transaction_id":"76","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.157484829Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"76","time":"2026-03-06T19:14:03.157743385Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":159,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":36.317611,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.161092739Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471134204346503168","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.161169565Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471134204346503168","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":74.972772,"time":"2026-03-06T19:14:03.161263014Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":158,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":40.080013,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.163320776Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":160,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":3.114684,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.164901795Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":161,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":14.420256,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.177898386Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689774225133568","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.177976191Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689774225133568","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":59.251775,"time":"2026-03-06T19:14:03.178105469Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":163,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":4.027731,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.182589829Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":162,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.221141,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.184522084Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":165,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":16.363407,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.201043334Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471134932691845180","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.201168282Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471134932691845180","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":39.785069,"time":"2026-03-06T19:14:03.201260962Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":166,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":2.261771,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.203995355Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":164,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443182767228_3?ts=1721595945772&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":38.090417,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Haha","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.221007387Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689802733949030","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":42.825581,"event_ids":{"":"$U_MdRcbnbXUTpUGKKRdQkfHi6w80JQdOnOuU5waCg1Y"},"time":"2026-03-06T19:14:03.221118715Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"77","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.22418416Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"77","time":"2026-03-06T19:14:03.224292416Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$U_MdRcbnbXUTpUGKKRdQkfHi6w80JQdOnOuU5waCg1Y","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443224,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.224443694Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":168,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":10.345381,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.232086669Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":167,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443204161091_7?ts=1770817044228&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":47.780678,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich habe kurz das polling von frontend angesprochen, also den Transferweg der Daten vom backend nach frontend, aber bin nicht explizit auf frontend Funktionalität eingegangen.","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.25212238Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471138052872343656","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":50.739334,"event_ids":{"":"$iu-PJDBpkNgx_bdRVTRXGOW7dM44uSGnXoFv07gQz9c"},"time":"2026-03-06T19:14:03.252196692Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"78","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.256617496Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"78","time":"2026-03-06T19:14:03.256674627Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$iu-PJDBpkNgx_bdRVTRXGOW7dM44uSGnXoFv07gQz9c","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443256,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.256783092Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":170,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":5.691653,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.258520487Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":169,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443232283066_4?ts=1721595958062&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":42.752665,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Der Unterschied zu cs ist nur das Geld ist halt weg","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.275212013Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689854281809972","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":53.86198,"event_ids":{"":"$HONiPDoqXdefPZocZMkzdmyEGLpuBfI3VdZYeckyeeU"},"time":"2026-03-06T19:14:03.275300712Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"79","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.281124437Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"79","time":"2026-03-06T19:14:03.281201194Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HONiPDoqXdefPZocZMkzdmyEGLpuBfI3VdZYeckyeeU","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443281,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.281408835Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":6.665742,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.282574571Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":171,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443258683429_8?ts=1770817090760&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":47.798697,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Passt!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.306600578Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471138248041566300","message_type":19,"author_id":"428870593358594048","action":"discord message create","handling_time":54.181648,"event_ids":{"":"$GBoQS82UyB5Ol-kGOk2o19awP7GsPu_KfqjpnlSd3r8"},"time":"2026-03-06T19:14:03.306693957Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":174,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.208065,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.312605544Z","message":"Request completed"} +{"level":"debug","transaction_id":"80","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.316054982Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"80","time":"2026-03-06T19:14:03.316127548Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$GBoQS82UyB5Ol-kGOk2o19awP7GsPu_KfqjpnlSd3r8","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443316,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.316381354Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443282733392_5?ts=1721595961542&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":56.139396,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Aber naja","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.339036638Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689868877856942","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":63.63221,"event_ids":{"":"$YUIIRN6Wnhs9GXRAXmgmToXTurNtM4asgaieIoxnDSk"},"time":"2026-03-06T19:14:03.339246234Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":176,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.312969,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.345273689Z","message":"Request completed"} +{"level":"debug","transaction_id":"81","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.349582955Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"81","time":"2026-03-06T19:14:03.349681362Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YUIIRN6Wnhs9GXRAXmgmToXTurNtM4asgaieIoxnDSk","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443349,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.349903321Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":175,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":40.099219,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.353078419Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":177,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":28.25691,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.373973049Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":178,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":22.740072,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.37601789Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471144890888093707","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.376170495Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471144890888093707","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":69.276859,"time":"2026-03-06T19:14:03.376281475Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":181,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":2.94839,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.37982513Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":180,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":17.958882,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.392130284Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689890940031147","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.392245384Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689890940031147","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":52.740454,"time":"2026-03-06T19:14:03.392385068Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":183,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":3.893704,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.396876762Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":182,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443379979551_9?ts=1770897386348&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":63.48163,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Grundlagen, Backendentwurf und Diskussion habe ich zu meiner Branch hinzugefügt heute! Wenn du Zeit und Lust hast wäre das super wenn du da noch einmal rüberschaust weil meine Schreibkünste (und die von GenAI) nicht so gut sind wie deine lol\nUnd ig Kontextuell macht das alles schon Sinn nur musste ich mich ab und an wiederholen bzw. Thematiken öfters ansprechen, welche ich in den Algorithem sehr ausführlich darstelle. Aber ich bin ganz zufrieden damit!","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Grundlagen, Backendentwurf und Diskussion habe ich zu meiner Branch hinzugefügt heute! Wenn du Zeit und Lust hast wäre das super wenn du da noch einmal rüberschaust weil meine Schreibkünste (und die von GenAI) nicht so gut sind wie deine lol\u003cbr\u003e\nUnd ig Kontextuell macht das alles schon Sinn nur musste ich mich ab und an wiederholen bzw. Thematiken öfters ansprechen, welche ich in den Algorithem sehr ausführlich darstelle. Aber ich bin ganz zufrieden damit!","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.443706816Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471475032147492886","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":67.290896,"event_ids":{"":"$3rGIXBvXRsiMGo9567OBWFL-MluIRfZyL5R4QvBRol8"},"time":"2026-03-06T19:14:03.443847479Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":186,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":5.659875,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.450243351Z","message":"Request completed"} +{"level":"debug","transaction_id":"82","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.453357686Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"82","time":"2026-03-06T19:14:03.4534533Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3rGIXBvXRsiMGo9567OBWFL-MluIRfZyL5R4QvBRol8","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443453,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.453660382Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":184,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443397037469_6?ts=1721595967591&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":76.722181,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Also viel werde ich eh nicht ausgeben","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.47391009Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689894249463810","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":81.334073,"event_ids":{"":"$_jgB_y0UwZOtqEhGZ4t5I_SZ7NB3Z98V7oUQAOt6_bY"},"time":"2026-03-06T19:14:03.474006751Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":185,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":77.561614,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34192 bytes>","time":"2026-03-06T19:14:03.47650864Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":188,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":5.85662,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.480495514Z","message":"Request completed"} +{"level":"debug","transaction_id":"83","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.482660343Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"83","time":"2026-03-06T19:14:03.482774535Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_jgB_y0UwZOtqEhGZ4t5I_SZ7NB3Z98V7oUQAOt6_bY","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443482,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.48297163Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":189,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_122672447207112706:matrix.theocloud.dev/avatar_url?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":7.520961,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:03.484394456Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":187,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443450505329_10?ts=1770897417809&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":61.998531,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Das sind ungefähr \u003c3200 Wörter ohne Fazit.","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Das sind ungefähr \u0026lt;3200 Wörter ohne Fazit.","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.512676509Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471475164104364122","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":68.527592,"event_ids":{"":"$bzj1UENwM696wejBHV9V7862iRQPLuBgdyF4gB8rQyk"},"time":"2026-03-06T19:14:03.512767374Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":192,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.428844,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.525753908Z","message":"Request completed"} +{"level":"debug","transaction_id":"84","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.533444726Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"84","time":"2026-03-06T19:14:03.533534892Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bzj1UENwM696wejBHV9V7862iRQPLuBgdyF4gB8rQyk","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443533,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.533646989Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":190,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443480690164_7?ts=1721595969377&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":90.085025,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Gu na","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.570947699Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689901740490924","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":96.70558,"event_ids":{"":"$BmQrR7i_f47ibv84fI1jWIPt5WaGb736bW0oNxhz4dM"},"time":"2026-03-06T19:14:03.571071739Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":194,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.031927,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.579810329Z","message":"Request completed"} +{"level":"debug","transaction_id":"85","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.582648159Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"85","time":"2026-03-06T19:14:03.582758719Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BmQrR7i_f47ibv84fI1jWIPt5WaGb736bW0oNxhz4dM","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443582,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.582965522Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":193,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":58.6387,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.584649558Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":191,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_122672447207112706:matrix.theocloud.dev/avatar_url?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":127.805418,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JBrzhELNywunfzXZGtZeGSYf"},"time":"2026-03-06T19:14:03.612314136Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":196,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":29.576928,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.614445371Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471479741302181940","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.614574091Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471479741302181940","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":101.608225,"time":"2026-03-06T19:14:03.614679972Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":198,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.064056,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.625447199Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":195,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":47.153005,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.627255764Z","message":"Request completed"} +{"level":"debug","transaction_id":"86","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.631755559Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"86","time":"2026-03-06T19:14:03.631995118Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":200,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":34.486627,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.661909314Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689921952714813","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.661985512Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689921952714813","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":90.567705,"time":"2026-03-06T19:14:03.662044668Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":199,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":39.201886,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.665042576Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":201,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":3.848167,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.666323553Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":197,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824443612716287_1?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":73.516981,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.686323435Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","action":"initial backfill","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:03.686665522Z","message":"Fetching messages for backfill"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","old_avatar_id":"","new_avatar_id":"1055d83482fefecd4f3728047a2e6b06","time":"2026-03-06T19:14:03.686769587Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","time":"2026-03-06T19:14:03.687062924Z","message":"Updating bridge info..."} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":202,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30.064218,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.695251507Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471479777742553163","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.695324981Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471479777742553163","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":80.437438,"time":"2026-03-06T19:14:03.695399922Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"87","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.702089341Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"87","event_id":"$Rr_6n5Ri-HC5vBwb4gm5_JHM6e9x_h2fzWmhinMBGzQ","time":"2026-03-06T19:14:03.702164072Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"87","time":"2026-03-06T19:14:03.702219457Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":206,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.950421,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.703711566Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":179,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":336.909569,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1328603 bytes>","time":"2026-03-06T19:14:03.706196623Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":203,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":42.13959,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.708743629Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":208,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":5.795089,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.712402035Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":205,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F908482324335833109?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":46.440824,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_122672447207112706:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"908482324335833109","displayname":"Marcys","external_url":"https://discord.com/channels/@me/908482324335833109"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:03.733715929Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":209,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":32.706419,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.741622558Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689931381637280","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.74171475Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1264689931381637280","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":79.560638,"time":"2026-03-06T19:14:03.741783824Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":207,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":38.564436,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.742553136Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":204,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":57.748141,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:03.744553837Z","message":"Request completed"} +{"level":"info","channel_id":"1174617111600037918","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:03.745442719Z","message":"Creating Matrix room for channel"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"","old_avatar_id":"","new_avatar_id":"","time":"2026-03-06T19:14:03.745498383Z","message":"Updating group DM avatar"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":212,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":5.350613,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.74758478Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":211,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F908482324335833109?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":42.826838,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_122672447207112706:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"908482324335833109","displayname":"Marcys","external_url":"https://discord.com/channels/@me/908482324335833109"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:03.776971528Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":213,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":35.128548,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.777877312Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471479819182280870","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.777965522Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471479819182280870","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":82.524115,"time":"2026-03-06T19:14:03.778053873Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":210,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443712569866_5?ts=1772215194777&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":71.973119,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"iu_.png","info":{"h":959,"mimetype":"image/png","size":1328603,"w":1278},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xLTfoJyyqlcmsNmLbPRLDSce"},"time":"2026-03-06T19:14:03.784788969Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477002321312481280","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":699.621022,"event_ids":{"1477002320687665213":"$dD1XSXa2fk7HacGBSV4wLzfnwjxIkatsHZHW8BgYLRk"},"time":"2026-03-06T19:14:03.784911472Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":215,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.636618,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.785194054Z","message":"Request completed"} +{"level":"debug","transaction_id":"88","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.793439418Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"88","time":"2026-03-06T19:14:03.793533845Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$dD1XSXa2fk7HacGBSV4wLzfnwjxIkatsHZHW8BgYLRk","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443793,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:03.793749448Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":214,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443747732147_8?ts=1721748737275&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":63.326999,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"oha","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.811209447Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1265330656746012715","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":69.343349,"event_ids":{"":"$_pfhiW3UupF1Vt5_i0wGJuc_PxnY-I0jJdmXutViEnU"},"time":"2026-03-06T19:14:03.811318611Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":216,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":31.653757,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.817174323Z","message":"Request completed"} +{"level":"debug","transaction_id":"89","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.818854448Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"89","time":"2026-03-06T19:14:03.818932531Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_pfhiW3UupF1Vt5_i0wGJuc_PxnY-I0jJdmXutViEnU","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443819,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.819128578Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":217,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":7.770996,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.819898868Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":218,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":19.7305,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.837053727Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480032030621798","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.837147176Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480032030621798","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":58.995594,"time":"2026-03-06T19:14:03.837240555Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":220,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":2.391537,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.840140404Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":219,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443820110840_9?ts=1721748742326&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":40.007656,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wie lange geht das event?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.860276967Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1265330677931442237","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":48.616549,"event_ids":{"":"$1ekcnuBZ7uOBq1djknvswL1hl57sMz05M1pfGjLvtyg"},"time":"2026-03-06T19:14:03.860403801Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":222,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":6.641019,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.867735839Z","message":"Request completed"} +{"level":"debug","transaction_id":"90","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.871304008Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"90","time":"2026-03-06T19:14:03.871393197Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1ekcnuBZ7uOBq1djknvswL1hl57sMz05M1pfGjLvtyg","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443871,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.871574507Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":221,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443840309073_11?ts=1770898650345&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":55.108035,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"okay okay perfekt machen wir so!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.895637601Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480333735039099","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":58.269863,"event_ids":{"":"$GsbH7ikMatfqYaRaADsLZL_1cPXR6n8-dXg2VKOPYHo"},"time":"2026-03-06T19:14:03.895739151Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":224,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.847821,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.902402659Z","message":"Request completed"} +{"level":"debug","transaction_id":"91","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.905736718Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"91","time":"2026-03-06T19:14:03.90580202Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$GsbH7ikMatfqYaRaADsLZL_1cPXR6n8-dXg2VKOPYHo","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443905,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.905985984Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":223,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443867914635_10?ts=1723109116944&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":59.835725,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"kannst du dein ptb mal schicken?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.927921055Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271036502633218101","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":67.264076,"event_ids":{"":"$TlhuX_fwUVrk2K_qIuD9jnjJ-QA0qZoLYccpHv-Y0wo"},"time":"2026-03-06T19:14:03.928039926Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":226,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":5.451884,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.934201268Z","message":"Request completed"} +{"level":"debug","transaction_id":"92","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.93979193Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"92","time":"2026-03-06T19:14:03.93986254Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$TlhuX_fwUVrk2K_qIuD9jnjJ-QA0qZoLYccpHv-Y0wo","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443940,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.940087991Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":225,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":41.184078,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:03.943851928Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":228,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":18.756062,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:03.962788742Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480674098872532","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:03.962923956Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480674098872532","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":66.84593,"time":"2026-03-06T19:14:03.96302837Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":229,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":3.775671,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.96743758Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":227,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443934365677_11?ts=1723109118214&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":50.964715,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"uww","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:03.985465117Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271036507959853057","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":57.104266,"event_ids":{"":"$zn-wWAqdj1pMGiQoEunmFPPIWrJ0LQulSMX02d9zIRw"},"time":"2026-03-06T19:14:03.98556143Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":231,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":7.164765,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:03.993312381Z","message":"Request completed"} +{"level":"debug","transaction_id":"93","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:03.99857639Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"93","time":"2026-03-06T19:14:03.998640645Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$zn-wWAqdj1pMGiQoEunmFPPIWrJ0LQulSMX02d9zIRw","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824443998,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:03.998857086Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":230,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":44.965337,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.012695347Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":234,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":21.763748,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.034610442Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480727710335154","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:04.034949317Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480727710335154","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":71.884349,"time":"2026-03-06T19:14:04.035173301Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":233,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":42.563043,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<12363 bytes>","time":"2026-03-06T19:14:04.039236023Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"","old_name":"","new_name":"die π-raten","time":"2026-03-06T19:14:04.039589634Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:04.039640968Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":235,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":8.377855,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.044311179Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","action":"initial backfill","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:04.04466919Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","action":"initial backfill","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","limit":100,"before_id":"1479121744731312159","time":"2026-03-06T19:14:04.044753769Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":232,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824443993504657_12?ts=1723109125171&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":71.353059,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"👉 👈","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:04.065016816Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271036537139626068","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":79.210101,"event_ids":{"":"$EDg4R2tsB4DO9z21QMx9XmBe476IoooEALOaKzYXFoI"},"time":"2026-03-06T19:14:04.065090849Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":239,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.585287,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.075019411Z","message":"Request completed"} +{"level":"debug","transaction_id":"94","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.079437142Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"94","time":"2026-03-06T19:14:04.079520045Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$EDg4R2tsB4DO9z21QMx9XmBe476IoooEALOaKzYXFoI","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444079,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:04.079736206Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":236,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":57.338517,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<240629 bytes>","time":"2026-03-06T19:14:04.095503509Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":241,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":4.904462,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.100739162Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":240,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":45.494252,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.120899821Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":237,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444044538934_12?ts=1770898750887&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":86.08544,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Yep die Unterschrift bekomme ich morgen!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:04.130768808Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480755438882928","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":95.334018,"event_ids":{"":"$A-fNhcr-tStSE3Mif_sAsJtXzP9G-LVTgVxRObaJ5Bk"},"time":"2026-03-06T19:14:04.130856949Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":244,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.455099,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.138921282Z","message":"Request completed"} +{"level":"debug","transaction_id":"95","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.149467948Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"95","time":"2026-03-06T19:14:04.149541282Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$A-fNhcr-tStSE3Mif_sAsJtXzP9G-LVTgVxRObaJ5Bk","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444149,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:04.149738587Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"96","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.175833949Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"96","time":"2026-03-06T19:14:04.175925023Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":243,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":58.59002,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.179648243Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271036605125099591","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:04.179737501Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271036605125099591","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":113.666416,"time":"2026-03-06T19:14:04.179802804Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":246,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":6.235863,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.186523023Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":245,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":64.594147,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.20391353Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":242,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444100940937_6?ts=1772215271708&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":110.410791,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"iu_.png","info":{"h":400,"mimetype":"image/webp","size":240629,"w":400},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xAhHYnPgYSZSNtColjcFWoEN"},"time":"2026-03-06T19:14:04.211577527Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477002643984486651","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":426.473361,"event_ids":{"1477002643955122269":"$_uxSFSHEmiNokw71WRqg6s6PGkLdszSnz_joRNcK1Zk"},"time":"2026-03-06T19:14:04.211780978Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":249,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.15499,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.221765763Z","message":"Request completed"} +{"level":"debug","transaction_id":"97","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.227924521Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"97","time":"2026-03-06T19:14:04.228052262Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_uxSFSHEmiNokw71WRqg6s6PGkLdszSnz_joRNcK1Zk","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444228,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:04.228261719Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":248,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":55.472192,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.259575344Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480780025757748","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:04.259693168Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471480780025757748","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":128.628229,"time":"2026-03-06T19:14:04.259793741Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":251,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.667494,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.272067814Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":250,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":75.621398,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.297806982Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","action":"initial backfill","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:04.303667583Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","action":"initial backfill","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:04.303742943Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","action":"initial backfill","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:04.303790296Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":247,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444186669971_13?ts=1723109159796&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":152.587467,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yippie","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:04.339452298Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271036682367668244","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":159.572528,"event_ids":{"":"$T6xttVzrfgWADg80s-qsbDcha-7mwEbx7abNtTK9XYg"},"time":"2026-03-06T19:14:04.339588281Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":255,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":11.459015,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.35177582Z","message":"Request completed"} +{"level":"debug","transaction_id":"98","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.354616653Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"98","time":"2026-03-06T19:14:04.354698648Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$T6xttVzrfgWADg80s-qsbDcha-7mwEbx7abNtTK9XYg","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444354,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:04.354898467Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"99","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.381877683Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"99","time":"2026-03-06T19:14:04.382242259Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":252,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":112.61976,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.385002284Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":254,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":89.370818,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.393576745Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":253,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":103.093909,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.401040435Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477714028456579314","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:04.401126272Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477714028456579314","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":189.01089,"time":"2026-03-06T19:14:04.401231035Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":49,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s500_886_0_353_368_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":4153.829176,"status_code":200,"response_length":207,"response_mime":"application/json","time":"2026-03-06T19:14:04.403616776Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:04.403875","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:04.403898799Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:04.403875","time":"2026-03-06T19:14:04.404062509Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":259,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.942667,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.408713792Z","message":"Request completed"} +{"level":"debug","transaction_id":"100","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:04.412461037Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"100","time":"2026-03-06T19:14:04.412541565Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":257,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.215796,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.435403233Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471598009123864730","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:04.43547964Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471598009123864730","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":175.517789,"time":"2026-03-06T19:14:04.435560168Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":262,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.624046,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.441648734Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":261,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":50.632056,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.459635693Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":256,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444352011049_14?ts=1723109161287&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":118.453892,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"xD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:04.470617686Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271036688621109331","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":130.711833,"event_ids":{"":"$Tq_wSr4cisB7D4eCrPeUsOHbrG9hEQaHNkYPdA5BBx8"},"time":"2026-03-06T19:14:04.4707045Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"101","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.486107017Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"101","time":"2026-03-06T19:14:04.486181538Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Tq_wSr4cisB7D4eCrPeUsOHbrG9hEQaHNkYPdA5BBx8","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444486,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:04.486409922Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":258,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444393755891_2?ts=1772719120036&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":96.735961,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das geht btw. auch bei cinny","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:04.490632514Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479115937042141457","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":186.758198,"event_ids":{"":"$vW8BL-iPKge_MpW0gizSPLigwDySd6OY6qFJ0D0vlj0"},"time":"2026-03-06T19:14:04.490724287Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":263,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":56.877209,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.498871104Z","message":"Request completed"} +{"level":"debug","transaction_id":"102","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.507403589Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"102","time":"2026-03-06T19:14:04.507495083Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vW8BL-iPKge_MpW0gizSPLigwDySd6OY6qFJ0D0vlj0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444507,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:04.507696508Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":264,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":60.255548,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.520059491Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477714067245502635","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:04.520137714Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477714067245502635","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":118.756239,"time":"2026-03-06T19:14:04.520204274Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":266,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":5.287336,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.526004601Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":238,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":488.971402,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"die π-raten","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1174617111600037918","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1174617111600037918","displayname":"die π-raten","external_url":"https://discord.com/channels/@me/1174617111600037918"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"state_key":"fi.mau.discord://discord/dm/1174617111600037918","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1174617111600037918","displayname":"die π-raten","external_url":"https://discord.com/channels/@me/1174617111600037918"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"type":"m.room.avatar","content":{"url":"mxc://matrix.theocloud.dev/kdcVPPTEEJFbswNmCBIuFHvI"}}],"preset":"private_chat","room_version":"11"},"time":"2026-03-06T19:14:04.536040162Z","message":"Request completed"} +{"level":"info","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","time":"2026-03-06T19:14:04.53676673Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"103","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.561592222Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"103","time":"2026-03-06T19:14:04.561884861Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":265,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":71.367447,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.570409943Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471631300103373095","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:04.570487189Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471631300103373095","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":134.812479,"time":"2026-03-06T19:14:04.570563456Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":269,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":7.106308,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.578132678Z","message":"Request completed"} +{"level":"debug","transaction_id":"104","content":{"pdu":7,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.581566401Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"104","time":"2026-03-06T19:14:04.581790874Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":267,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444526161816_7?ts=1772385066610&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":100.891574,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gib mir noch kurz und dann bin ich länger da","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:04.627187208Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477714815420989631","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":106.867485,"event_ids":{"":"$e7Q0GJRuLY97ooFpo92ft_h8bQb3E7u0vkeH-JiHYRQ"},"time":"2026-03-06T19:14:04.627271018Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":271,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.362069,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.635229331Z","message":"Request completed"} +{"level":"debug","transaction_id":"105","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.645463313Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"105","time":"2026-03-06T19:14:04.645564305Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$e7Q0GJRuLY97ooFpo92ft_h8bQb3E7u0vkeH-JiHYRQ","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444645,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:04.645798626Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":268,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":120.410382,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:04.657396767Z","message":"Request completed"} +{"level":"debug","transaction_id":"106","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.683532289Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"106","time":"2026-03-06T19:14:04.683636563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":270,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444578305817_13?ts=1770934654896&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":110.441521,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"machen wir so!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:04.688913283Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471631347767443479","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":118.267762,"event_ids":{"":"$t_LzhJSlsI5L6hyiFuchYr5yDAt7YboZw5y-I9_uv4I"},"time":"2026-03-06T19:14:04.689006104Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":274,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":10.912709,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.700617445Z","message":"Request completed"} +{"level":"debug","transaction_id":"107","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.705283045Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"107","time":"2026-03-06T19:14:04.70540038Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$t_LzhJSlsI5L6hyiFuchYr5yDAt7YboZw5y-I9_uv4I","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444705,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:04.705605996Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":272,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":79.907964,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.715531904Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":276,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":20.497926,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.736179922Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477714859423563966","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:04.736268621Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477714859423563966","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":108.795689,"time":"2026-03-06T19:14:04.736386864Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":277,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":5.236211,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.742088225Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":275,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444700878934_14?ts=1770934658186&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":56.101192,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"🧑‍🚀","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:04.757130775Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471631361566572545","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":67.820718,"event_ids":{"":"$l7yq_r2Si2vuJqEf99E8EdALjeH0olDqx9dScHaMR3s"},"time":"2026-03-06T19:14:04.757216611Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"108","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.770272429Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"108","time":"2026-03-06T19:14:04.7703649Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$l7yq_r2Si2vuJqEf99E8EdALjeH0olDqx9dScHaMR3s","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444770,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:04.77057296Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":273,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":118.380418,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:04.776208321Z","message":"Request completed"} +{"level":"debug","transaction_id":"109","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.792509358Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"109","time":"2026-03-06T19:14:04.792842715Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":278,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444742249212_8?ts=1772385460648&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":76.206326,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:04.818634823Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477716468136411327","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":82.186497,"event_ids":{"":"$I-_4YEu6van1bmavBauynvJBDmLsFoYxXzloxWTL4EI"},"time":"2026-03-06T19:14:04.818769967Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"110","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.830806368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"110","time":"2026-03-06T19:14:04.830917417Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$I-_4YEu6van1bmavBauynvJBDmLsFoYxXzloxWTL4EI","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444831,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:04.831147198Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":281,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.907486,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<81020 bytes>","time":"2026-03-06T19:14:04.834090769Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":279,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":57.257779,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.834268447Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":282,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":3.536531,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.837946968Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":284,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.118688,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.862412841Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":285,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":24.526986,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.887117925Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471631432458965174","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"video_https://tenor.com/view/sleeping-cat-gif-2268097779864616291","time":"2026-03-06T19:14:04.887202853Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471631432458965174","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":129.729083,"time":"2026-03-06T19:14:04.887261031Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":280,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":84.998416,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24524 bytes>","time":"2026-03-06T19:14:04.889721783Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":287,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":6.285033,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.896280248Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":283,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":65.945175,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_428870593358594048:matrix.theocloud.dev"},"time":"2026-03-06T19:14:04.90036518Z","message":"Request completed"} +{"level":"debug","transaction_id":"111","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.911887193Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"111","time":"2026-03-06T19:14:04.912033163Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":286,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":29.370335,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1029103 bytes>","time":"2026-03-06T19:14:04.91882532Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":290,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":3.755207,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:04.92281401Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":288,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444896468472_3?ts=1772719151413&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":51.089174,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":749,"mimetype":"image/webp","size":24524,"w":459},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ikSVmxmOPmEEAfFNlZnNsUeB"},"time":"2026-03-06T19:14:04.947679102Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116068646551702","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":456.664411,"event_ids":{"1479116068126462094":"$3Lh0T3AmatFmbgzkkgXtncekx7_-bRyxsRPKLG2uSB4"},"time":"2026-03-06T19:14:04.94772869Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"112","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:04.957139581Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"112","time":"2026-03-06T19:14:04.957245671Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3Lh0T3AmatFmbgzkkgXtncekx7_-bRyxsRPKLG2uSB4","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824444957,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:04.957454151Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":291,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824444922903687_9?ts=1772389770893&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":70.867306,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/cook-chef-wok-saute-cooking-food-gif-16993886","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":640,"mimetype":"video/mp4","size":1029103,"w":358},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/lGbxZdAirNBbTqwksViTiovw"},"time":"2026-03-06T19:14:04.99391424Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477734546614255787","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":174.821811,"event_ids":{"video_https://tenor.com/view/cook-chef-wok-saute-cooking-food-gif-16993886":"$eU8BMvfVKI6b1jqjTvk-8mBzk3EI60uDrpNbNf1apL4"},"time":"2026-03-06T19:14:04.994009645Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":289,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":98.184489,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:04.998777075Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":293,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":16.238877,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_769998429991600219","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:05.015677987Z","message":"Request completed"} +{"level":"debug","transaction_id":"113","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.019490465Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"113","time":"2026-03-06T19:14:05.019578257Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eU8BMvfVKI6b1jqjTvk-8mBzk3EI60uDrpNbNf1apL4","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445019,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:05.01975419Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":294,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_769998429991600219:matrix.theocloud.dev/displayname?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":6.218264,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:05.022218503Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":292,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":57.015706,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1487 bytes>","time":"2026-03-06T19:14:05.028840874Z","message":"Request completed"} +{"level":"debug","transaction_id":"114","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.031955628Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"114","time":"2026-03-06T19:14:05.032185548Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":296,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.786848,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.034941802Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":295,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_769998429991600219:matrix.theocloud.dev/displayname?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":20.094099,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Maja"},"time":"2026-03-06T19:14:05.042442648Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":297,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.504768,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.053238302Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":298,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":10.413966,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.063843984Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116081179136132","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:05.063935058Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116081179136132","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":116.124654,"time":"2026-03-06T19:14:05.064022012Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":299,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":1.818902,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.066352438Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":300,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.36766,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.076974603Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":301,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":11.325896,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.08844151Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116089618206860","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:05.088524902Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116089618206860","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":24.400851,"time":"2026-03-06T19:14:05.088610179Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":302,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":2.025704,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.091065204Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":303,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.470609,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.102819512Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":304,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":11.252003,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.114207497Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116124489777218","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:05.114296127Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116124489777218","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":25.590962,"time":"2026-03-06T19:14:05.114384757Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":305,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":1.95223,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.11676491Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":306,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445116948665_4?ts=1772719173148&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":27.540747,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich bin regstriert","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.144622252Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116159809753198","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":30.147749,"event_ids":{"":"$jX_A8pnLL2k6tmMR0DiRJpOJVdoNNkbB7Vw4Ona0GXs"},"time":"2026-03-06T19:14:05.144717657Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"115","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.148379136Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"115","time":"2026-03-06T19:14:05.148460572Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$jX_A8pnLL2k6tmMR0DiRJpOJVdoNNkbB7Vw4Ona0GXs","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445148,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.148655222Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":308,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":5.434703,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.150766762Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":307,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":20.574265,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<381821 bytes>","time":"2026-03-06T19:14:05.158188896Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":310,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":2.909138,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.1614587Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":309,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445150925933_5?ts=1772719179587&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":34.514844,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich möchte einfach nur deinem Server joinen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.185596245Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116186817138831","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":40.583226,"event_ids":{"":"$FXm2oJ4m5HBj8WjPPhKzSfW-4iEXhgJyul04ooBipnw"},"time":"2026-03-06T19:14:05.185680615Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":312,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":4.774485,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.191022218Z","message":"Request completed"} +{"level":"debug","transaction_id":"116","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.194847058Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"116","time":"2026-03-06T19:14:05.194915155Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FXm2oJ4m5HBj8WjPPhKzSfW-4iEXhgJyul04ooBipnw","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445195,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.195101354Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":311,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445161621642_15?ts=1770934690440&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":51.51591,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/typescript-script-type-heart-beloved-gif-27005865","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":480,"mimetype":"video/mp4","size":381821,"w":640},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/DWWHCmiqDjOAYzKhLQzeqkfg"},"time":"2026-03-06T19:14:05.213325218Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471631496849653965","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":325.984357,"event_ids":{"video_https://tenor.com/view/typescript-script-type-heart-beloved-gif-27005865":"$lHK7ENkFY2n4sUN3ls_oJsiI9N-0RFavG7OOfqEn_jI"},"time":"2026-03-06T19:14:05.213437803Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"117","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.220472942Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"117","time":"2026-03-06T19:14:05.220569743Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lHK7ENkFY2n4sUN3ls_oJsiI9N-0RFavG7OOfqEn_jI","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445220,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:05.220769282Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":313,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445191180830_6?ts=1772719187923&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":49.584981,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Dafür brauche ich deinen Benutzernamen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.240924563Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116221780852818","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":55.045038,"event_ids":{"":"$4TzvN2HVHsuwPESBODu3yyRy7m5E9BCXZJy7Wz1kQn4"},"time":"2026-03-06T19:14:05.241044063Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"118","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.245738439Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"118","time":"2026-03-06T19:14:05.245827697Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4TzvN2HVHsuwPESBODu3yyRy7m5E9BCXZJy7Wz1kQn4","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445245,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.245968639Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":315,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":6.876736,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.24864653Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":316,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.217649,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<806570 bytes>","time":"2026-03-06T19:14:05.267551215Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":318,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.291247,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.272230435Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":314,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":55.309391,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<17285 bytes>","time":"2026-03-06T19:14:05.284233312Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":317,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445248862831_7?ts=1772719199002&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":37.626175,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich möchte nur deinen \"Discord\"-Server joinen","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Ich möchte nur deinen \u0026quot;Discord\u0026quot;-Server joinen","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.286688825Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116268249419847","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":45.368466,"event_ids":{"":"$3fy2d7hheOsZkk9Ms-qhlxJctZqh1YOptkpsF_mbEU4"},"time":"2026-03-06T19:14:05.28680183Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":320,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":6.094294,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.290665711Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":321,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":8.972562,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.296349402Z","message":"Request completed"} +{"level":"debug","transaction_id":"119","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.298861907Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"119","time":"2026-03-06T19:14:05.298958289Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3fy2d7hheOsZkk9Ms-qhlxJctZqh1YOptkpsF_mbEU4","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445299,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.299169632Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":319,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":39.451432,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.312026539Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":324,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":22.267729,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.334445127Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271037155732361251","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"1271037155547807755","time":"2026-03-06T19:14:05.334523001Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271037155732361251","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":863.576009,"time":"2026-03-06T19:14:05.334587396Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":325,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":4.959707,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.339965038Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":322,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445290817409_10?ts=1772393582370&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":59.312747,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://www.youtube.com/watch?v=DerfqLYrnZU","com.beeper.linkpreviews":[{"og:title":"Brüder müss los (bruder muss los französisch meme)","og:description":"Müss groß\n\nhttps://www.instagram.com/p/B7vRBShDei9/?igshid=86zxcfzpx9ys","og:image":"mxc://matrix.theocloud.dev/EPakqqkyWOdnUePOYVbCmUQr","matrix:image:size":17285,"og:image:width":640,"og:image:height":480,"og:image:type":"image/jpeg","matched_url":"https://www.youtube.com/watch?v=DerfqLYrnZU"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.350323549Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477750533107482774","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":356.223039,"event_ids":{"":"$sZr9Oy1VMBt_CYfIdCqdo5-xtM2UvuHK3e82QekYEQ0"},"time":"2026-03-06T19:14:05.350545578Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":323,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445296501659_8?ts=1772719203207&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":54.549298,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"damit wir darüber schreiben können.","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.351220673Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116285886337084","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":64.198491,"event_ids":{"":"$I4NYXQ6WFBez2v9dBs8N5zdvGJ-6NVRpap3nwQPacx0"},"time":"2026-03-06T19:14:05.35130141Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":327,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":6.337065,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.358298903Z","message":"Request completed"} +{"level":"debug","transaction_id":"120","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.361319999Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"120","time":"2026-03-06T19:14:05.361451582Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$sZr9Oy1VMBt_CYfIdCqdo5-xtM2UvuHK3e82QekYEQ0","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445361,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.361650562Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"121","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.367501875Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"121","time":"2026-03-06T19:14:05.367567247Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$I4NYXQ6WFBez2v9dBs8N5zdvGJ-6NVRpap3nwQPacx0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445367,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.367736754Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":326,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445340118132_15?ts=1723109280457&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":48.847377,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"supi danke!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.389096953Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1271037188456321115","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":54.441531,"event_ids":{"":"$KOcZ1_LwH6T8RjQquXQnnJ7SXPz2bWOA61O21jpAjic"},"time":"2026-03-06T19:14:05.389193265Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":329,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":4.702548,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.394425287Z","message":"Request completed"} +{"level":"debug","transaction_id":"122","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.40392404Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"122","time":"2026-03-06T19:14:05.404018955Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KOcZ1_LwH6T8RjQquXQnnJ7SXPz2bWOA61O21jpAjic","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445404,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.404235536Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":330,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.731757,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<11473 bytes>","time":"2026-03-06T19:14:05.412686027Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":328,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445358472042_9?ts=1772719229138&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":59.087576,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"@helitra:nope.chat","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.417658515Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116394648961125","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":65.998604,"event_ids":{"":"$Y4HytN8gcJY91Utyrl2o60ON6FnVhgqI82PcbyXINuM"},"time":"2026-03-06T19:14:05.417707544Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":333,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.266455,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.419371954Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":334,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.999377,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.423124577Z","message":"Request completed"} +{"level":"debug","transaction_id":"123","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.432517519Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"123","time":"2026-03-06T19:14:05.432592739Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Y4HytN8gcJY91Utyrl2o60ON6FnVhgqI82PcbyXINuM","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445432,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.43280471Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":332,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":55.484345,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<21369 bytes>","time":"2026-03-06T19:14:05.464418867Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":335,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":46.205595,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.4660376Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":336,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":47.5363,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.471036278Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":337,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_769998429991600219:matrix.theocloud.dev/avatar_url?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":7.487018,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:05.47226166Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":340,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_769998429991600219:matrix.theocloud.dev/avatar_url?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":11.57209,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MttJiBSGxoFYTJaGsjgKRnpI"},"time":"2026-03-06T19:14:05.484011778Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":331,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445394570978_16?ts=1730201725835&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":90.018675,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"welche email hast du zur endpräsentation eingeladen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.484712924Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1300785060475310091","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":95.311669,"event_ids":{"":"$m5WOzUkOhKpRnqxe9WNfHfqND4FgF_xNO2yqS73p-b0"},"time":"2026-03-06T19:14:05.48479883Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":342,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":7.356273,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.492757143Z","message":"Request completed"} +{"level":"debug","transaction_id":"124","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.498616696Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"124","time":"2026-03-06T19:14:05.49868158Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$m5WOzUkOhKpRnqxe9WNfHfqND4FgF_xNO2yqS73p-b0","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445498,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.49885835Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":338,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":47.876501,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.514080674Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477986281811349568","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"1477986281374875811","time":"2026-03-06T19:14:05.514163647Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477986281811349568","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":163.269626,"time":"2026-03-06T19:14:05.514248435Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":339,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":43.845626,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.515030808Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116401301131264","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:05.515106168Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116401301131264","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":97.279194,"time":"2026-03-06T19:14:05.515192074Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":344,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":3.469692,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.51818642Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":345,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.433867,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.522093534Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":341,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":55.5486,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.540253073Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":347,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":36.665426,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.55912626Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":343,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445492930840_17?ts=1730201727242&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":75.917598,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"von mir","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.568982954Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1300785066376429578","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":83.953087,"event_ids":{"":"$MXjvd1TgyVHJpSlmOCmELeounYlnHovyDEfJVgpoNvY"},"time":"2026-03-06T19:14:05.569069698Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":350,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.86116,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.57557208Z","message":"Request completed"} +{"level":"debug","transaction_id":"125","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.586269256Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"125","time":"2026-03-06T19:14:05.586370807Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MXjvd1TgyVHJpSlmOCmELeounYlnHovyDEfJVgpoNvY","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445586,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.586596048Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":346,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445518475287_11?ts=1772450439225&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":75.972983,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"die ist aber wirklich sehr knapp gehalten","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.594806491Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477989008041709691","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":80.448264,"event_ids":{"":"$jWvM466x5KqC_VqVmf03DVVQ9C_Jog6lQRq_HIo_zMo"},"time":"2026-03-06T19:14:05.594893305Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":352,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":6.367098,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.601803705Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":349,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":51.804707,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.611087134Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116428450861086","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:05.611202514Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116428450861086","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":95.900159,"time":"2026-03-06T19:14:05.611302598Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"126","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.614184428Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"126","time":"2026-03-06T19:14:05.614272848Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$jWvM466x5KqC_VqVmf03DVVQ9C_Jog6lQRq_HIo_zMo","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445614,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.614491315Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":354,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.545404,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.618396752Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":351,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":53.786969,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.629734102Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":355,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":41.123595,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.659855939Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":357,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":33.27661,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<841668 bytes>","time":"2026-03-06T19:14:05.668146212Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":356,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":48.746595,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.678641265Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1300785285826613300","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:05.678725006Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1300785285826613300","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":109.391513,"time":"2026-03-06T19:14:05.678806023Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":359,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":10.594927,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.679101665Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":348,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":144.129643,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_769998429991600219:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.684613544Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.337138,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.688667606Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":353,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445601964831_12?ts=1772450466736&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":107.21041,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ahh nvm","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.709307941Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477989123431071745","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":114.23577,"event_ids":{"":"$f6LEYCogRtSTShYCjvj1SHyATe60IiX8oFFCBexgPw4"},"time":"2026-03-06T19:14:05.70941906Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"127","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.711210094Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"127","time":"2026-03-06T19:14:05.711453844Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":364,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":7.618251,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.717572372Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":358,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":70.272251,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.730298465Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116449120256112","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:05.73039792Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479116449120256112","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":118.961016,"time":"2026-03-06T19:14:05.730482011Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"128","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.732961759Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"128","time":"2026-03-06T19:14:05.733022592Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$f6LEYCogRtSTShYCjvj1SHyATe60IiX8oFFCBexgPw4","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445733,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.733211724Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":366,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":8.075229,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.738963511Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":363,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":63.389927,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.752352128Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":361,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445679267680_16?ts=1770970179651&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":119.41101,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"IF2Cjfx.pdf","info":{"mimetype":"application/pdf","size":841668},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/WjNaYCfIzSvsxzPXqTzIWOoD"},"time":"2026-03-06T19:14:05.798860209Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471780349389443246","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":585.184104,"event_ids":{"1471780349401894953":"$5FER1R7-8-ARlhHOECdxrHtGLZ0o07r1xf8vwxKpMeA"},"time":"2026-03-06T19:14:05.798945627Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":368,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":57.238572,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.809728569Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1300785401979736135","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:05.809810983Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1300785401979736135","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":130.903689,"time":"2026-03-06T19:14:05.809917213Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":369,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":7.186207,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.817579394Z","message":"Request completed"} +{"level":"debug","transaction_id":"129","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.822624727Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"129","time":"2026-03-06T19:14:05.822723484Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5FER1R7-8-ARlhHOECdxrHtGLZ0o07r1xf8vwxKpMeA","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445822,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:05.82289376Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":365,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445717730984_13?ts=1772450472021&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":118.669634,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"discord zeigt nt alles an","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.836544214Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477989145598099529","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":126.933507,"event_ids":{"":"$MEImfRXAZ5vJYuWgc_a9OoJn0N_6K5_IrSn2QwBNl_Q"},"time":"2026-03-06T19:14:05.836637244Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":371,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.225671,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.847518454Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":367,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445739124568_10?ts=1772719559701&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":118.8089,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"haha yoo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.858059882Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479117781130678302","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":127.528353,"event_ids":{"":"$yMZlVoeswUHhGJxee7NBHWfBajWs55UiPvbuRnl6-_w"},"time":"2026-03-06T19:14:05.858191674Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"130","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.863034185Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"130","time":"2026-03-06T19:14:05.863108707Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MEImfRXAZ5vJYuWgc_a9OoJn0N_6K5_IrSn2QwBNl_Q","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445863,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.863299027Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":362,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":190.877144,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.875866438Z","message":"Request completed"} +{"level":"debug","transaction_id":"131","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.89172279Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"131","time":"2026-03-06T19:14:05.891802759Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yMZlVoeswUHhGJxee7NBHWfBajWs55UiPvbuRnl6-_w","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445891,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.89201934Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"132","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.904657222Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"132","time":"2026-03-06T19:14:05.90491033Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":372,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":76.758568,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.924574131Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":370,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445817757282_18?ts=1730201817601&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":128.891954,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ne alles gut","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:05.946791434Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1300785445369810965","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":136.780214,"event_ids":{"":"$ljfAzSX-iZyUdVcWGDMVIIcTstTrxfiF9XOwN8bpPKs"},"time":"2026-03-06T19:14:05.94689082Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":376,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":5.786848,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.953365055Z","message":"Request completed"} +{"level":"debug","transaction_id":"133","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:05.960710013Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"133","time":"2026-03-06T19:14:05.960780973Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ljfAzSX-iZyUdVcWGDMVIIcTstTrxfiF9XOwN8bpPKs","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824445960,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:05.960989312Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":373,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":88.681824,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:05.965264844Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":375,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":49.268806,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:05.974024527Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477994570032615628","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:05.974121957Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477994570032615628","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":137.254233,"time":"2026-03-06T19:14:05.974214917Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":379,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.252414,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:05.978999878Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":380,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":45.731576,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.025046652Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":374,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":140.982551,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<12170 bytes>","time":"2026-03-06T19:14:06.028969201Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824445953549578_19?ts=1730814278454&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":110.664109,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"joo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:06.064382355Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303354292375126049","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":117.217125,"event_ids":{"":"$Ll0yMoQkg2-FQqHWqJeH-Muh7v-9lGN5m9YSYTX6emQ"},"time":"2026-03-06T19:14:06.06446009Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":383,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":35.465047,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.064825504Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":384,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":5.870519,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.070962751Z","message":"Request completed"} +{"level":"debug","transaction_id":"134","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.080060051Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"134","time":"2026-03-06T19:14:06.080150706Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Ll0yMoQkg2-FQqHWqJeH-Muh7v-9lGN5m9YSYTX6emQ","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446080,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:06.080413383Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":382,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":75.47829,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.10068949Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477994605852229705","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.100766317Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477994605852229705","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":126.414928,"time":"2026-03-06T19:14:06.100863607Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":387,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.316462,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.108798383Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":381,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":94.130706,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32143 bytes>","time":"2026-03-06T19:14:06.113628323Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":378,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":154.491576,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_316966695430520833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.119916708Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":389,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":10.606032,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.124499964Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":385,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":65.997556,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.131174158Z","message":"Request completed"} +{"level":"debug","transaction_id":"135","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.142869449Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"135","time":"2026-03-06T19:14:06.143209651Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":388,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":56.741296,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.165930027Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":392,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":45.170952,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.176505887Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479118879564234813","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.176586694Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479118879564234813","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":318.094209,"time":"2026-03-06T19:14:06.176652905Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":386,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446071150138_20?ts=1730814290163&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":107.634003,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"könntest du mr pdf von userem paper schicken","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:06.178922358Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303354341486497862","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":114.206227,"event_ids":{"":"$6GgzjIm7QeQVXTHiU96wbEE8ne14rbyNUVLtsCck3z0"},"time":"2026-03-06T19:14:06.178990245Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":394,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.664625,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.183709554Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":395,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":6.358926,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.185818301Z","message":"Request completed"} +{"level":"debug","transaction_id":"136","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.194360355Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"136","time":"2026-03-06T19:14:06.194461487Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6GgzjIm7QeQVXTHiU96wbEE8ne14rbyNUVLtsCck3z0","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446194,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:06.194634276Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":393,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":56.384192,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.222470387Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477994702048596099","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.222573474Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1477994702048596099","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":121.575351,"time":"2026-03-06T19:14:06.222666015Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":391,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446124679249_17?ts=1770970201098&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":106.358963,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://cdn.discordapp.com/attachments/1006172084994576486/1329154545946857472/Henry_Danger.gif","info":{"h":468,"mimetype":"image/jpeg","size":32143,"w":376},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/TCGKSjhgAlQSdwyTBeXPkMqK"},"time":"2026-03-06T19:14:06.231230209Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471780439344812094","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":432.11291,"event_ids":{"video_https://cdn.discordapp.com/attachments/1006172084994576486/1329154545946857472/Henry_Danger.gif":"$sn-2s7SwuA_dpQ7MRqr0TrRlyZsSdIzhX-8gCf7aMJs"},"time":"2026-03-06T19:14:06.231353271Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":398,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.311644,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.240304321Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":396,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":63.470594,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.247399733Z","message":"Request completed"} +{"level":"debug","transaction_id":"137","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.25122597Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"137","time":"2026-03-06T19:14:06.251322143Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$sn-2s7SwuA_dpQ7MRqr0TrRlyZsSdIzhX-8gCf7aMJs","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446251,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:06.251533276Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":390,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":161.075393,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.281263158Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":397,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446185970906_21?ts=1730814300483&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":121.033165,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"würde einmal rüberlesen gerne","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:06.307132721Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303354384771584040","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":127.984773,"event_ids":{"":"$NGha3iQaCc0RnzDvJ__ApFvuQk5EQqzWF5ww69OLcnQ"},"time":"2026-03-06T19:14:06.307218068Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":400,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":61.895094,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.309444569Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119072879972564","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.309528379Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119072879972564","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":132.790127,"time":"2026-03-06T19:14:06.30961219Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"138","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.314479635Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"138","time":"2026-03-06T19:14:06.314703619Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":402,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.863262,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.319694405Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":399,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":82.279736,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.322873274Z","message":"Request completed"} +{"level":"debug","transaction_id":"139","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.335233254Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"139","time":"2026-03-06T19:14:06.335375173Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$NGha3iQaCc0RnzDvJ__ApFvuQk5EQqzWF5ww69OLcnQ","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446335,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:06.335596084Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":405,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.919351,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<8551 bytes>","time":"2026-03-06T19:14:06.347131088Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":406,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.578931,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.356210229Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":404,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":46.052152,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.369125733Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471781471680467077","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.369228262Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471781471680467077","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":137.623628,"time":"2026-03-06T19:14:06.369327577Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":401,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":88.297622,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.370429688Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":408,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.808639,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.375875426Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":403,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":59.135138,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.379143205Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":407,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":40.142172,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.396796248Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":411,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30.701668,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.410044411Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303356064045076522","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.41015574Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303356064045076522","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":102.718227,"time":"2026-03-06T19:14:06.410252122Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":410,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":36.06604,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.412383567Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":413,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":5.124744,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.416051053Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":412,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":34.248744,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.431242576Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478004958254071981","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"1478004957910143127","time":"2026-03-06T19:14:06.431377232Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478004958254071981","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":208.588225,"time":"2026-03-06T19:14:06.43148437Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":416,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.007617,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.436051354Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":414,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":31.906097,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.444468949Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471793250544390184","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.444544239Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471793250544390184","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":74.945114,"time":"2026-03-06T19:14:06.444605281Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":409,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":100.014006,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_1142482369744482355:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.470612642Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":417,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":46.005008,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.48249078Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":415,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446416285653_22?ts=1730814710716&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":75.33658,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"okok","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:06.491845239Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303356105413496833","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":81.427591,"event_ids":{"":"$N44Gvi15GAYqULynpS2tlifIR9UTH4As6meChWpbQFI"},"time":"2026-03-06T19:14:06.491962505Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"140","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.492955521Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"140","time":"2026-03-06T19:14:06.493124749Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":420,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":7.492674,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.500277641Z","message":"Request completed"} +{"level":"debug","transaction_id":"141","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.516503458Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"141","time":"2026-03-06T19:14:06.516579586Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$N44Gvi15GAYqULynpS2tlifIR9UTH4As6meChWpbQFI","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446516,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:06.516791558Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":419,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":62.727753,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.545439025Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478360637351530629","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.54552109Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478360637351530629","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":113.886908,"time":"2026-03-06T19:14:06.545612793Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":421,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446500540178_23?ts=1730814803329&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":84.098497,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wie mache ich das xD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:06.584809371Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303356493860700231","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":92.461895,"event_ids":{"":"$hgG8jGkM_K9ix07xsZyyNSvgHwy1MN_T51mdwNT0AkA"},"time":"2026-03-06T19:14:06.584903308Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":424,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.323238,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.593867908Z","message":"Request completed"} +{"level":"debug","transaction_id":"142","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.606099797Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"142","time":"2026-03-06T19:14:06.606179766Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hgG8jGkM_K9ix07xsZyyNSvgHwy1MN_T51mdwNT0AkA","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446606,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:06.606417928Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":418,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":149.169598,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.620129355Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":426,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":11.599118,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_285422022190825472","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:06.632523907Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":427,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_285422022190825472:matrix.theocloud.dev/displayname?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":7.141648,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:06.640093897Z","message":"Request completed"} +{"level":"debug","transaction_id":"143","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.642390659Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"143","time":"2026-03-06T19:14:06.642619532Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":425,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":62.608392,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.656765168Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":428,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_285422022190825472:matrix.theocloud.dev/displayname?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":25.433049,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Chrissi"},"time":"2026-03-06T19:14:06.665682554Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":429,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":16.979275,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.673923379Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303359636673658880","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.67401564Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303359636673658880","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":88.864811,"time":"2026-03-06T19:14:06.674098683Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":430,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":2.388464,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.676997205Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":431,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.050858,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.689378068Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":422,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":133.825888,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26006 bytes>","time":"2026-03-06T19:14:06.69854067Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":433,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":5.08633,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.704027127Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":432,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":16.443864,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.705977192Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360313273487372","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.70605779Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360313273487372","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":31.853226,"time":"2026-03-06T19:14:06.706128819Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":435,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":2.761911,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.70935127Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":423,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":152.106114,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43469 bytes>","time":"2026-03-06T19:14:06.728078836Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":437,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":3.789221,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.732174314Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":434,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446704249504_11?ts=1772719878463&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":52.876995,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":697,"mimetype":"image/png","size":26006,"w":552},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/OuJHGaaBTwmxtAaJnsmUbssP"},"time":"2026-03-06T19:14:06.757372204Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119118115536936","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":447.691988,"event_ids":{"1479119117444190402":"$8EtudNfS7HSZSkBAjTYs1YhfAk9p_uzEgaKuH-ib7pI"},"time":"2026-03-06T19:14:06.757483882Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":439,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.492611,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.771839743Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":436,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446709529577_24?ts=1730815727601&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":65.874984,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wie geht das","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:06.775551439Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360370538315837","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":69.363952,"event_ids":{"":"$m1d91iytv_p46vuPVowuyLwSyWnqU_vTBlPs_CS5Ak0"},"time":"2026-03-06T19:14:06.77564831Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"144","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.777783806Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"144","time":"2026-03-06T19:14:06.777867267Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8EtudNfS7HSZSkBAjTYs1YhfAk9p_uzEgaKuH-ib7pI","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446777,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:06.778009955Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":442,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.959288,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.782245328Z","message":"Request completed"} +{"level":"debug","transaction_id":"145","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.789496209Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"145","time":"2026-03-06T19:14:06.789570451Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$m1d91iytv_p46vuPVowuyLwSyWnqU_vTBlPs_CS5Ak0","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446789,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:06.789764822Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":440,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":37.12366,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<927577 bytes>","time":"2026-03-06T19:14:06.808698213Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":444,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.775605,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.815778748Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":438,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446732416038_14?ts=1772540026299&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":86.304116,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://www.youtube.com/shorts/Tl2wbJxZfJ4","com.beeper.linkpreviews":[{"og:title":"Pero Sebastián 🗣️","og:image":"mxc://matrix.theocloud.dev/mEslUtsYBihdDPwUbtvTajOd","matrix:image:size":43469,"og:image:width":1280,"og:image:height":720,"og:image:type":"image/jpeg","matched_url":"https://www.youtube.com/watch?v=Tl2wbJxZfJ4"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:06.818888893Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478364763464400906","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":273.138022,"event_ids":{"":"$_UxFBnZ9oWv-zvYP4DWLJnoI0s9gfKi8NaLUCnG8ik4"},"time":"2026-03-06T19:14:06.818984996Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":443,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":42.115704,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.824656813Z","message":"Request completed"} +{"level":"debug","transaction_id":"146","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.828256692Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"146","time":"2026-03-06T19:14:06.828361804Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_UxFBnZ9oWv-zvYP4DWLJnoI0s9gfKi8NaLUCnG8ik4","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446828,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:06.82858069Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":441,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446772046197_12?ts=1772719884333&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":72.870381,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"helitra:nope.chat","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:06.845053329Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119142735974611","message_type":19,"author_id":"122672447207112706","action":"discord message create","handling_time":87.277228,"event_ids":{"":"$xNjmVY_jnz2DBAQhxTr87Um8dYkmjgn57WkvitsqHyU"},"time":"2026-03-06T19:14:06.84514161Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":447,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":8.844262,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.854671513Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":445,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":43.99467,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.86012193Z","message":"Request completed"} +{"level":"debug","transaction_id":"147","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.861731445Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"147","time":"2026-03-06T19:14:06.86181784Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xNjmVY_jnz2DBAQhxTr87Um8dYkmjgn57WkvitsqHyU","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446861,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:06.862018636Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":446,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":40.202306,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.865011655Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360389056303106","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.865090437Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360389056303106","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":89.179241,"time":"2026-03-06T19:14:06.865176762Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":450,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.641435,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.870290331Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":449,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":26.47279,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.886739084Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471863754676375734","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.886837562Z","message":"Failed to send part of message to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":452,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":3.371913,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.890402938Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":451,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.857971,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.898462801Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":448,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446854856106_13?ts=1772719902617&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":68.517115,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ah warte","com.beeper.linkpreviews":[],"m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$8EtudNfS7HSZSkBAjTYs1YhfAk9p_uzEgaKuH-ib7pI"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:06.923531413Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119219424628918","message_type":19,"author_id":"122672447207112706","action":"discord message create","handling_time":78.150803,"event_ids":{"":"$gDFK_9yOVBCiqeDG8ZRkup1JdHm9yo6AU2RU7QvtMso"},"time":"2026-03-06T19:14:06.923621999Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":455,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.567408,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.933739973Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":453,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":47.087633,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:06.937788937Z","message":"Request completed"} +{"level":"debug","transaction_id":"148","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:06.939199331Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"148","time":"2026-03-06T19:14:06.939278881Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gDFK_9yOVBCiqeDG8ZRkup1JdHm9yo6AU2RU7QvtMso","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824446939,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:06.939440845Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":454,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":49.92183,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.948549878Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360439429627956","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:06.948640953Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360439429627956","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":83.369624,"time":"2026-03-06T19:14:06.94872637Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":458,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":6.744245,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.95595546Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":457,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":34.674991,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:06.972614438Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471863754676375734","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":1,"attachment_id":"1471863754684895428","time":"2026-03-06T19:14:06.97270223Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471863754676375734","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":528.029132,"time":"2026-03-06T19:14:06.9727954Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":461,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":2.940009,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:06.97619944Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":456,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446933902705_14?ts=1772719951688&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":69.152819,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"add mich mal bitte erst","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:07.003184104Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119425243189402","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":79.341613,"event_ids":{"":"$0HIcjXNFP8cBZEQQiXncJa1vlc3HHXURTchkFVzb7ic"},"time":"2026-03-06T19:14:07.00326554Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":463,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.603167,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.013503992Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":460,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":45.262166,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<19217 bytes>","time":"2026-03-06T19:14:07.015732937Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":465,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_285422022190825472:matrix.theocloud.dev/avatar_url?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":7.872546,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:07.023946244Z","message":"Request completed"} +{"level":"debug","transaction_id":"149","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.030565192Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"149","time":"2026-03-06T19:14:07.030642857Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0HIcjXNFP8cBZEQQiXncJa1vlc3HHXURTchkFVzb7ic","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447030,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:07.030851545Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":462,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":61.072841,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.037596279Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":459,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824446956129437_25?ts=1730815747117&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":86.929692,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das ist vom 30. spetember","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:07.043176813Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":466,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_285422022190825472:matrix.theocloud.dev/avatar_url?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":19.156048,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UTqaaZosiKHwBpWrOmejvvoI"},"time":"2026-03-06T19:14:07.04324896Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360452394483743","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":94.344004,"event_ids":{"":"$53i6XKMlrD9aGVUVvxzWSsZj1C1VDhu_gAVOvH1WHLc"},"time":"2026-03-06T19:14:07.043268865Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"150","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.054751487Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"150","time":"2026-03-06T19:14:07.054832714Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$53i6XKMlrD9aGVUVvxzWSsZj1C1VDhu_gAVOvH1WHLc","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447055,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:07.055053764Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":467,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":43.734437,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.081482693Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471863900848001146","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:07.08156399Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471863900848001146","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":108.673186,"time":"2026-03-06T19:14:07.081661699Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":469,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":9.312274,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.091546889Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":468,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":62.78216,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.107785278Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":464,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447013671823_15?ts=1772719962824&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":100.638117,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"oder gib mir deine id","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:07.114447319Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119471951085598","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":110.873006,"event_ids":{"":"$kmzIYV9GM13gAfccnjyL5q7_7jS2GdS7y2kJfKABPLs"},"time":"2026-03-06T19:14:07.114523447Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":472,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":7.148772,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.122301217Z","message":"Request completed"} +{"level":"debug","transaction_id":"151","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.127925473Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"151","time":"2026-03-06T19:14:07.127996851Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kmzIYV9GM13gAfccnjyL5q7_7jS2GdS7y2kJfKABPLs","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447128,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:07.128197787Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":470,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447091724428_18?ts=1770991256210&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":93.834085,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Willst du auch das Fazit noch schreiben? Sonst noch diese Ehrenklausel die wir beide unterschreiben müssen right?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:07.185704903Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471868750885294241","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":103.906174,"event_ids":{"":"$s1OFh36txvkoFGf1Zk3RY9Jkjx9sfamGLt3Dj_A9_8E"},"time":"2026-03-06T19:14:07.185793603Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":475,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":4.453839,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.190915413Z","message":"Request completed"} +{"level":"debug","transaction_id":"152","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.196889368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"152","time":"2026-03-06T19:14:07.1969685Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$s1OFh36txvkoFGf1Zk3RY9Jkjx9sfamGLt3Dj_A9_8E","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447197,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:07.197186407Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447122463181_16?ts=1772720039921&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":93.618972,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"@theo:matrix.theocloud.dev?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:07.216221698Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119795319345162","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":101.444654,"event_ids":{"":"$RHI2RgBk61G7crpEbUN4hOXQQBsOghp6NvssLIb6bZ8"},"time":"2026-03-06T19:14:07.216307534Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":477,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.122726,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.22905444Z","message":"Request completed"} +{"level":"debug","transaction_id":"153","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.236904777Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"153","time":"2026-03-06T19:14:07.236990613Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$RHI2RgBk61G7crpEbUN4hOXQQBsOghp6NvssLIb6bZ8","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447237,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:07.237209708Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":471,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":148.194041,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_285422022190825472:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.256121168Z","message":"Request completed"} +{"level":"debug","transaction_id":"154","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.272687955Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"154","time":"2026-03-06T19:14:07.272930377Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":474,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":141.517263,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<95679 bytes>","time":"2026-03-06T19:14:07.292014139Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":478,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":64.874354,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.294360209Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":480,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":6.459638,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.298825782Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":476,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447191099447_19?ts=1770991274606&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":110.248128,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Und ich sehe da nur meine Unterschriften 😭","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:07.301471894Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471868828043579497","message_type":19,"author_id":"428870593358594048","action":"discord message create","handling_time":115.430002,"event_ids":{"":"$0dRsiQ3CjT0sjMfhkjyzvOgQSq0mmiFiE1GNi73PpUs"},"time":"2026-03-06T19:14:07.301556054Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"155","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.309228573Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"155","time":"2026-03-06T19:14:07.309311545Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0dRsiQ3CjT0sjMfhkjyzvOgQSq0mmiFiE1GNi73PpUs","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447309,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:07.309537974Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":483,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":7.980802,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.310112286Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":481,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":33.772839,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.328278949Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119830266286211","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:07.328425548Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119830266286211","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":111.867979,"time":"2026-03-06T19:14:07.328511454Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":485,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":5.227062,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.334162738Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":482,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447299004508_15?ts=1772545878722&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":84.422706,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":1071,"mimetype":"image/webp","size":95679,"w":650},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/lTVHrpLwZZEGwSsHqJYIvXKj"},"time":"2026-03-06T19:14:07.383650359Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478389310305603625","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":564.391932,"event_ids":{"1478389309810933813":"$QRxHq_X3c3dNd1JHe2Wrxsw9tB2So7SL1WHpL3vDZQ0"},"time":"2026-03-06T19:14:07.383770558Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":479,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":142.533887,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.399032343Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":484,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447310266079_20?ts=1770991286458&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":97.593344,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Oder sind eure so digital versteckt dingens","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:07.408102194Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471868877754470551","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":106.344925,"event_ids":{"":"$p_HifKMUy76gLOLjFWbs7hLiZjGBLIAwOzWjLTofeUA"},"time":"2026-03-06T19:14:07.40820577Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"156","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.411669247Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"156","time":"2026-03-06T19:14:07.41177408Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QRxHq_X3c3dNd1JHe2Wrxsw9tB2So7SL1WHpL3vDZQ0","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447411,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:07.411989613Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":489,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.035067,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.413915233Z","message":"Request completed"} +{"level":"debug","transaction_id":"157","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.427895134Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"157","time":"2026-03-06T19:14:07.428198319Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$p_HifKMUy76gLOLjFWbs7hLiZjGBLIAwOzWjLTofeUA","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447428,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:07.428196014Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":486,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447334312899_17?ts=1772720060337&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":101.913994,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bin im \"create\" loop","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"bin im \u0026quot;create\u0026quot; loop","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:07.436432927Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119880950382704","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":107.843669,"event_ids":{"":"$eTU4AO4-KMMimKBQwvbqHOyX9v1jm07sllQ1RyWGoV0"},"time":"2026-03-06T19:14:07.436528332Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"158","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.444752185Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"158","time":"2026-03-06T19:14:07.444828313Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eTU4AO4-KMMimKBQwvbqHOyX9v1jm07sllQ1RyWGoV0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447444,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:07.445012277Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":490,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":42.777808,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.457083529Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":488,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824447399567334_8?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":79.424376,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.479101433Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","action":"initial backfill","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:07.479600176Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":491,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":34.004436,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.49129435Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471868890328858726","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:07.491410078Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471868890328858726","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":82.930735,"time":"2026-03-06T19:14:07.491501572Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"159","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.492203626Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"159","event_id":"$No3gvzVOMEoyikkVn-Vr6XaWiwmca499GcX7t71Uoio","time":"2026-03-06T19:14:07.492259499Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"159","time":"2026-03-06T19:14:07.492281989Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":493,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.424157,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.49783291Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":492,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":35.438088,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:07.515109922Z","message":"Request completed"} +{"level":"info","channel_id":"1250499718887243897","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:07.515923584Z","message":"Creating Matrix room for channel"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"","old_name":"","new_name":"Webpro","time":"2026-03-06T19:14:07.516009909Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:07.516078564Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":494,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":22.571542,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.520737041Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":487,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":179.689395,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<14031 bytes>","time":"2026-03-06T19:14:07.54088394Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":496,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":22.069656,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.54296922Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471868975356051477","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:07.543072866Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471868975356051477","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":51.415127,"time":"2026-03-06T19:14:07.543173369Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":497,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.442665,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.545695442Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":498,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.337274,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.54908698Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":499,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":44.552359,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.590536878Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":500,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":45.487058,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.59490998Z","message":"Request completed"} +{"level":"debug","transaction_id":"160","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.600515378Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"160","time":"2026-03-06T19:14:07.600599677Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":501,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":29.347985,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.620068618Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360538658476072","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"1303360537953964085","time":"2026-03-06T19:14:07.620130429Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360538658476072","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":576.586734,"time":"2026-03-06T19:14:07.620195731Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":502,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":27.832479,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.622935572Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471869002060927177","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:07.623013167Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471869002060927177","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":79.662399,"time":"2026-03-06T19:14:07.623080564Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":503,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":2.94811,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.623599841Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":504,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.939594,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.63081168Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":506,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":60.544415,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.691691268Z","message":"Request completed"} +{"level":"debug","transaction_id":"161","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.706018634Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"161","time":"2026-03-06T19:14:07.706369661Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":505,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447623794003_26?ts=1730815788848&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":117.649519,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"achso das ist schon die aktuelle version","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:07.741628813Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303360627426983967","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":121.333067,"event_ids":{"":"$gbac3Lj9oJDMitI1SRsXTozJfMZDXWdjd5704utWyPk"},"time":"2026-03-06T19:14:07.741742237Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":260,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s591_890_0_353_368_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":3339.083557,"status_code":200,"response_length":207,"response_mime":"application/json","time":"2026-03-06T19:14:07.74329923Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:07.743571","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:07.74359571Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:07.743571","time":"2026-03-06T19:14:07.743792246Z","message":"Finished handling device list changes"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","action":"initial backfill","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:07.7455038Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","action":"initial backfill","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","limit":100,"before_id":"1473983679314526290","time":"2026-03-06T19:14:07.745580836Z","message":"Fetching messages for backfill"} +{"level":"debug","transaction_id":"162","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.770102024Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"162","time":"2026-03-06T19:14:07.770224108Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gbac3Lj9oJDMitI1SRsXTozJfMZDXWdjd5704utWyPk","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447770,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:07.770474563Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":508,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":79.774495,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.771674033Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471869220227649539","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:07.771776352Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471869220227649539","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":148.627063,"time":"2026-03-06T19:14:07.771882163Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":511,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.78629,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.77828914Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":512,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":34.138394,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.812842886Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":495,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":319.563829,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Webpro","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1250499718887243897","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1250499718887243897","displayname":"Webpro","external_url":"https://discord.com/channels/@me/1250499718887243897"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"state_key":"fi.mau.discord://discord/dm/1250499718887243897","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1250499718887243897","displayname":"Webpro","external_url":"https://discord.com/channels/@me/1250499718887243897"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}}],"preset":"private_chat","room_version":"11"},"time":"2026-03-06T19:14:07.836197499Z","message":"Request completed"} +{"level":"info","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","time":"2026-03-06T19:14:07.836826079Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"163","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.852930581Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"163","time":"2026-03-06T19:14:07.853270992Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":513,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":52.211119,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.865255988Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471869295733641358","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:07.865326459Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471869295733641358","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":93.250694,"time":"2026-03-06T19:14:07.865392181Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"164","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.870966778Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"164","time":"2026-03-06T19:14:07.871107021Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":509,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":144.093464,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<21143 bytes>","time":"2026-03-06T19:14:07.872847909Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":515,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.716522,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.876506664Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":516,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":7.364793,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.880667096Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":517,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":35.68498,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.912522277Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":514,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":96.430261,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:07.933487658Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":507,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":282.108698,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<702396 bytes>","time":"2026-03-06T19:14:07.94822388Z","message":"Request completed"} +{"level":"debug","transaction_id":"165","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.950400024Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"165","time":"2026-03-06T19:14:07.95044179Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":521,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.009507,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.956572262Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":519,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":48.006757,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:07.960758535Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471869396183154821","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:07.960855895Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471869396183154821","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":95.388565,"time":"2026-03-06T19:14:07.960946411Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":518,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447880868521_18?ts=1772720067083&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":89.300976,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":524,"mimetype":"image/png","size":21143,"w":514},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/VZCTEzGGjwOItsCpMuqPxBqX"},"time":"2026-03-06T19:14:07.970312813Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119909245030480","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":533.546389,"event_ids":{"1479119908833984512":"$TUBKdfxZKgxU0cda_0kty6ebiPy2KSqI-s12BrbWm2k"},"time":"2026-03-06T19:14:07.9704335Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":523,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":9.195568,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.970746254Z","message":"Request completed"} +{"level":"debug","transaction_id":"166","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:07.977056779Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"166","time":"2026-03-06T19:14:07.977162031Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$TUBKdfxZKgxU0cda_0kty6ebiPy2KSqI-s12BrbWm2k","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824447977,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:07.977302204Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":525,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.173846,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:07.979290264Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":522,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":41.436977,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:07.998301878Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":526,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":34.895693,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.014525181Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":527,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":35.728841,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.034217826Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478427981956517940","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"1478427981679689779","time":"2026-03-06T19:14:08.034321682Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478427981956517940","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":650.280276,"time":"2026-03-06T19:14:08.034412407Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":524,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824447970863519_21?ts=1770992610898&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":67.177052,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"I see","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.03817376Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471874432858325002","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":77.107919,"event_ids":{"":"$xQAMVkfUCgJyje49lLmCStLlX3o7N8UE8C5leaeycSU"},"time":"2026-03-06T19:14:08.038290886Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":529,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.260661,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.044220491Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":530,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":8.420459,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.047422897Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","action":"initial backfill","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:08.053855855Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","action":"initial backfill","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:08.05391131Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","action":"initial backfill","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:08.053975216Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":520,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":125.557824,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:08.059429266Z","message":"Request completed"} +{"level":"debug","transaction_id":"167","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.05985216Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"167","time":"2026-03-06T19:14:08.059945539Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xQAMVkfUCgJyje49lLmCStLlX3o7N8UE8C5leaeycSU","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448060,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.060101707Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":535,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":15.683213,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_283971167717687296","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:08.075628473Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":528,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":69.293411,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.084032728Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119959895441609","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.084140006Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479119959895441609","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":113.451092,"time":"2026-03-06T19:14:08.084234852Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":536,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_283971167717687296:matrix.theocloud.dev/displayname?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":8.450072,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:08.084491522Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":531,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":45.130024,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<697298 bytes>","time":"2026-03-06T19:14:08.088893468Z","message":"Request completed"} +{"level":"debug","transaction_id":"168","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.092614872Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"168","time":"2026-03-06T19:14:08.092874824Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":538,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.418994,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.094243173Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":539,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.050295,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.097352899Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":534,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":51.759659,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.106129274Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":532,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":76.956431,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.121530394Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":537,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_283971167717687296:matrix.theocloud.dev/displayname?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":42.076662,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"FloJ"},"time":"2026-03-06T19:14:08.126730637Z","message":"Request completed"} +{"level":"debug","transaction_id":"169","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:08.127648992Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"169","time":"2026-03-06T19:14:08.127712898Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":541,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":53.949283,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.151588744Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":543,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":42.014013,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.163703159Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478427999065079920","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.163807573Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478427999065079920","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":129.281742,"time":"2026-03-06T19:14:08.163909542Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":533,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448047608677_22?ts=1770992631828&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":119.372526,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich habe einfach auf dem Handy die Datei geöffnet und da sind die Felder visuell einfach leer.","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.167137022Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471874520645107815","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":128.524163,"event_ids":{"":"$-tU9Mfft3QfBaWbfnpLyU1byOyQu5CC_LFQmGkfhkP4"},"time":"2026-03-06T19:14:08.16722167Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":545,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":9.337068,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.173819247Z","message":"Request completed"} +{"level":"debug","transaction_id":"170","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.18637681Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"170","time":"2026-03-06T19:14:08.186470958Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-tU9Mfft3QfBaWbfnpLyU1byOyQu5CC_LFQmGkfhkP4","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448186,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.186699062Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":540,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448094451583_19?ts=1772720123828&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":101.295471,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"deutscher server, konnte ich mir am besten merken","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.195874865Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120147250810911","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":111.471065,"event_ids":{"":"$jhxhjHFpK9sPGTuZ2QngpoCOAjsCtMtkwqlGbRHiIZ0"},"time":"2026-03-06T19:14:08.195972225Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":547,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.326033,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.205909378Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":544,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":66.441683,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.218178563Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303433107923402803","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.218274945Z","message":"Failed to send part of message to Matrix"} +{"level":"debug","transaction_id":"171","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.22056151Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"171","time":"2026-03-06T19:14:08.220658311Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$jhxhjHFpK9sPGTuZ2QngpoCOAjsCtMtkwqlGbRHiIZ0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448220,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.220848003Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":549,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.284267,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.227738428Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":542,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448106282508_1?ts=1741968987010&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":128.142126,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"danke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.234567182Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350140531090395178","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":180.508645,"event_ids":{"":"$43BF-DlsjhL2kyWsZ4-nxizr-3BQ2_VleToE5NfSRfQ"},"time":"2026-03-06T19:14:08.234660212Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":551,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":11.737266,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.246990997Z","message":"Request completed"} +{"level":"debug","transaction_id":"172","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.256820174Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"172","time":"2026-03-06T19:14:08.256893997Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$43BF-DlsjhL2kyWsZ4-nxizr-3BQ2_VleToE5NfSRfQ","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448257,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.25706972Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":548,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":75.342238,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.281537549Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":550,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":64.018576,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.292028202Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":546,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448174054476_16?ts=1772555114080&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":121.764832,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"WOAH","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.295944256Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478428046204731483","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":131.892095,"event_ids":{"":"$rIh2UhgWEewJNpaXoMyk6dJMd6OkNpoblSe3pI3rq48"},"time":"2026-03-06T19:14:08.295999222Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":555,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.87031,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.303382244Z","message":"Request completed"} +{"level":"debug","transaction_id":"173","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.307724615Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"173","time":"2026-03-06T19:14:08.307786984Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$rIh2UhgWEewJNpaXoMyk6dJMd6OkNpoblSe3pI3rq48","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448307,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.3080146Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":553,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":42.895842,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.324598777Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120404487606416","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.324675743Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120404487606416","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":128.430575,"time":"2026-03-06T19:14:08.324731478Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":557,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.702689,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.331841696Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":554,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":42.771452,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.33495666Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303433107923402803","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":1,"attachment_id":"1303433107524817006","time":"2026-03-06T19:14:08.335028597Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303433107923402803","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":592.925974,"time":"2026-03-06T19:14:08.335086077Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":552,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448247141298_2?ts=1741968991099&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":96.12505,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"🐭","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.343389061Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350140548241162342","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":108.457094,"event_ids":{"":"$MpfnBHZyT9EVqoaNRvy6yABP-jbtmXx9I6AvV2WaSxk"},"time":"2026-03-06T19:14:08.343446262Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":559,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.300889,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.343843385Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":560,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":7.789993,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.35172571Z","message":"Request completed"} +{"level":"debug","transaction_id":"174","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.359094833Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"174","time":"2026-03-06T19:14:08.359190168Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MpfnBHZyT9EVqoaNRvy6yABP-jbtmXx9I6AvV2WaSxk","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448359,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.359395364Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":556,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":58.060685,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.36178788Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":558,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":43.482796,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.375522844Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":561,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":43.08246,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.387171899Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":563,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":33.190914,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.395110936Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478428094309204174","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.395242798Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478428094309204174","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":99.120654,"time":"2026-03-06T19:14:08.395373333Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":566,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":8.37555,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.404347082Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":564,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":36.661515,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.412354563Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120806545195060","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.412423428Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120806545195060","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":87.588653,"time":"2026-03-06T19:14:08.412482375Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":569,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":7.649471,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.420551667Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":565,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":45.426575,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.432889995Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303433118052651038","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.43301627Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303433118052651038","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":97.855322,"time":"2026-03-06T19:14:08.433124176Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":562,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448351984685_3?ts=1741969893612&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":85.663592,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"zweites kapitel neu","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.437835733Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350144333654790225","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":94.260054,"event_ids":{"":"$9XpKvXCstHFIdL2LMFwNvVxTJye9KcN_UlqYzQkCSQA"},"time":"2026-03-06T19:14:08.437954605Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"175","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.450453571Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"175","time":"2026-03-06T19:14:08.450563782Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$9XpKvXCstHFIdL2LMFwNvVxTJye9KcN_UlqYzQkCSQA","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448450,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.450827995Z","message":"Sent message checkpoint"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:08.473746444Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":568,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448404513446_17?ts=1772555137376&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":74.738312,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"sieht voll scary aus","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.47944096Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478428143915106500","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":83.931156,"event_ids":{"":"$wfnFukI_Ph7YNuevzWSo1lC_E0cBijzAhiE_mF-Vuak"},"time":"2026-03-06T19:14:08.479565838Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":571,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":5.072642,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.48562542Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":570,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448420782914_20?ts=1772720292656&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":71.777979,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"why?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.492751423Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120855366635632","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":80.223651,"event_ids":{"":"$pBARxCVxajwukwv-hTKY00NZJaJQx2XLT0rZ6sO9nJY"},"time":"2026-03-06T19:14:08.492870713Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"176","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.495568859Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"176","time":"2026-03-06T19:14:08.495637863Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$wfnFukI_Ph7YNuevzWSo1lC_E0cBijzAhiE_mF-Vuak","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448495,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.495831884Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":573,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.878201,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.498531217Z","message":"Request completed"} +{"level":"debug","transaction_id":"177","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.504927368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"177","time":"2026-03-06T19:14:08.504999446Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$pBARxCVxajwukwv-hTKY00NZJaJQx2XLT0rZ6sO9nJY","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448505,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.505181594Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":574,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":23.992622,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.522808027Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":572,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448485797302_18?ts=1772555146918&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":55.531069,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"haha stark","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.541469662Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478428183937155213","message_type":19,"author_id":"316966695430520833","action":"discord message create","handling_time":61.558594,"event_ids":{"":"$DZJcAzIj26V45Xl_JxOPkfKXVFywskVFbdQ4Oj4hJvE"},"time":"2026-03-06T19:14:08.541544184Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"178","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.548963943Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"178","time":"2026-03-06T19:14:08.549083583Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$DZJcAzIj26V45Xl_JxOPkfKXVFywskVFbdQ4Oj4hJvE","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448549,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.549321954Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":575,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":34.369292,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.557365335Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120906331754528","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.557466327Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120906331754528","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":64.272174,"time":"2026-03-06T19:14:08.557547972Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":577,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":1.972205,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.560016267Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":578,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.700667,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.571043936Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":576,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":43.549006,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<31416 bytes>","time":"2026-03-06T19:14:08.573291878Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":580,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_283971167717687296:matrix.theocloud.dev/avatar_url?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":2.101553,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:08.575868288Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":581,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_283971167717687296:matrix.theocloud.dev/avatar_url?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":4.713023,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GHrLAavBCMEfuEdebmBZVnax"},"time":"2026-03-06T19:14:08.580756406Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":579,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":24.658358,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.595935428Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120926665609419","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.596055137Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120926665609419","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":38.395487,"time":"2026-03-06T19:14:08.596149913Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":583,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":3.121529,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.599859933Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":582,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":33.835488,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.615214328Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":584,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448600043548_21?ts=1772720326823&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":38.463514,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ja ich bekomme den Error: \"MatrixError: [502] Can't connect to server matrix.theocloud.dev (https://nope.chat/_matrix/client/v3/createRoom)\"","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Ja ich bekomme den Error: \u0026quot;MatrixError: [502] Can't connect to server matrix.theocloud.dev (https://nope.chat/_matrix/client/v3/createRoom)\u0026quot;","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.638762894Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479120998673416273","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":42.483284,"event_ids":{"":"$y7MxKPR-hJAiYhA3Me5qWEB0zlxgCRtUnGlAKPAqenY"},"time":"2026-03-06T19:14:08.63887967Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":586,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.630263,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.646285182Z","message":"Request completed"} +{"level":"debug","transaction_id":"179","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.652617986Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"179","time":"2026-03-06T19:14:08.652734553Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$y7MxKPR-hJAiYhA3Me5qWEB0zlxgCRtUnGlAKPAqenY","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448652,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.652960213Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":567,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":260.660008,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<177623 bytes>","time":"2026-03-06T19:14:08.657223034Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":588,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":4.980869,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.662627076Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":587,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":35.630992,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.682247715Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":591,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":13.493869,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<150036 bytes>","time":"2026-03-06T19:14:08.70099323Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":592,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":5.769527,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.707153804Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":585,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":102.31433,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_283971167717687296:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.717759696Z","message":"Request completed"} +{"level":"debug","transaction_id":"180","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.746376922Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"180","time":"2026-03-06T19:14:08.746621719Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":590,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":69.651702,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.75212822Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121001538261144","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.752229421Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121001538261144","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":112.976026,"time":"2026-03-06T19:14:08.752304781Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":595,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":3.964245,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.756995455Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":589,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448662889474_23?ts=1770992649280&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":101.843035,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image0.jpg","info":{"h":2556,"mimetype":"image/jpeg","size":177623,"w":1179},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/NeteYgjMZvnMcaaGqmVvAtUl"},"time":"2026-03-06T19:14:08.764924434Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471874593844101243","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":597.459992,"event_ids":{"1471874594259341323":"$hSdbIMsr3UXWXlv2CBPWO85YDCQ-ZZ8OZPlA-RgR2g0"},"time":"2026-03-06T19:14:08.765033318Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":597,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":7.997215,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.773601563Z","message":"Request completed"} +{"level":"debug","transaction_id":"181","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.780291681Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"181","time":"2026-03-06T19:14:08.78040273Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hSdbIMsr3UXWXlv2CBPWO85YDCQ-ZZ8OZPlA-RgR2g0","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448780,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:08.780599615Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":593,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448707408588_27?ts=1730837300022&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":112.87664,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Deckblatt_1_1.pdf","info":{"mimetype":"application/pdf","size":150036},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/PEFbCXXwQIXFkiNKoskwxIry"},"time":"2026-03-06T19:14:08.820465491Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1303450851830140958","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":387.173484,"event_ids":{"1303450851381084211":"$Ao17xA5pJMKp646_1FQSUgifTfAB5_w-U7XIqcYiNEA"},"time":"2026-03-06T19:14:08.820560477Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":600,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.268972,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.830512785Z","message":"Request completed"} +{"level":"debug","transaction_id":"182","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.840414318Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"182","time":"2026-03-06T19:14:08.840526485Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Ao17xA5pJMKp646_1FQSUgifTfAB5_w-U7XIqcYiNEA","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448840,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:08.840813955Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":596,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448757161959_22?ts=1772720332632&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":107.40527,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"100%","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.864726609Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121023038394389","message_type":19,"author_id":"122672447207112706","action":"discord message create","handling_time":112.297159,"event_ids":{"":"$1SkjXmCuK3lzAezufLgeR-7N7TzyTBKgPp-F1fFKFwE"},"time":"2026-03-06T19:14:08.864820965Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":602,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.75221,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.875317275Z","message":"Request completed"} +{"level":"debug","transaction_id":"183","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.893847467Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"183","time":"2026-03-06T19:14:08.893943709Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1SkjXmCuK3lzAezufLgeR-7N7TzyTBKgPp-F1fFKFwE","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448894,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.894127115Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":598,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448773755146_24?ts=1770992672686&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":131.577456,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Aber wenn du meinst dass das bei Foxit einsehbar ist ist das fine mit mir!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:08.90547117Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471874692015984651","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":140.204997,"event_ids":{"":"$iYirp6mT0fMgoGNqpHQl336YYOEq57o-EhD-sP7Utcs"},"time":"2026-03-06T19:14:08.905567412Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":599,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":95.903511,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<72141 bytes>","time":"2026-03-06T19:14:08.910055334Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":594,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":198.716514,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.91676822Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":604,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":19.759834,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.926423699Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":605,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":17.620915,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.928279058Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":601,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":101.009258,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:08.931924054Z","message":"Request completed"} +{"level":"debug","transaction_id":"184","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.94469324Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"184","time":"2026-03-06T19:14:08.944797095Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$iYirp6mT0fMgoGNqpHQl336YYOEq57o-EhD-sP7Utcs","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824448944,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:08.945010393Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"185","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:08.961063141Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"185","time":"2026-03-06T19:14:08.961310732Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":609,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.160482,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:08.982260748Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1306928185438502922","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:08.982415378Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1306928185438502922","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":161.593972,"time":"2026-03-06T19:14:08.982532155Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":610,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":8.299492,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:08.99141022Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":606,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":86.171555,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.003643855Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":603,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448875581279_23?ts=1772720346908&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":137.808082,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"die Server sind egal, das ist wie bei Mastodon oder damals Jabber","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.013574512Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121082916274197","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":148.504699,"event_ids":{"":"$cT9EQwbfqkqHyAd6jyS4DUW3G4wA1PiZZ8ctwFzfyzI"},"time":"2026-03-06T19:14:09.013693244Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":613,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.117626,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.025543026Z","message":"Request completed"} +{"level":"debug","transaction_id":"186","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.037677835Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"186","time":"2026-03-06T19:14:09.03776402Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$cT9EQwbfqkqHyAd6jyS4DUW3G4wA1PiZZ8ctwFzfyzI","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449037,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.037964537Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":607,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448926705303_25?ts=1770992688568&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":124.566413,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Dachte nur kurz du hast ausversehen die falsche Datei gesendet lol","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.051454075Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471874758630183085","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":145.38324,"event_ids":{"":"$tqfYnXRhgdu8f-x1JiEIgZqnyxC78vzNpH3HIoSk0zQ"},"time":"2026-03-06T19:14:09.051566521Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":608,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448928454083_19?ts=1772556894798&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":127.683682,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/1232640/Alpaca_Ball_Allstars/\n\u003e [**Alpaca Ball: Allstars**](https://store.steampowered.com/app/1232640/Alpaca_Ball_Allstars/)\n\u003e \n\u003e **GOAAAAAAAAAAAAAAAAAAL! Play the craziest kind of football with the furriest alpacas around the world.**…\n\u003e \n\u003e Price$19.99","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/1232640/Alpaca_Ball_Allstars/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/1232640/Alpaca_Ball_Allstars/\"\u003e\u003cstrong\u003eAlpaca Ball: Allstars\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003e\u003cstrong\u003eGOAAAAAAAAAAAAAAAAAAL! Play the craziest kind of football with the furriest alpacas around the world.\u003c/strong\u003e…\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$19.99\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003cp class=\"discord-embed-image\"\u003e\u003cimg src=\"mxc://matrix.theocloud.dev/vlBiORNecvtTaDNasrZAzkJq\" alt=\"\" title=\"Embed image\"\u003e\u003c/p\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.056417832Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478435515077492737","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":514.746466,"event_ids":{"":"$U0zaJUf-gCgyYVA0bYsTodiAzWyCaQ8V9O7DiAU6dtc"},"time":"2026-03-06T19:14:09.056552488Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":615,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.369825,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.06256793Z","message":"Request completed"} +{"level":"debug","transaction_id":"187","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.073921832Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"187","time":"2026-03-06T19:14:09.074009344Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tqfYnXRhgdu8f-x1JiEIgZqnyxC78vzNpH3HIoSk0zQ","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449074,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.074212865Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"188","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.090409837Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"188","time":"2026-03-06T19:14:09.090491832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$U0zaJUf-gCgyYVA0bYsTodiAzWyCaQ8V9O7DiAU6dtc","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449090,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.090684107Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":614,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":82.367178,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.108227428Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":617,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":25.385766,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<841632 bytes>","time":"2026-03-06T19:14:09.118524268Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":611,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824448991600051_28?ts=1731779297561&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":131.53597,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"??","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.123297356Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1307401875875827823","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":140.667842,"event_ids":{"":"$A9CUZAvebq6wj9jvdVtSb8S6U-9uSPq1pnsi0BT7jsk"},"time":"2026-03-06T19:14:09.123433968Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":619,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":9.175942,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.128216414Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":620,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.405307,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.136601603Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":616,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":79.725536,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.142561869Z","message":"Request completed"} +{"level":"debug","transaction_id":"189","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.144181091Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"189","time":"2026-03-06T19:14:09.144271816Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$A9CUZAvebq6wj9jvdVtSb8S6U-9uSPq1pnsi0BT7jsk","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449144,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.144488607Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":618,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":61.738577,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:09.170169875Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121223752614070","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:09.170289095Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121223752614070","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":156.350425,"time":"2026-03-06T19:14:09.170410691Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":624,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.560354,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.180576018Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":612,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":201.222732,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_316966695430520833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:09.205056838Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":623,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":79.898046,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:09.222647442Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471882942878843072","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:09.222748434Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471882942878843072","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":170.948011,"time":"2026-03-06T19:14:09.222848098Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":622,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":94.188186,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.231045691Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":627,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.936243,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.232403354Z","message":"Request completed"} +{"level":"debug","transaction_id":"190","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.239123224Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"190","time":"2026-03-06T19:14:09.239435768Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":621,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449128382220_4?ts=1741969894169&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":141.14242,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"GrowGreen_2_Paper.pdf","info":{"mimetype":"application/pdf","size":841632},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/VXugvgqEGgxWKSXXZNOdQmyP"},"time":"2026-03-06T19:14:09.269678991Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350144335991013437","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":831.442223,"event_ids":{"1350144335617982565":"$_TaqYtgGEn9pQmwCQgPkx5NIzpBzGXgwCfzmtFiSFO4"},"time":"2026-03-06T19:14:09.269747646Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":630,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":18.913137,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.289154497Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":628,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":60.343478,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:09.291568524Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313946789019390124","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:09.291693053Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313946789019390124","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":167.919651,"time":"2026-03-06T19:14:09.291793486Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"191","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.30332346Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"191","time":"2026-03-06T19:14:09.303473342Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_TaqYtgGEn9pQmwCQgPkx5NIzpBzGXgwCfzmtFiSFO4","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449303,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:09.303702494Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":632,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":12.692499,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.305030195Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":629,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":77.602122,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.310388561Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":625,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449180808872_24?ts=1772720384640&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":146.658839,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://federationtester.matrix.org/#matrix.theocloud.dev","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.327639941Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121241175752826","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":157.076226,"event_ids":{"":"$PoReVUj733uJg1nK874u56YXMKCt_Ozj3BAsKUEkjkw"},"time":"2026-03-06T19:14:09.327740235Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":635,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":7.013068,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.335441947Z","message":"Request completed"} +{"level":"debug","transaction_id":"192","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.339777962Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"192","time":"2026-03-06T19:14:09.339880142Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$PoReVUj733uJg1nK874u56YXMKCt_Ozj3BAsKUEkjkw","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449340,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.340101891Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":634,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":47.697355,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:09.358322891Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471883025364156638","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:09.358445254Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471883025364156638","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":135.453281,"time":"2026-03-06T19:14:09.358533395Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":637,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.108265,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.368217021Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":626,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":198.397055,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.403907239Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":631,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449289394754_5?ts=1741969903325&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":148.456438,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"solange ihr nichts auszusetzen habt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.438035645Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350144374394060880","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":168.141471,"event_ids":{"":"$nVGa9r982edDLe-blAfK2WPHHen4ZKXZ1VdAew0EG-w"},"time":"2026-03-06T19:14:09.438150536Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":633,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449305268776_29?ts=1733345229132&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":135.340626,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wenn du wüsstest","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.440799093Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313969868927930511","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":148.885618,"event_ids":{"":"$Lh8-QCWC2sIFNzA7w3YuSUPBc_YUZpj83fanfZB9B24"},"time":"2026-03-06T19:14:09.440895825Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"193","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.444280589Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"193","time":"2026-03-06T19:14:09.444413778Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nVGa9r982edDLe-blAfK2WPHHen4ZKXZ1VdAew0EG-w","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449444,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.444649286Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":640,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":13.729167,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.452571141Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":641,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":12.841891,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.454379356Z","message":"Request completed"} +{"level":"debug","transaction_id":"194","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.470182279Z","message":"Starting handling of transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Lh8-QCWC2sIFNzA7w3YuSUPBc_YUZpj83fanfZB9B24","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449470,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.470437063Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"194","time":"2026-03-06T19:14:09.470510188Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":638,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":105.00088,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.47360371Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":636,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449335679969_25?ts=1772720387316&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":156.814318,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ne ist er nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.492660721Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121252399710374","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":164.673385,"event_ids":{"":"$eW-B9cvM6T5eO5Sr12g6yIJTgnzIYQf23lnOSBMbSyg"},"time":"2026-03-06T19:14:09.49278525Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":645,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":8.400903,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.501792733Z","message":"Request completed"} +{"level":"debug","transaction_id":"195","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.507912798Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"195","time":"2026-03-06T19:14:09.508036279Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eW-B9cvM6T5eO5Sr12g6yIJTgnzIYQf23lnOSBMbSyg","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449508,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.508256981Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":639,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":118.348989,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.523151535Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":644,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":56.395157,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:09.530166978Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471883066963136674","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:09.530265106Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471883066963136674","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":171.631138,"time":"2026-03-06T19:14:09.530404232Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":648,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":5.664903,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.536658394Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":642,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449452823132_6?ts=1741969906711&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":113.576599,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"könnten wir abgeben","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.566567282Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350144388596236299","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":128.150019,"event_ids":{"":"$YSAXmUUPQYJgd7vuZ99oj8PGzF0-bswfAXAhOG2kf54"},"time":"2026-03-06T19:14:09.566688109Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":643,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449454537269_30?ts=1733345243508&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":114.937475,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"meine freundin muss sozusagen ein produkt präsentieren für die uni","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.569632867Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313969929225109626","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":128.529261,"event_ids":{"":"$gEtVU8q26_whj73qu7G8wJ6_u75PtPAZ8nwk9nE3rjo"},"time":"2026-03-06T19:14:09.569739656Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":650,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":12.4484,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.579898697Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":651,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":11.179506,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.581701325Z","message":"Request completed"} +{"level":"debug","transaction_id":"196","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.589780675Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"196","time":"2026-03-06T19:14:09.589880549Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YSAXmUUPQYJgd7vuZ99oj8PGzF0-bswfAXAhOG2kf54","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449589,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.590038742Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"197","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.619227905Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"197","time":"2026-03-06T19:14:09.619282312Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gEtVU8q26_whj73qu7G8wJ6_u75PtPAZ8nwk9nE3rjo","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449619,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.61945175Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":646,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449502021676_26?ts=1772720412337&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":126.451665,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ist bestimmt ein Portproblem","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.628669667Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121357345390734","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":135.679639,"event_ids":{"":"$ywO_BgcSAH0rDiCePznLot-O9ybBe-AYo3jKmafa8hc"},"time":"2026-03-06T19:14:09.628789796Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":654,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.445605,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.639945137Z","message":"Request completed"} +{"level":"debug","transaction_id":"198","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.650878379Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"198","time":"2026-03-06T19:14:09.650981746Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ywO_BgcSAH0rDiCePznLot-O9ybBe-AYo3jKmafa8hc","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449651,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.651212644Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":649,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449536879235_26?ts=1770994797843&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":153.341623,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yep aufm pc in firefox funktionierts!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.690457204Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471883605570752666","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":159.960501,"event_ids":{"":"$0Mihqa4O0ccqRXTLQEnd7ixjh9qZr9WFN5gKoExvxGY"},"time":"2026-03-06T19:14:09.690603802Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":656,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":12.046388,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.703492907Z","message":"Request completed"} +{"level":"debug","transaction_id":"199","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.716482794Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"199","time":"2026-03-06T19:14:09.716599011Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0Mihqa4O0ccqRXTLQEnd7ixjh9qZr9WFN5gKoExvxGY","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449716,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.716786258Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":647,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":205.216521,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_285422022190825472:matrix.theocloud.dev"},"time":"2026-03-06T19:14:09.728556909Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":655,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":108.506961,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.748966555Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":653,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449581936274_32?ts=1733345249548&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":187.105312,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"so 3d modell mäßig","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.769199081Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313969954558836800","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":199.134869,"event_ids":{"":"$zYd4DEtFsSBO1EN_ZXVwe1Km6JvfVUoFbiqzDkBZoeQ"},"time":"2026-03-06T19:14:09.769284498Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"200","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.77212149Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"200","time":"2026-03-06T19:14:09.772399532Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":652,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449580136650_31?ts=1741969966161&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":199.467807,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Auf Seite 8 sind zwei Rechtschreibfehler in einem Satz","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.779812167Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350144637947346965","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":212.848461,"event_ids":{"":"$nplHSnXmUR9SMnYU6jMT7a9hHM3vnqXd2oyMfs9DG0M"},"time":"2026-03-06T19:14:09.779929083Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":660,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":14.89644,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.784966803Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":661,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":11.260943,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.792031764Z","message":"Request completed"} +{"level":"debug","transaction_id":"201","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.802032822Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"201","time":"2026-03-06T19:14:09.802436511Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nplHSnXmUR9SMnYU6jMT7a9hHM3vnqXd2oyMfs9DG0M","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449802,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.802710571Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$zYd4DEtFsSBO1EN_ZXVwe1Km6JvfVUoFbiqzDkBZoeQ","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449802,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.802721118Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":659,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":71.136059,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:09.820275683Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121415117738047","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:09.82044079Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121415117738047","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":191.396698,"time":"2026-03-06T19:14:09.820562874Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":664,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":11.738873,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.832839462Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":657,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449703766828_27?ts=1770994798972&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":146.442607,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yay","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.850419939Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471883610306117683","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":159.438151,"event_ids":{"":"$ZMGqG3fXjCkddFmyVyqX6ntJIcg5OzG7MfMhT1YCqeo"},"time":"2026-03-06T19:14:09.850531338Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":666,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":9.212609,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.860463113Z","message":"Request completed"} +{"level":"debug","transaction_id":"202","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.86777762Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"202","time":"2026-03-06T19:14:09.867887412Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ZMGqG3fXjCkddFmyVyqX6ntJIcg5OzG7MfMhT1YCqeo","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449868,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.868112094Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":662,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449785187086_33?ts=1733345258226&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":122.359329,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"und hat mich gefragt ob ich sowas kann","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.907714805Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313969990956744736","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":138.055952,"event_ids":{"":"$VTy-1_ostc3oGv4idnd5cFYgPiWm858N-OsUUq-InqE"},"time":"2026-03-06T19:14:09.907793656Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":663,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449792279983_34?ts=1741969970020&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":123.887268,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"!!!!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.916964849Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350144654133432434","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":136.938476,"event_ids":{"":"$kkH4EsPh45aTXamFfh_xyx4OISjyeXudafgIy0yBwYI"},"time":"2026-03-06T19:14:09.917303584Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":668,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.655134,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.92196688Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":669,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":12.676505,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.93056411Z","message":"Request completed"} +{"level":"debug","transaction_id":"203","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.937910046Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"203","time":"2026-03-06T19:14:09.93797877Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$VTy-1_ostc3oGv4idnd5cFYgPiWm858N-OsUUq-InqE","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449938,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.938140036Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":658,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":225.913638,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:09.954818152Z","message":"Request completed"} +{"level":"debug","transaction_id":"204","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:09.967628474Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"204","time":"2026-03-06T19:14:09.967717942Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kkH4EsPh45aTXamFfh_xyx4OISjyeXudafgIy0yBwYI","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824449967,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:09.967912802Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":665,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449832994931_27?ts=1772720439932&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":151.504632,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Man muss ja irgendwie mit deinem Port kommunizieren","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:09.984643718Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121473087213619","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":163.907425,"event_ids":{"":"$4b-wOgua0iXz6wQH4dgxj83-5sm3ZExGcbo-emsDPq8"},"time":"2026-03-06T19:14:09.984721452Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":673,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":12.812767,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:09.998058455Z","message":"Request completed"} +{"level":"debug","transaction_id":"205","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.002099037Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"205","time":"2026-03-06T19:14:10.002444198Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":670,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":115.06326,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.037409174Z","message":"Request completed"} +{"level":"debug","transaction_id":"206","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.039110112Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"206","time":"2026-03-06T19:14:10.039180234Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4b-wOgua0iXz6wQH4dgxj83-5sm3ZExGcbo-emsDPq8","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450039,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.039456949Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":667,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449860721459_28?ts=1770994803616&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":189.159163,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"einwandfrei","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.050086098Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471883629784203395","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":199.299068,"event_ids":{"":"$92kd8ZuOKm01aX5N9CUjmf4_NGPjpy9DXyGhsJ4NABY"},"time":"2026-03-06T19:14:10.050225294Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":677,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.505597,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.059635487Z","message":"Request completed"} +{"level":"debug","transaction_id":"207","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.065737812Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"207","time":"2026-03-06T19:14:10.065816105Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$92kd8ZuOKm01aX5N9CUjmf4_NGPjpy9DXyGhsJ4NABY","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450065,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.066022629Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":672,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":129.828746,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.085165895Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":671,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449930767351_35?ts=1741969974466&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":169.491451,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"!!!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.10046323Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350144672781308005","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":182.950887,"event_ids":{"":"$tTXPzGmRep_6SVWfGBdqm0BqFGFDqr-e-lxhEflS9NM"},"time":"2026-03-06T19:14:10.100574Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":675,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":66.660639,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.10432774Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970063195508851","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:10.10447385Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970063195508851","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":196.511734,"time":"2026-03-06T19:14:10.104593001Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":680,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":13.995126,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.115291853Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":681,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.299704,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.115423506Z","message":"Request completed"} +{"level":"debug","transaction_id":"208","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.120964928Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"208","time":"2026-03-06T19:14:10.12107039Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tTXPzGmRep_6SVWfGBdqm0BqFGFDqr-e-lxhEflS9NM","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450121,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.121264062Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":678,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.929696,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.149912507Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":674,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824449998254362_28?ts=1772720443045&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":159.900786,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"von deinem Server","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.158275835Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121486143946763","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":173.399962,"event_ids":{"":"$_eZerCjsG6-1-EGGZBFgcocBxVbomS469mpU0oCdjXk"},"time":"2026-03-06T19:14:10.15838437Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":685,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.958809,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.173951854Z","message":"Request completed"} +{"level":"debug","transaction_id":"209","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.180902483Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"209","time":"2026-03-06T19:14:10.18097938Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_eZerCjsG6-1-EGGZBFgcocBxVbomS469mpU0oCdjXk","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450181,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.181155382Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":683,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":186.723276,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.302506469Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":684,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":193.713086,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.343806555Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471884388127080458","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:10.343905312Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1471884388127080458","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":293.25384,"time":"2026-03-06T19:14:10.343972081Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":688,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.193819,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.351697051Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":682,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824450115527501_7?ts=1741970052298&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":262.905226,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"danke!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.378613409Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350144999232110615","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":277.753754,"event_ids":{"":"$LN-jHFw2YZlk-KdmkbtVygXnV6oIPqCGHkRTGMW6lRM"},"time":"2026-03-06T19:14:10.378726204Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":690,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":16.270167,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.395761562Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":687,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":96.064358,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.398774346Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970117230461000","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:10.398871427Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970117230461000","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":294.153479,"time":"2026-03-06T19:14:10.398960546Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":692,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":15.437089,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.414931578Z","message":"Request completed"} +{"level":"debug","transaction_id":"210","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.417594383Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"210","time":"2026-03-06T19:14:10.41769747Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LN-jHFw2YZlk-KdmkbtVygXnV6oIPqCGHkRTGMW6lRM","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450417,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.417916496Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":679,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":340.597515,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_769998429991600219:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.425926073Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":689,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":113.191488,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.46520709Z","message":"Request completed"} +{"level":"debug","transaction_id":"211","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.470803897Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"211","time":"2026-03-06T19:14:10.471155832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":686,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824450174116053_29?ts=1772720451532&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":303.36504,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Der Federation-Tester testet ob dein Server erreichbar ist","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.477633629Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121521741135932","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":319.059079,"event_ids":{"":"$ibcDqKpQ5Oy_wwfOc-DbvojzWrhm9C8OjVTi6GX28NQ"},"time":"2026-03-06T19:14:10.477772964Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":696,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.596673,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.489139997Z","message":"Request completed"} +{"level":"debug","transaction_id":"212","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.502083299Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"212","time":"2026-03-06T19:14:10.502182894Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ibcDqKpQ5Oy_wwfOc-DbvojzWrhm9C8OjVTi6GX28NQ","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450502,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.502408554Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":695,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":58.549441,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.52401341Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472681415882575997","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:10.524136333Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472681415882575997","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":180.04992,"time":"2026-03-06T19:14:10.52423048Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.168189,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.533036747Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":697,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":61.319035,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.550784916Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":691,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824450395980098_8?ts=1741970279741&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":160.416012,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"warum ist freigeschalten falsch?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.556546341Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350145953197330472","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":177.477631,"event_ids":{"":"$TrQIDNPddd3iuIs9mNOr7fsaOVJTnfBuVI6vmfXRYbc"},"time":"2026-03-06T19:14:10.556627777Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":693,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824450415177144_36?ts=1733345292744&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":143.425004,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"\"ist ja ganz einfach\"","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u0026quot;ist ja ganz einfach\u0026quot;","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.558784086Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970135735992452","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":159.716053,"event_ids":{"":"$-nZwYVRP6xX94efOymc7lMCuIDPZQV0TE3i6hVZ7Z7Y"},"time":"2026-03-06T19:14:10.558867478Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":701,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.876182,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.569027217Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":702,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.156387,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.569514926Z","message":"Request completed"} +{"level":"debug","transaction_id":"213","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.576500336Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"213","time":"2026-03-06T19:14:10.576602446Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$TrQIDNPddd3iuIs9mNOr7fsaOVJTnfBuVI6vmfXRYbc","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450576,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.576770696Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"214","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.589397542Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"214","time":"2026-03-06T19:14:10.589486731Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-nZwYVRP6xX94efOymc7lMCuIDPZQV0TE3i6hVZ7Z7Y","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450589,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.589606929Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":699,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":58.697786,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.592027871Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":700,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":61.567044,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.612523632Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121614611284101","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:10.612650466Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121614611284101","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":134.543585,"time":"2026-03-06T19:14:10.612745242Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":706,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.589894,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.619951912Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":694,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":205.515166,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.631815523Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":704,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":73.285803,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.643060262Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":703,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":84.025233,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.65340236Z","message":"Request completed"} +{"level":"debug","transaction_id":"215","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.66480159Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"215","time":"2026-03-06T19:14:10.665025784Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":705,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":76.336791,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.668523343Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472681590902751516","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:10.668622519Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472681590902751516","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":144.256056,"time":"2026-03-06T19:14:10.668765067Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":711,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":5.359553,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.674693066Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":707,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":65.868837,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.686180926Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":709,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.233676,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.693455204Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970140576223263","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:10.693555288Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970140576223263","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":134.498817,"time":"2026-03-06T19:14:10.693638819Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":714,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.259122,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.701482451Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":708,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":75.250744,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.707564941Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":713,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":40.129041,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.726575577Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121629803184309","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:10.726669515Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121629803184309","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":113.746246,"time":"2026-03-06T19:14:10.726736214Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":717,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":5.598274,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.732821498Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":715,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":47.98734,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:10.749858114Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":712,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824450674886738_29?ts=1771185235828&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":83.788678,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yes","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.758826415Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472682360372727940","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":89.925365,"event_ids":{"":"$2T0_vBWkWUbYsjbD3fcn0hDeN8eR_JFUnF5iQXtVj_4"},"time":"2026-03-06T19:14:10.758918048Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":720,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":8.9199,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.768444528Z","message":"Request completed"} +{"level":"debug","transaction_id":"216","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.785596453Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"216","time":"2026-03-06T19:14:10.785698702Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2T0_vBWkWUbYsjbD3fcn0hDeN8eR_JFUnF5iQXtVj_4","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450785,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.785897822Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":710,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":150.882757,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.804419703Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":719,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":76.135645,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.826162148Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970167964893275","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:10.826272988Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970167964893275","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":132.510618,"time":"2026-03-06T19:14:10.826385923Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"217","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.83300075Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"217","time":"2026-03-06T19:14:10.83329311Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":723,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":8.227624,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.835105655Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":718,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824450733026485_30?ts=1772720484957&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":137.859625,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ja was meintest du dann mit dem Fragezeichen?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.871009661Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121661935485061","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":144.135718,"event_ids":{"":"$bOhkfBvN0K47a5ktpU1XogHURJECZo3-0tezXf1oUqo"},"time":"2026-03-06T19:14:10.871062881Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":725,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.406915,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.884875788Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":716,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":183.446348,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_428870593358594048:matrix.theocloud.dev"},"time":"2026-03-06T19:14:10.891150414Z","message":"Request completed"} +{"level":"debug","transaction_id":"218","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.903531905Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"218","time":"2026-03-06T19:14:10.903644421Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bOhkfBvN0K47a5ktpU1XogHURJECZo3-0tezXf1oUqo","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450903,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:10.903793185Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"219","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.930435622Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"219","time":"2026-03-06T19:14:10.930709962Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":721,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824450768614454_30?ts=1771185239012&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":172.337313,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/sleeping-cat-gif-2268097779864616291","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":444,"mimetype":"video/mp4","size":81020,"w":360},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/ZJZFsykEJxAeXzrZAHbLUIOX"},"time":"2026-03-06T19:14:10.941151935Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472682373727387809","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":182.05977,"event_ids":{"video_https://tenor.com/view/sleeping-cat-gif-2268097779864616291":"$kdeTEeUY73IXTkSbdk-NZgosCwtdLHw1njDUsqnjep4"},"time":"2026-03-06T19:14:10.94126445Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"220","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:10.959850446Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"220","time":"2026-03-06T19:14:10.959951438Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kdeTEeUY73IXTkSbdk-NZgosCwtdLHw1njDUsqnjep4","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824450960,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:10.96013645Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":724,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824450835291645_37?ts=1733345306213&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":144.19669,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"seit 2 stunden mache ich die scheiße","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:10.97965896Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970192228810833","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":153.159823,"event_ids":{"":"$bUNIZ1lRKBMNMCLZb4-ZeqGMzMmXr_4xFWM2Yf0lOoY"},"time":"2026-03-06T19:14:10.979745285Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.346637,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:10.989700527Z","message":"Request completed"} +{"level":"debug","transaction_id":"221","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.001428644Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"221","time":"2026-03-06T19:14:11.001524677Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bUNIZ1lRKBMNMCLZb4-ZeqGMzMmXr_4xFWM2Yf0lOoY","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451001,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.001654863Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":722,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":230.082241,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.034783478Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":726,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824450885053118_31?ts=1772720490254&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":152.707665,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hab ich vermutlich falsch verstanden","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.037922187Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121684152975370","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":166.768303,"event_ids":{"":"$uEibDwLLlCfXew8WMmJ2dPpN2Y6jtJLpQEE-yjXeBog"},"time":"2026-03-06T19:14:11.038019757Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":731,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.398748,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.05626618Z","message":"Request completed"} +{"level":"debug","transaction_id":"222","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.065621966Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"222","time":"2026-03-06T19:14:11.065734062Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uEibDwLLlCfXew8WMmJ2dPpN2Y6jtJLpQEE-yjXeBog","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451065,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.065951481Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"223","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.084990753Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"223","time":"2026-03-06T19:14:11.085252731Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":729,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":107.073938,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.097100348Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":727,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":222.95561,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.114448949Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":676,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":1090.712718,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<7862122 bytes>","time":"2026-03-06T19:14:11.130995272Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":732,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":80.92326,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.137622671Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":735,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.730769,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.141105494Z","message":"Request completed"} +{"level":"debug","transaction_id":"224","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.143344077Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"224","time":"2026-03-06T19:14:11.143595998Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":733,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":62.895234,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.160216423Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970305944780831","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:11.160396756Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970305944780831","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":180.435729,"time":"2026-03-06T19:14:11.160515558Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":738,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":13.680976,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.174824625Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":736,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":61.236621,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.199067073Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121731238105345","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:11.199186293Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121731238105345","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":160.7838,"time":"2026-03-06T19:14:11.199280929Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":730,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451035118650_1?ts=1742123260161&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":169.656557,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Endpräsi GrowGreen: https://docs.google.com/presentation/d/1423MRy1P19MJERcZZiVEWqUk9ZR3qtxlmxiO_YLnJO8/edit?usp=drivesdk","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.204949185Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350787599584985162","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":648.140517,"event_ids":{"":"$KRHiNlMJ8r_gpwZ4eusFl6rJ4cDd8cSWNiLZE0RKKz8"},"time":"2026-03-06T19:14:11.205033764Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":740,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.068389,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.211948285Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":741,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.645286,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.219207267Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":734,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":110.404434,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.22564707Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":737,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":87.283792,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.228768529Z","message":"Request completed"} +{"level":"debug","transaction_id":"225","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.23041031Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"225","time":"2026-03-06T19:14:11.230500896Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KRHiNlMJ8r_gpwZ4eusFl6rJ4cDd8cSWNiLZE0RKKz8","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451230,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.230642745Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":742,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":59.028349,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.271351826Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":745,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.785499,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.27972598Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478463616901582879","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"1478463615618121919","time":"2026-03-06T19:14:11.279824248Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478463616901582879","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":2222.977375,"time":"2026-03-06T19:14:11.279889061Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":747,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":6.497353,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.286837875Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":739,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451175092190_38?ts=1733345367045&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":124.764346,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"naja","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.300006278Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970447376973835","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":139.328058,"event_ids":{"":"$rNpb2esyFXYi33vJOTFTWxtFrMI_16K4aCGFSQrgtuc"},"time":"2026-03-06T19:14:11.300102451Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":749,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":10.134806,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.310949787Z","message":"Request completed"} +{"level":"debug","transaction_id":"226","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.319649755Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"226","time":"2026-03-06T19:14:11.31975389Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$rNpb2esyFXYi33vJOTFTWxtFrMI_16K4aCGFSQrgtuc","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451319,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.319972286Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":746,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":72.082631,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.343592789Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121744731312159","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:11.343674365Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121744731312159","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":144.245091,"time":"2026-03-06T19:14:11.343768792Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":743,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451219425664_20?ts=1742131897352&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":133.242075,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:11.352786052Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350823826589487196","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":147.573142,"event_ids":{"":"$nyebujAp7oc3ljitYaRL7-WnLpmfr5zFySgsSariaXI"},"time":"2026-03-06T19:14:11.352889349Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":751,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.882893,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.362191496Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":752,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":14.330927,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.367925613Z","message":"Request completed"} +{"level":"debug","transaction_id":"227","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.375272736Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"227","time":"2026-03-06T19:14:11.375398592Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nyebujAp7oc3ljitYaRL7-WnLpmfr5zFySgsSariaXI","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451375,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:11.375619503Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":744,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":190.844875,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_1142482369744482355:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.416705732Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":748,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451287033084_21?ts=1772569682277&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":158.937033,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:11.446096321Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478489149651554375","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":166.108224,"event_ids":{"":"$nCjIEUKVxz6K_6tpYYgGrzDt8IsakeZwWyiG0E_aptU"},"time":"2026-03-06T19:14:11.446195986Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":753,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.827656,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.452429056Z","message":"Request completed"} +{"level":"debug","transaction_id":"228","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.455267095Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"228","time":"2026-03-06T19:14:11.455629087Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":756,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.352088,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.460497161Z","message":"Request completed"} +{"level":"debug","transaction_id":"229","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.480187851Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"229","time":"2026-03-06T19:14:11.480318037Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nCjIEUKVxz6K_6tpYYgGrzDt8IsakeZwWyiG0E_aptU","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451480,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:11.480529519Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":750,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451311128095_39?ts=1733345371108&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":177.263704,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"macht spaß aber","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.488545242Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970464418173009","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":188.161886,"event_ids":{"":"$C-TujfTGxuuEoEd6I1g9chXoXj4TSz5bjF67xeakpXw"},"time":"2026-03-06T19:14:11.488648888Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":759,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.255705,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.501710433Z","message":"Request completed"} +{"level":"debug","transaction_id":"230","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.512515375Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"230","time":"2026-03-06T19:14:11.512619999Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$C-TujfTGxuuEoEd6I1g9chXoXj4TSz5bjF67xeakpXw","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451512,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.512852713Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":757,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":81.919909,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.534541031Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121759675355357","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:11.534640765Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121759675355357","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":190.761344,"time":"2026-03-06T19:14:11.534739033Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":761,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":10.847826,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.546532593Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":754,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451368151902_9?ts=1742131932554&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":187.000479,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"omg mein mikro geht nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.555318047Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350823974237503568","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":202.159805,"event_ids":{"":"$6H-5Gy0OciGyl4ZPw0AF2pPKwbRPu5Aj7QkbS-OdIZk"},"time":"2026-03-06T19:14:11.555415477Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":764,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":10.642001,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.566601199Z","message":"Request completed"} +{"level":"debug","transaction_id":"231","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.57164318Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"231","time":"2026-03-06T19:14:11.571789709Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6H-5Gy0OciGyl4ZPw0AF2pPKwbRPu5Aj7QkbS-OdIZk","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451572,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.572081719Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":760,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":92.642507,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.594785333Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":763,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":51.249462,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1543327 bytes>","time":"2026-03-06T19:14:11.601911545Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":767,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.026131,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.612248335Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":758,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451460665410_22?ts=1772569693774&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":157.017768,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wtf","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.617855689Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478489197873594379","message_type":19,"author_id":"316966695430520833","action":"discord message create","handling_time":171.386271,"event_ids":{"":"$1ml1XLMFrOIQ5_gGMK9UynXuJaEi0eA42j1ruz5dSQI"},"time":"2026-03-06T19:14:11.617974351Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"232","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.640912286Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"232","time":"2026-03-06T19:14:11.641014604Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1ml1XLMFrOIQ5_gGMK9UynXuJaEi0eA42j1ruz5dSQI","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451641,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.641256189Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":755,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":246.480638,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.663554089Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":766,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":86.11156,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.681087772Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970498463469578","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:11.681183176Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970498463469578","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":192.213154,"time":"2026-03-06T19:14:11.681291013Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.279657,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.690153433Z","message":"Request completed"} +{"level":"debug","transaction_id":"233","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.691871482Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"233","time":"2026-03-06T19:14:11.692139048Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":762,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451547555153_32?ts=1772720509402&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":152.124133,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Port nicht offen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.70126184Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121764465377332","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":166.398557,"event_ids":{"":"$4nsp7kFXNFJHiJIqmwOpK8xpAhNC5t7Tn2vMGWNpIlk"},"time":"2026-03-06T19:14:11.701386509Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":768,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":102.705586,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.715345875Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":773,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.143821,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.717201304Z","message":"Request completed"} +{"level":"debug","transaction_id":"234","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.728221849Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"234","time":"2026-03-06T19:14:11.728284358Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4nsp7kFXNFJHiJIqmwOpK8xpAhNC5t7Tn2vMGWNpIlk","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451728,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.728486691Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":765,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451566840688_10?ts=1742131934976&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":168.716202,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hihi","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.735730518Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350823984396107880","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":180.143578,"event_ids":{"":"$gjQ8Qn0pKQHDGlOH6KZBCDwcIRmRg9O4qkkUOIJWbKQ"},"time":"2026-03-06T19:14:11.735842056Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"235","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.757564596Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"235","time":"2026-03-06T19:14:11.757655461Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gjQ8Qn0pKQHDGlOH6KZBCDwcIRmRg9O4qkkUOIJWbKQ","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451757,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.757890131Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":772,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":81.407686,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.771960407Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":774,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":65.0704,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.780576704Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472686522913263706","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"1472686522921910476","time":"2026-03-06T19:14:11.780660654Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472686522913263706","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":839.14128,"time":"2026-03-06T19:14:11.780765906Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":777,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.867237,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.7881571Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":770,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824451663984527_9?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":153.486964,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.817589245Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","action":"initial backfill","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:11.818048457Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":776,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":58.516964,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.830690111Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970570790174935","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:11.830784258Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970570790174935","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":149.312843,"time":"2026-03-06T19:14:11.830868278Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":780,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":7.80927,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.839242292Z","message":"Request completed"} +{"level":"debug","transaction_id":"236","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.845162329Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"236","event_id":"$0ItFEcQeZup5oGsfeSfMnkHxIhd-MWJIgCVFi1_RmZg","time":"2026-03-06T19:14:11.845268839Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"236","time":"2026-03-06T19:14:11.845310395Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":769,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":193.587719,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<175914 bytes>","time":"2026-03-06T19:14:11.847918024Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":775,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451717452666_33?ts=1772720515441&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":132.802559,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Man kann ja nicht mit dem Port kommunizieren","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.850436675Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121789794648227","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":148.774988,"event_ids":{"":"$YzUdkl5dVEBAyySOxwjP1xwlaY6JFlMSko4h3oJm0lg"},"time":"2026-03-06T19:14:11.850545629Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":782,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":8.77882,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.857021331Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":783,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":8.871011,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.860132173Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":778,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":82.313958,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:11.870791006Z","message":"Request completed"} +{"level":"debug","transaction_id":"237","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.873465125Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"237","time":"2026-03-06T19:14:11.873534199Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YzUdkl5dVEBAyySOxwjP1xwlaY6JFlMSko4h3oJm0lg","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451873,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.873738069Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":779,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":77.691311,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:11.895869186Z","message":"Request completed"} +{"level":"info","channel_id":"1477033040331935974","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:11.896559576Z","message":"Creating Matrix room for channel"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"","old_name":"","new_name":"Rentnerverein 2.0","time":"2026-03-06T19:14:11.896631654Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:11.896685502Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":786,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":33.740921,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:11.904780566Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472686588323561595","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:11.904896853Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472686588323561595","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":124.024647,"time":"2026-03-06T19:14:11.904993864Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":781,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451839449165_40?ts=1733345402772&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":88.463288,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"nana","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.928160881Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970597226872842","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":97.187211,"event_ids":{"":"$WWf0BljaHQgZWRrvb4KIvP90usY51hLcbgM5gWIga94"},"time":"2026-03-06T19:14:11.928284362Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":788,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":11.176643,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.940133306Z","message":"Request completed"} +{"level":"debug","transaction_id":"238","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.959380498Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"238","time":"2026-03-06T19:14:11.959492456Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$WWf0BljaHQgZWRrvb4KIvP90usY51hLcbgM5gWIga94","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451959,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.959691855Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":789,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":32.123585,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<76609 bytes>","time":"2026-03-06T19:14:11.963314432Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":784,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451857170304_23?ts=1772569961097&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":108.582879,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://anilist.co/anime/195600/Daemons-of-the-Shadow-Realm/","com.beeper.linkpreviews":[{"og:title":"Daemons of the Shadow Realm","og:description":"In a remote mountain village under the watchful eyes of two stone guardians, the young Yuru contentedly lives off the land while staying close to the only family he has left—Asa, his precious twin sister. Asa, meanwhile, carries out a mysterious “duty” on behalf of the village while locked in a cage. Why is Asa a prisoner? And what other s...","og:image":"mxc://matrix.theocloud.dev/cufZhvzDAEjTuMaSLijONmFJ","matrix:image:size":175914,"og:image:width":1200,"og:image:height":630,"og:image:type":"image/jpeg","matched_url":"https://anilist.co/anime/195600/Daemons-of-the-Shadow-Realm/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.965901318Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478490319107395634","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":347.639218,"event_ids":{"":"$PX4ZTNI9mX3eGr8O9-85I1B_nOY_aUl-u8rzI8p7uPw"},"time":"2026-03-06T19:14:11.966005174Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":785,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451860315090_34?ts=1772720520748&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":107.735483,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"weil deine Firewall nicht reinlässt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:11.968216868Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121812054081546","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":117.370778,"event_ids":{"":"$tMm_lSxBCcCvL9Ag-XW5lWrdqUL0SzW9oLEno2nZL3E"},"time":"2026-03-06T19:14:11.96830899Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":791,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.742853,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.974523342Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":792,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":8.3891,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:11.977406569Z","message":"Request completed"} +{"level":"debug","transaction_id":"239","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.982624203Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"239","time":"2026-03-06T19:14:11.982705289Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$PX4ZTNI9mX3eGr8O9-85I1B_nOY_aUl-u8rzI8p7uPw","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451982,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.982855031Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"240","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:11.991451562Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"240","time":"2026-03-06T19:14:11.991558421Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tMm_lSxBCcCvL9Ag-XW5lWrdqUL0SzW9oLEno2nZL3E","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824451991,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:11.99174015Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":793,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":57.147847,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.032007759Z","message":"Request completed"} +{"level":"debug","transaction_id":"241","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.049123505Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"241","time":"2026-03-06T19:14:12.049213183Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":790,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451940328236_41?ts=1733345407275&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":121.573185,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich mach das doch gerne","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:12.063737922Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970616113565727","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":135.188858,"event_ids":{"":"$-zbVe_xCa3lj3h_o2a4j4xIKo9q2bIt0ZJVWkqsVTq0"},"time":"2026-03-06T19:14:12.063863359Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":797,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.188101,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.07982182Z","message":"Request completed"} +{"level":"debug","transaction_id":"242","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.085996991Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"242","time":"2026-03-06T19:14:12.086099798Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-zbVe_xCa3lj3h_o2a4j4xIKo9q2bIt0ZJVWkqsVTq0","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824452086,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:12.086317287Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":796,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":106.161798,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.138407858Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472686627926315162","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"video_https://tenor.com/view/sea-lion-but-not-seal-funny-meme-dance-funny-pumped-gif-11824076845367848416","time":"2026-03-06T19:14:12.138510875Z","message":"Failed to send part of message to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":794,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824451977570279_35?ts=1772720529173&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":160.834855,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bzw. der Federationtester kann damit auch nicht kommunizieren","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:12.138575549Z","message":"Request completed"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472686627926315162","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":233.358609,"time":"2026-03-06T19:14:12.138605582Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121847391096994","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":170.00542,"event_ids":{"":"$SmL3jTSnl3mnE0C9n1tKOCQ4JShADEvLwlE7NfCtTik"},"time":"2026-03-06T19:14:12.138674376Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":800,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.000148,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.147464929Z","message":"Request completed"} +{"level":"debug","transaction_id":"243","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.152280202Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"243","time":"2026-03-06T19:14:12.152372044Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SmL3jTSnl3mnE0C9n1tKOCQ4JShADEvLwlE7NfCtTik","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824452152,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:12.152580523Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":795,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":185.337326,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<170021 bytes>","time":"2026-03-06T19:14:12.175200885Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":799,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":97.114226,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.177273454Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":802,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":9.820936,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.185497306Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":801,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":63.292147,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.21112745Z","message":"Request completed"} +{"level":"debug","transaction_id":"244","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.257878303Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"244","time":"2026-03-06T19:14:12.258171012Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":803,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":85.305232,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.262754268Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970767079276706","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.262836333Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1313970767079276706","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":198.61161,"time":"2026-03-06T19:14:12.262916093Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","action":"initial backfill","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:12.28191311Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","action":"initial backfill","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","limit":100,"before_id":"1402217608442281996","time":"2026-03-06T19:14:12.281974361Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":510,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s659_891_0_353_368_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":4543.180095,"status_code":200,"response_length":207,"response_mime":"application/json","time":"2026-03-06T19:14:12.287142198Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:12.287418","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:12.287445313Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:12.287418","time":"2026-03-06T19:14:12.287606788Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":805,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":80.624125,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.291920733Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121899123507282","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.291995464Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121899123507282","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":152.944918,"time":"2026-03-06T19:14:12.29205071Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":807,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.562586,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.29910708Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":804,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452185690560_24?ts=1772570019500&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":127.798014,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://anilist.co/anime/178025/Gachiakuta/","com.beeper.linkpreviews":[{"og:title":"Gachiakuta","og:description":"A boy lives in a floating town, where the poor scrape by and the rich live a sumptuous life, simply casting their garbage off the side, into the abyss. When he’s falsely accused of murder, though, his wrongful conviction leads to an unimaginable punishment—exile off the edge, with the rest of the trash. Down on the surface, the cast-off wast...","og:image":"mxc://matrix.theocloud.dev/oTwuQRlfYkWgIPqDRkwNlGcZ","matrix:image:size":170021,"og:image:width":1200,"og:image:height":630,"og:image:type":"image/jpeg","matched_url":"https://anilist.co/anime/178025/Gachiakuta/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:12.313649001Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478490564067590366","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":347.461678,"event_ids":{"":"$31i5PyzrYMnAYDv8sdkNnViWsRDiRise2puxCm8djwQ"},"time":"2026-03-06T19:14:12.313749783Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":809,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.35299,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.321793932Z","message":"Request completed"} +{"level":"debug","transaction_id":"245","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.325326203Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"245","time":"2026-03-06T19:14:12.325431315Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$31i5PyzrYMnAYDv8sdkNnViWsRDiRise2puxCm8djwQ","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824452325,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:12.325575609Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":808,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":39.545579,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.338977286Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":810,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":38.962326,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.361088149Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":787,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":469.421999,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Rentnerverein 2.0","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1477033040331935974","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1477033040331935974","displayname":"Rentnerverein 2.0","external_url":"https://discord.com/channels/@me/1477033040331935974"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"state_key":"fi.mau.discord://discord/dm/1477033040331935974","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1477033040331935974","displayname":"Rentnerverein 2.0","external_url":"https://discord.com/channels/@me/1477033040331935974"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}}],"preset":"private_chat","room_version":"11"},"time":"2026-03-06T19:14:12.36659898Z","message":"Request completed"} +{"level":"info","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","time":"2026-03-06T19:14:12.367405518Z","message":"Matrix room created"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":811,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":47.853871,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.387016728Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121940802437221","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.387132177Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121940802437221","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":94.973561,"time":"2026-03-06T19:14:12.387216966Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"246","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.393955344Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"246","time":"2026-03-06T19:14:12.394210338Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":814,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.346636,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.396216696Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":798,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":333.915009,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<208211 bytes>","time":"2026-03-06T19:14:12.403059628Z","message":"Request completed"} +{"level":"debug","transaction_id":"247","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.411972405Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"247","time":"2026-03-06T19:14:12.412173481Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":816,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":10.570482,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.413925683Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":812,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":63.749335,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.425006502Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478719033997135966","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.425107075Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1478719033997135966","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":111.029802,"time":"2026-03-06T19:14:12.425171958Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":818,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.110498,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.432811651Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":815,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":54.943975,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.45147119Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":819,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":70.169582,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.503443029Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":813,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":146.194038,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:12.513879135Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":821,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":83.074052,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.534741778Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121980530884680","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.534815531Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479121980530884680","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":147.405102,"time":"2026-03-06T19:14:12.534884046Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":824,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.59695,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.543928475Z","message":"Request completed"} +{"level":"debug","transaction_id":"248","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.545734735Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"248","time":"2026-03-06T19:14:12.545911925Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":817,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452414134092_31?ts=1742131989842&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":149.514058,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":776,"mimetype":"image/png","size":208211,"w":1383},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/yJWTfzsFnjfQJcllrjksZSuB"},"time":"2026-03-06T19:14:12.563896369Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1350824214520926228","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":827.808539,"event_ids":{"1350824214168473722":"$eCcEgDyB_RtypEEpKr5F9Dgc2u3s22fFaS6KyeCwGrk"},"time":"2026-03-06T19:14:12.564030955Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":822,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":79.490167,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.583166819Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479123437841551370","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.583325221Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479123437841551370","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":158.11024,"time":"2026-03-06T19:14:12.583507369Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"249","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.584394436Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"249","time":"2026-03-06T19:14:12.584521479Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eCcEgDyB_RtypEEpKr5F9Dgc2u3s22fFaS6KyeCwGrk","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824452584,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:12.58473778Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":826,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.017544,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.597346328Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","action":"initial backfill","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:12.60803198Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","action":"initial backfill","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:12.608094489Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","action":"initial backfill","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:12.608137721Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":825,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":66.529894,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.610884686Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":828,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":6.247527,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"discord_1211781489931452447","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:12.614795292Z","message":"Request completed"} +{"level":"debug","discord_user_id":"1211781489931452447","message_id":"1396837117304504452","application_id":"1211781489931452447","time":"2026-03-06T19:14:12.61503953Z","message":"Found application ID in message, marking ghost as an application"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":830,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_1211781489931452447:matrix.theocloud.dev/displayname?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":5.464386,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:14:12.620692072Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":820,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":187.772515,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<169117 bytes>","time":"2026-03-06T19:14:12.633202492Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":832,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.422836,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.643978869Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":827,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":46.179823,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.64400038Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":829,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":42.167666,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.653272076Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122049799557180","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.653363499Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122049799557180","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":118.351572,"time":"2026-03-06T19:14:12.653412459Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":831,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_1211781489931452447:matrix.theocloud.dev/displayname?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":36.578402,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wordle (bot)"},"time":"2026-03-06T19:14:12.657408971Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":836,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":8.574042,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.662403738Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":823,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":172.35149,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:12.686725387Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":834,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":44.49446,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.688623839Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479123452580593917","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.688688722Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479123452580593917","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":104.971407,"time":"2026-03-06T19:14:12.688728392Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":833,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":61.486377,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2167115 bytes>","time":"2026-03-06T19:14:12.700036828Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":840,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.751167,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.702849514Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":835,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":63.15379,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.70741992Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":841,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":13.58145,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.714150336Z","message":"Request completed"} +{"level":"debug","transaction_id":"250","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.720902334Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"250","time":"2026-03-06T19:14:12.721256504Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":838,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":60.144428,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1849 bytes>","time":"2026-03-06T19:14:12.741279922Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":845,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_1211781489931452447:matrix.theocloud.dev/avatar_url?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":7.298164,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:12.749020746Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":843,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":54.744227,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.762358308Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395280177663315968","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.762446658Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395280177663315968","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":499.378868,"time":"2026-03-06T19:14:12.762511961Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":846,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_1211781489931452447:matrix.theocloud.dev/avatar_url?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":18.189012,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir"},"time":"2026-03-06T19:14:12.767346859Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":847,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.872895,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.769885065Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":837,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452662607398_36?ts=1772720584631&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":122.112856,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Kann ich dir nicht sagen, ist mir auch technisch gesehen egal.\n\nDer Federation-Tester kann ja auch nicht mit deinem Server kommunizieren","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eKann ich dir nicht sagen, ist mir auch technisch gesehen egal.\u003c/p\u003e\n\u003cp\u003eDer Federation-Tester kann ja auch nicht mit deinem Server kommunizieren\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:12.784895627Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122079998804029","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":131.428412,"event_ids":{"":"$vSPw8SRFAeOCRJURWeqELga8dZlkaUwjqOHjiQ5FUv0"},"time":"2026-03-06T19:14:12.784986702Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":839,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/join?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":99.612622,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.786981466Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":849,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":6.717495,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.792308193Z","message":"Request completed"} +{"level":"debug","transaction_id":"251","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.810212389Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"251","time":"2026-03-06T19:14:12.810327209Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vSPw8SRFAeOCRJURWeqELga8dZlkaUwjqOHjiQ5FUv0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824452810,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:12.810581994Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":842,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452703063650_25?ts=1772724105937&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":126.000065,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hääää","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:12.829212479Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479136849426645035","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":140.413685,"event_ids":{"":"$VUQmd93Vor5OuSquVTwshseIKLCau8tydA3tGoOjaos"},"time":"2026-03-06T19:14:12.829284067Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":844,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452714389755_32?ts=1771186829791&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":119.585336,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"tCVpypD.pdf","info":{"mimetype":"application/pdf","size":2167115},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/MnFzuXWmOmhInhRtfzRtuLIV"},"time":"2026-03-06T19:14:12.834181684Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472689045938376785","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":695.424335,"event_ids":{"1472689045984378990":"$n46n5Sdzea44HgOc5RAZPlUsBen-aLwR9x9tgEsdWJE"},"time":"2026-03-06T19:14:12.83429378Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":852,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":12.66973,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.842555907Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":848,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":77.805224,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:12.84792873Z","message":"Request completed"} +{"level":"debug","transaction_id":"252","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.8497836Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"252","time":"2026-03-06T19:14:12.849889341Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$VUQmd93Vor5OuSquVTwshseIKLCau8tydA3tGoOjaos","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824452850,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:12.850109274Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"253","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.867382515Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"253","time":"2026-03-06T19:14:12.867482739Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$n46n5Sdzea44HgOc5RAZPlUsBen-aLwR9x9tgEsdWJE","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824452867,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:12.867706513Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":855,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":18.807396,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<155047 bytes>","time":"2026-03-06T19:14:12.879160919Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":857,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":5.540374,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.88521177Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":854,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":51.759938,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.899909369Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395280222198435921","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:12.900016926Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395280222198435921","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":137.376805,"time":"2026-03-06T19:14:12.900102343Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":7.928072,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.908602422Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":851,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452792561022_37?ts=1772720589624&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":129.059922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bei nope.chat kommt success","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:12.921817969Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122100940967987","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":136.649469,"event_ids":{"":"$FoNo0bR5JjrfjGgYIctZ3mLLorM1i-6x0Xb1bPogdG8"},"time":"2026-03-06T19:14:12.921966873Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":861,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":8.93778,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.931702601Z","message":"Request completed"} +{"level":"debug","transaction_id":"254","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:12.945020746Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"254","time":"2026-03-06T19:14:12.945136265Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FoNo0bR5JjrfjGgYIctZ3mLLorM1i-6x0Xb1bPogdG8","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824452945,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:12.945318483Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":853,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452842780589_26?ts=1772724111226&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":132.364648,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bei uns dauerhaft","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:12.975299868Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479136871610323075","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":145.794401,"event_ids":{"":"$4s3VX3sTMLd0jmCHb4t4Q0h_LQNYzGDhd75UlzDpdKE"},"time":"2026-03-06T19:14:12.975392897Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":856,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":116.542099,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26300 bytes>","time":"2026-03-06T19:14:12.977619328Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":863,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.601214,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.9884733Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":850,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":205.58871,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_122672447207112706:matrix.theocloud.dev"},"time":"2026-03-06T19:14:12.992729834Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":864,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":15.866967,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:12.993761614Z","message":"Request completed"} +{"level":"debug","transaction_id":"255","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.0026966Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"255","time":"2026-03-06T19:14:13.002779992Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4s3VX3sTMLd0jmCHb4t4Q0h_LQNYzGDhd75UlzDpdKE","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453002,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.002953759Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"256","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.022380236Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"256","time":"2026-03-06T19:14:13.022717854Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":858,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452885448954_33?ts=1771186846452&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":154.513923,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/github-merge-request-pull-request-git-github-meme-gif-13623528908496907544","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":498,"mimetype":"video/mp4","size":155047,"w":400},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/CmeLwrZVMHEKbujpYWGXsDoh"},"time":"2026-03-06T19:14:13.040219479Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472689115819413727","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":205.677968,"event_ids":{"video_https://tenor.com/view/github-merge-request-pull-request-git-github-meme-gif-13623528908496907544":"$rRnCVrNjWez41rqPlAeu8hN_ocZsG18CE74MsDJaK0c"},"time":"2026-03-06T19:14:13.040355531Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":869,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.551972,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.04962136Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":860,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452908776120_42?ts=1752741430127&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":155.206549,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das ist krass","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.06414184Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395323432345927773","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":163.906935,"event_ids":{"":"$-grS2pAuwuEfyASvDiKM1dFhkhPQPitj_4HtqUQsBJg"},"time":"2026-03-06T19:14:13.064258895Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"257","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.069857169Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"257","time":"2026-03-06T19:14:13.069976599Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$rRnCVrNjWez41rqPlAeu8hN_ocZsG18CE74MsDJaK0c","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453070,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:13.07014457Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":865,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":86.547445,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.075264355Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":871,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":13.803689,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.078738168Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":862,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452931929169_38?ts=1772720591111&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":160.744549,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bei dir Error","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.092820317Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122107177766963","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":170.521414,"event_ids":{"":"$YMd6EWWNeSEsw5Scc4Kz_UErq3ecrHMY-bE8clBOAZ8"},"time":"2026-03-06T19:14:13.092928433Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"258","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.098816272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"258","time":"2026-03-06T19:14:13.098895893Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-grS2pAuwuEfyASvDiKM1dFhkhPQPitj_4HtqUQsBJg","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453099,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.099186366Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":868,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":95.561912,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32887 bytes>","time":"2026-03-06T19:14:13.101446461Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":874,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.974804,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.109651177Z","message":"Request completed"} +{"level":"debug","transaction_id":"259","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.130932594Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"259","time":"2026-03-06T19:14:13.131035262Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YMd6EWWNeSEsw5Scc4Kz_UErq3ecrHMY-bE8clBOAZ8","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453131,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.131247024Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":875,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":49.73584,"status_code":403,"response_length":143,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.151781129Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":867,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824452993874549_27?ts=1742197867853&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":170.259785,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hattet ihr mehr im 2 Phasen Modell bei Phase 2?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.164281491Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":870,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":117.717614,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.167660598Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":872,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":96.030134,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.17151086Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141370534039706","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:13.171605008Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141370534039706","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":196.039949,"time":"2026-03-06T19:14:13.171705092Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":878,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":16.345596,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.180840735Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":880,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.747118,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.186973511Z","message":"Request completed"} +{"level":"debug","transaction_id":"260","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.194156715Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"260","time":"2026-03-06T19:14:13.194257707Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$B2PxQbidAY8bTiMTif1cmrwVE0jOvRCX6ZLdx2wzvfI","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453194,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.194493983Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"261","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:13.222676231Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"261","time":"2026-03-06T19:14:13.222767795Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":866,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/join?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":262.581297,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.255574925Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":879,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":98.070086,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.265903823Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691377375543467","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:13.265997621Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691377375543467","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":225.307057,"time":"2026-03-06T19:14:13.266056848Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":873,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453078926951_43?ts=1752741455308&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":206.665188,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Aber Counter Strike wirklich competitive zu spielen weiß ich nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.285718413Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395323537962696798","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":221.199565,"event_ids":{"":"$w0lqCjyiCAIEbUrsHSnaj4NQbeiGP3VWElSoOuzaG48"},"time":"2026-03-06T19:14:13.285820942Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"262","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.294434235Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"262","time":"2026-03-06T19:14:13.294508617Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$w0lqCjyiCAIEbUrsHSnaj4NQbeiGP3VWElSoOuzaG48","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453294,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.294682245Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":882,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":112.236536,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.299502895Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":884,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":14.49799,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.300937315Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":877,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":150.87221,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.303029579Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":876,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453109827529_39?ts=1772720737029&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":206.403978,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"maybe bei cloudflare was einstellenß","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.316366232Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122719202082848","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":223.119668,"event_ids":{"":"$19XAywgaVKOBUl4TanrYyvu1oOHp1mfFfFZ85QIVgPo"},"time":"2026-03-06T19:14:13.316452138Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"263","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.321593783Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"263","time":"2026-03-06T19:14:13.321827895Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":888,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.912706,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.324957385Z","message":"Request completed"} +{"level":"debug","transaction_id":"264","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.344714565Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"264","time":"2026-03-06T19:14:13.344811925Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$19XAywgaVKOBUl4TanrYyvu1oOHp1mfFfFZ85QIVgPo","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453344,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.34502655Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":881,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453181056617_28?ts=1742197867853&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":181.787594,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Screenshot_2025-03-17_085039.jpg","info":{"h":292,"mimetype":"image/jpeg","size":26300,"w":948},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/iiQWTUxIrJdrNWIEfdLbsMCN"},"time":"2026-03-06T19:14:13.363031249Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1351100526925713418","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":798.680905,"event_ids":{"":"$B2PxQbidAY8bTiMTif1cmrwVE0jOvRCX6ZLdx2wzvfI","1351100526439301160":"$uLlaCOY_fPZkNepS6RI_7JWqQVOle3Dbc2uH-AuiZO0"},"time":"2026-03-06T19:14:13.363142438Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":890,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":14.802223,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.378679191Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":885,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":84.158702,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.383815249Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141546476703890","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:13.383896825Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141546476703890","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":212.049954,"time":"2026-03-06T19:14:13.383987969Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":892,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.282593,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.394747444Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":883,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":140.047432,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.396386222Z","message":"Request completed"} +{"level":"debug","transaction_id":"265","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.398734947Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"265","time":"2026-03-06T19:14:13.398834542Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uLlaCOY_fPZkNepS6RI_7JWqQVOle3Dbc2uH-AuiZO0","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453398,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:13.399037783Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":889,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":88.605836,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.413944001Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453301102352_44?ts=1752741470116&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":140.334065,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich behaupte es fehlt an Stabilität","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.441606692Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395323600071950389","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":155.551151,"event_ids":{"":"$MBKVbWWcjpNQ8aC-Xo8VKVpzCoo_hqUjtcQgzC3i_ag"},"time":"2026-03-06T19:14:13.441718789Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":896,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.178106,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.450573178Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":893,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":59.267489,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.45441464Z","message":"Request completed"} +{"level":"debug","transaction_id":"266","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.461834888Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"266","time":"2026-03-06T19:14:13.46193169Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MBKVbWWcjpNQ8aC-Xo8VKVpzCoo_hqUjtcQgzC3i_ag","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453462,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.462124454Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":895,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":66.36297,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.480489609Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122818439446589","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:13.480582359Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122818439446589","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":163.906446,"time":"2026-03-06T19:14:13.480672456Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":899,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.951397,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.488170298Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:13.493377037Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":887,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":205.262057,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_1211781489931452447:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.508485029Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":891,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453378883899_11?ts=1742233069642&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":130.270917,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"meinetwegen können wir die folien abgeben","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.5093612Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1351248173930381322","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":145.902307,"event_ids":{"":"$LAwKqF0wAr3cTd6AcHvhoQKNmZIrOW10HMwiTmAgaQg"},"time":"2026-03-06T19:14:13.509488033Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":10.948329,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.521153851Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":898,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":76.482482,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.531085486Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141600507592860","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:13.531170624Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141600507592860","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":147.061199,"time":"2026-03-06T19:14:13.53123425Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"267","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.534923596Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"267","time":"2026-03-06T19:14:13.535032759Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LAwKqF0wAr3cTd6AcHvhoQKNmZIrOW10HMwiTmAgaQg","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453535,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.535241378Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":904,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.872968,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.541655968Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":897,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":93.774999,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.544765833Z","message":"Request completed"} +{"level":"debug","transaction_id":"268","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.555630491Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"268","time":"2026-03-06T19:14:13.555930742Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":900,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":81.034518,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.569635534Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":894,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":193.473946,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_316966695430520833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.590052164Z","message":"Request completed"} +{"level":"debug","transaction_id":"269","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.63866543Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"269","time":"2026-03-06T19:14:13.63903315Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":906,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":98.709003,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.64368108Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395323614517137528","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:13.64376985Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395323614517137528","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":201.755419,"time":"2026-03-06T19:14:13.643848143Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":905,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":104.815379,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.646827263Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":909,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":8.048619,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.652409753Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":907,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":98.117788,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.667965643Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122835614994433","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:13.668061956Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122835614994433","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":187.264273,"time":"2026-03-06T19:14:13.668163087Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":912,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.880511,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.678607923Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":903,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453521387683_12?ts=1742239153812&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":178.178358,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hat jetzt jemand abgegeben?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.699733871Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1351273692788691026","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":189.930011,"event_ids":{"":"$06hWDVDQka7frVBDjojO-klUj5InsgaV61NSmzvkiPA"},"time":"2026-03-06T19:14:13.699827809Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":914,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.915087,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.714408841Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":910,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":78.108827,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.725092956Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141663279419442","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:13.725233479Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141663279419442","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":193.891113,"time":"2026-03-06T19:14:13.725347671Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"270","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.727692694Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"270","time":"2026-03-06T19:14:13.727863249Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$06hWDVDQka7frVBDjojO-klUj5InsgaV61NSmzvkiPA","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453727,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.728007193Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":916,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":10.445045,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.736571807Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":901,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/join?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":258.229218,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.767082665Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":913,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":90.990878,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.769924056Z","message":"Request completed"} +{"level":"debug","transaction_id":"271","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.803594996Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"271","time":"2026-03-06T19:14:13.803883165Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":911,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453652685141_45?ts=1752741500605&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":162.06764,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Halt mal einen Pixel angle wenn dein crosshairs nach Uganda geht weil du dein Controller bewegst","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.814940936Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395323727952085093","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":170.985655,"event_ids":{"":"$KOENAEEKYWk2rOpNn1rbxS0rLZyBZSDpcmsm9Z_ZLqM"},"time":"2026-03-06T19:14:13.81503229Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":921,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":13.305713,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.82890589Z","message":"Request completed"} +{"level":"debug","transaction_id":"272","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.841136313Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"272","time":"2026-03-06T19:14:13.84124366Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KOENAEEKYWk2rOpNn1rbxS0rLZyBZSDpcmsm9Z_ZLqM","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453841,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.84145598Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":919,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":89.637265,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:13.85977455Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122946722107445","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:13.859886018Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479122946722107445","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":191.556846,"time":"2026-03-06T19:14:13.859981912Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":908,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":275.219109,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.865663926Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":923,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.777429,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.875650527Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":920,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":92.164646,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<3708990 bytes>","time":"2026-03-06T19:14:13.884605978Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":926,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.057141,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.894047669Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":915,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453714667188_2?ts=1742239166779&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":187.166983,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"äh ne","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.902000395Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1351273747176226878","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":201.9185,"event_ids":{"":"$lUjoEggVeA4gH7VuD7TsMQYllxnkvbZt-KpXS1Vik9w"},"time":"2026-03-06T19:14:13.902083158Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"273","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.906909256Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"273","time":"2026-03-06T19:14:13.907174028Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":917,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453736833436_29?ts=1772725269211&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":178.066051,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"was das","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.915088829Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141728551174214","message_type":19,"author_id":"316966695430520833","action":"discord message create","handling_time":189.613137,"event_ids":{"":"$D5ZhExyxPjo3OyfkCLDi09W-bA8xuv89YOaoMVVlHZQ"},"time":"2026-03-06T19:14:13.915206583Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":928,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.831694,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.915514238Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":930,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.81563,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:13.927849214Z","message":"Request completed"} +{"level":"debug","transaction_id":"274","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:13.937937366Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"274","time":"2026-03-06T19:14:13.938061615Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$D5ZhExyxPjo3OyfkCLDi09W-bA8xuv89YOaoMVVlHZQ","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453938,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.938275332Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$lUjoEggVeA4gH7VuD7TsMQYllxnkvbZt-KpXS1Vik9w","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824453938,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:13.938280081Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":925,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.714232,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.965796035Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":918,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453767446124_1?ts=1753102320744&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":220.806633,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"alexx and 2 others were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"alexx and 2 others were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:13.988517179Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":927,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":100.015612,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:13.994460055Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":933,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":14.937786,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.003666169Z","message":"Request completed"} +{"level":"debug","transaction_id":"275","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.020795116Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"275","time":"2026-03-06T19:14:14.020916152Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$pE_tetVwqwlGsYkVR5OQBJsAXX4u1jKpMhxLzd5mruc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454021,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.021143489Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":922,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453829139652_46?ts=1752741508270&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":196.715253,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"vielleicht ich Probier mal aber","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.026022737Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1395323760101429349","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":210.80299,"event_ids":{"":"$5tPpUgJC2oss77OU7z2sbTAg3aZpX0VkkWIUO7FVCBc"},"time":"2026-03-06T19:14:14.026123449Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":936,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.262058,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.037270898Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":931,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":111.910861,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:14.040140296Z","message":"Request completed"} +{"level":"debug","transaction_id":"276","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.05731506Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"276","time":"2026-03-06T19:14:14.057444617Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5tPpUgJC2oss77OU7z2sbTAg3aZpX0VkkWIUO7FVCBc","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454057,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.057669788Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":932,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.08169,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:14.073081803Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479123188985368749","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:14.073195646Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479123188985368749","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":213.062107,"time":"2026-03-06T19:14:14.07328246Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":939,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.360819,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.087233935Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":924,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824453866038630_10?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":225.594317,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:14.091731914Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","action":"initial backfill","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:14.092147894Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":934,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":105.45255,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:14.10012283Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691472879980695","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"1472691473181839538","time":"2026-03-06T19:14:14.100214393Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691472879980695","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":834.035671,"time":"2026-03-06T19:14:14.100288635Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":942,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":15.276521,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.116097913Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":929,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824453915709447_3?ts=1742239168908&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":209.807319,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"du?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.125690743Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1351273756106035253","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":223.360484,"event_ids":{"":"$5gHSC0JWbjRAWv7-Q0rNsNSwGAqGNpv9rI_N81WSqMo"},"time":"2026-03-06T19:14:14.125810663Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"277","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.129573203Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"277","event_id":"$_tq5aHFCo1QEzyDtUF3DlzBMfMnrdH8sstD2Bg-ON4M","time":"2026-03-06T19:14:14.129666582Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"277","time":"2026-03-06T19:14:14.129712608Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":944,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":15.937508,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.142541718Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":938,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":109.584067,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:14.149936753Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141808725299410","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:14.150033555Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141808725299410","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":234.47804,"time":"2026-03-06T19:14:14.150119321Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"278","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.160735829Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"278","time":"2026-03-06T19:14:14.160852046Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5gHSC0JWbjRAWv7-Q0rNsNSwGAqGNpv9rI_N81WSqMo","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454161,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.161059827Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":946,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.021526,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.164928388Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":937,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":129.590234,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:14.167261608Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":935,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454003899861_2?ts=1753102320744&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":203.217845,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"3 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":32887,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AxoNRULFxpNDXcQWMkGAaBgA"},"time":"2026-03-06T19:14:14.207377798Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1396837117304504452","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":1599.209695,"event_ids":{"":"$pE_tetVwqwlGsYkVR5OQBJsAXX4u1jKpMhxLzd5mruc","1396839303694258276":"$ejFQ56_JYiwi3eQBIyjWyxXY6tLfIkf5WkA6n4SgE0s"},"time":"2026-03-06T19:14:14.207498835Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":949,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":12.198434,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.220486696Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":941,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":139.426814,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:14.231662221Z","message":"Request completed"} +{"level":"info","channel_id":"1472910535170199644","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:14.232669276Z","message":"Creating Matrix room for channel"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"","old_name":"","new_name":"Vortrag IT-Management","time":"2026-03-06T19:14:14.232763563Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:14.232824186Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","transaction_id":"279","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.240589804Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"279","time":"2026-03-06T19:14:14.24070239Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ejFQ56_JYiwi3eQBIyjWyxXY6tLfIkf5WkA6n4SgE0s","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454240,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:14.240889986Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":948,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":90.046541,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:14.257522355Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409886685923119207","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:14.257612451Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409886685923119207","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":231.037402,"time":"2026-03-06T19:14:14.257712465Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":952,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.332811,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.270575169Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":940,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454087464833_40?ts=1772721208343&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":184.480082,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"weißt du wie?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.272095216Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479124696036540657","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":198.668252,"event_ids":{"":"$2ZsyIIUYE_bcg2xDKN4KO9GW0unh8y1ZHrddleIhSyk"},"time":"2026-03-06T19:14:14.272213528Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":954,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.422765,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.282272276Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":943,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454116311700_34?ts=1771187411973&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":174.799949,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.291281924Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691487786664069","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":190.899072,"event_ids":{"":"$Nzf4jBqbDPnFwKuA6E6uPhescbZwnNt7WoL14kdW89c"},"time":"2026-03-06T19:14:14.291400097Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"280","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.297926574Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"280","time":"2026-03-06T19:14:14.298009617Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2ZsyIIUYE_bcg2xDKN4KO9GW0unh8y1ZHrddleIhSyk","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454298,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.298233182Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":956,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":8.824636,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.300884323Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":945,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454142745937_13?ts=1742239178304&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":177.26112,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"nee, aber dann mach ich jetzt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.320163992Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1351273795515584533","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":194.053356,"event_ids":{"":"$6q-wWo-s7-LIIinqBDjojbNNFCvseAyCSTjY8ytyGEE"},"time":"2026-03-06T19:14:14.320279441Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"281","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.324731254Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"281","time":"2026-03-06T19:14:14.324825402Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Nzf4jBqbDPnFwKuA6E6uPhescbZwnNt7WoL14kdW89c","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454324,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.32500755Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","action":"initial backfill","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:14.329979409Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","action":"initial backfill","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","limit":100,"before_id":"1477059222494777476","time":"2026-03-06T19:14:14.330047785Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":947,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454165123737_30?ts=1772725289225&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":170.864688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber warum? discord ist doch voll cool","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.336144732Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141812496109674","message_type":19,"author_id":"316966695430520833","action":"discord message create","handling_time":185.850875,"event_ids":{"":"$EzxK35CqaAzbbqEldb8Kh-QdjnKkqOpOtianCil94Rs"},"time":"2026-03-06T19:14:14.336233362Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":958,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.603453,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.33659703Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":959,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.283987,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.345085585Z","message":"Request completed"} +{"level":"debug","transaction_id":"282","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.355697833Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"282","time":"2026-03-06T19:14:14.355824736Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$EzxK35CqaAzbbqEldb8Kh-QdjnKkqOpOtianCil94Rs","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454356,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.356041666Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$6q-wWo-s7-LIIinqBDjojbNNFCvseAyCSTjY8ytyGEE","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454355,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.356036009Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":953,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":91.813759,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:14.362680589Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":950,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454220673314_47?ts=1753102804101&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":178.920431,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Titty","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.399778967Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1396839144650440844","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":191.907455,"event_ids":{"":"$YvAG2l_0AkdAwhHUU7g5GPwDnXYhRGvdU6T0GoUBC_4"},"time":"2026-03-06T19:14:14.399926404Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":963,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":18.193761,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.418817819Z","message":"Request completed"} +{"level":"debug","transaction_id":"283","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.432958566Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"283","time":"2026-03-06T19:14:14.433049291Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YvAG2l_0AkdAwhHUU7g5GPwDnXYhRGvdU6T0GoUBC_4","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454433,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.433253789Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":961,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":96.337021,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:14.441715455Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":962,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":80.756337,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:14.443623265Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409886974231187607","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:14.443708124Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409886974231187607","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":185.862818,"time":"2026-03-06T19:14:14.443783972Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":955,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454282460641_41?ts=1772721212004&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":172.788702,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bzw. was du umstellen musst?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.455446019Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479124711391891497","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":182.994677,"event_ids":{"":"$uPCrlcVQfhxdhjJ98oTuAaz8S6_rTR6LMflN401Nr1M"},"time":"2026-03-06T19:14:14.455559722Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":966,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":11.650941,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.455934705Z","message":"Request completed"} +{"level":"debug","transaction_id":"284","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.465141238Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"284","time":"2026-03-06T19:14:14.465236642Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":968,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.761576,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.473349446Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":957,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454301065494_35?ts=1771187416500&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":193.385245,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ah danke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.494625625Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691506774151230","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":202.986877,"event_ids":{"":"$BMuixYjNMjyWGGdXM5cm9CLhkul27HzPAJSlzMDavps"},"time":"2026-03-06T19:14:14.494768452Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":970,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":6.94581,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.502507181Z","message":"Request completed"} +{"level":"debug","transaction_id":"285","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.506571859Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"285","time":"2026-03-06T19:14:14.506675225Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uPCrlcVQfhxdhjJ98oTuAaz8S6_rTR6LMflN401Nr1M","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454506,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.506935248Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$BMuixYjNMjyWGGdXM5cm9CLhkul27HzPAJSlzMDavps","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454506,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.506965071Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":960,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454336772055_4?ts=1742239182313&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":186.079957,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"okee","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.523051203Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1351273812330676244","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":202.497143,"event_ids":{"":"$ti6XbnNoA96a9HOItnadsnTM_B3EKaerPU2lpyO0oN4"},"time":"2026-03-06T19:14:14.523197662Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","action":"initial backfill","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","limit":100,"count":8,"time":"2026-03-06T19:14:14.538422221Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","action":"initial backfill","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","limit":100,"count":58,"found_all":false,"time":"2026-03-06T19:14:14.538509873Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","action":"initial backfill","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:14.538611843Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"warn","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477033040331935975","message_type":1,"author_id":"388409312340344833","action":"discord message create","handling_time":0.533246,"time":"2026-03-06T19:14:14.539354685Z","message":"Unhandled message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":972,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.989604,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.549834092Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":965,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":113.905276,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:14.555812517Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141821874438327","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:14.555912601Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141821874438327","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":219.433814,"time":"2026-03-06T19:14:14.556006958Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"286","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.558814197Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"286","time":"2026-03-06T19:14:14.558931113Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ti6XbnNoA96a9HOItnadsnTM_B3EKaerPU2lpyO0oN4","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454559,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.559183034Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":974,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":7.50797,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.564355899Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":969,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":104.691409,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:14.578473248Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":964,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454419043410_36?ts=1753102835283&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":197.946432,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja hackt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.617169546Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1396839275437494455","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":216.9834,"event_ids":{"":"$0NSWw1XRPrAriTwkcLe2cSKBF2d6UpFj9w3FB8pcYfk"},"time":"2026-03-06T19:14:14.617279059Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":977,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":16.603803,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.634632478Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":967,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454456100301_48?ts=1756213747862&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":182.689117,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hat keiner gesagt das fertig ist....","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.638977434Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887388511240272","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":195.128648,"event_ids":{"":"$gt5I1eqmCaKwFRVKnN0GgpxtQFXziHqU7qttcu82sp0"},"time":"2026-03-06T19:14:14.639097632Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":979,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":16.209404,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.656002315Z","message":"Request completed"} +{"level":"debug","transaction_id":"287","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.658278334Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"287","time":"2026-03-06T19:14:14.659403912Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0NSWw1XRPrAriTwkcLe2cSKBF2d6UpFj9w3FB8pcYfk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454659,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.659682512Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":973,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":112.817902,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:14.663077264Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":976,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":124.878468,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:14.703592044Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128591240528056","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:14.703698343Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128591240528056","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":247.857227,"time":"2026-03-06T19:14:14.703801919Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"288","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.712897962Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"288","time":"2026-03-06T19:14:14.712992808Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gt5I1eqmCaKwFRVKnN0GgpxtQFXziHqU7qttcu82sp0","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454713,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.713216792Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$FOBDB4fB7gr0cLkdRbVLFCvJgv-byHgoLjrsr1HG_Qw","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454713,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.713223497Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":982,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.08033,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.715450556Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":971,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454502760079_37?ts=1771187474206&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":216.114143,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"auch abegebebn!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.719071806Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691748810657864","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":224.029712,"event_ids":{"":"$FOBDB4fB7gr0cLkdRbVLFCvJgv-byHgoLjrsr1HG_Qw"},"time":"2026-03-06T19:14:14.719229719Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":984,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":15.362078,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.73549367Z","message":"Request completed"} +{"level":"debug","transaction_id":"289","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.75164273Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"289","time":"2026-03-06T19:14:14.751974341Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":975,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454564592035_31?ts=1772725295539&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":203.217146,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hmmm","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.768027788Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141838978945024","message_type":19,"author_id":"316966695430520833","action":"discord message create","handling_time":211.908803,"event_ids":{"":"$mQrCqSRdlLy2-abE_udLrrp6S7TxwrW-tfPjPB1R6ZQ"},"time":"2026-03-06T19:14:14.768171523Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":986,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.707306,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.782744174Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":806,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s748_892_0_353_368_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":2497.85816,"status_code":200,"response_length":207,"response_mime":"application/json","time":"2026-03-06T19:14:14.78563222Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:14.785888","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:14.785914662Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:14.785888","time":"2026-03-06T19:14:14.786096531Z","message":"Finished handling device list changes"} +{"level":"debug","transaction_id":"290","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.798015737Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"290","time":"2026-03-06T19:14:14.798115821Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mQrCqSRdlLy2-abE_udLrrp6S7TxwrW-tfPjPB1R6ZQ","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454798,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.798323811Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":983,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":99.198597,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:14.815033844Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":978,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454634902139_49?ts=1753102857386&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":219.969573,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Thizzy52","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.855049042Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1396839368144064633","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":237.444798,"event_ids":{"":"$yKefeO25zWMHiVty5uQ3NBfvbhNIXZ4298qNEj5HSUM"},"time":"2026-03-06T19:14:14.855145774Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":980,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454656208210_50?ts=1756213750197&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":215.204936,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hater","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.87158894Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887398304813228","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":232.192872,"event_ids":{"":"$bhYXjwLYOhZw7z46WItuMDCV2YlTKz77SGhU5AJUIDg"},"time":"2026-03-06T19:14:14.871691468Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"291","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.883067022Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"291","time":"2026-03-06T19:14:14.883192668Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yKefeO25zWMHiVty5uQ3NBfvbhNIXZ4298qNEj5HSUM","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454883,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.883396118Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":990,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.04185,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.885362387Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":989,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":92.974048,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:14.908270569Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128600719528201","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:14.908423174Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128600719528201","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":204.484363,"time":"2026-03-06T19:14:14.908521791Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"292","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.920029905Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"292","time":"2026-03-06T19:14:14.92015178Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bhYXjwLYOhZw7z46WItuMDCV2YlTKz77SGhU5AJUIDg","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454920,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.920352367Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":992,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.516357,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.922677345Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":985,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454735740003_38?ts=1771187475287&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":191.817776,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yay","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.927720722Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691753344700568","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":208.057842,"event_ids":{"":"$s6Mrz4w8loY50p6TFhFwLlk2pkYIT-YYJlbXWbj8kj4"},"time":"2026-03-06T19:14:14.927853003Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":994,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.388336,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:14.942054094Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":981,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":293.753979,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:14.957072688Z","message":"Request completed"} +{"level":"debug","transaction_id":"293","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:14.970938256Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"293","time":"2026-03-06T19:14:14.971035407Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$s6Mrz4w8loY50p6TFhFwLlk2pkYIT-YYJlbXWbj8kj4","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824454971,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:14.97125548Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":987,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824454782983384_32?ts=1772725299089&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":211.763879,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bissl random","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:14.994933393Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141853868720350","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":226.390798,"event_ids":{"":"$7QA_4t_I3lurRXZJIufmyRguSJgA4j4gjSQ9XoXxN7U"},"time":"2026-03-06T19:14:14.995047376Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":997,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":9.795163,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.005611292Z","message":"Request completed"} +{"level":"debug","transaction_id":"294","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.011632042Z","message":"Starting handling of transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":951,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":778.398999,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Vortrag IT-Management","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1472910535170199644","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1472910535170199644","displayname":"Vortrag IT-Management","external_url":"https://discord.com/channels/@me/1472910535170199644"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"state_key":"fi.mau.discord://discord/dm/1472910535170199644","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1472910535170199644","displayname":"Vortrag IT-Management","external_url":"https://discord.com/channels/@me/1472910535170199644"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}}],"preset":"private_chat","room_version":"11"},"time":"2026-03-06T19:14:15.011798616Z","message":"Request completed"} +{"level":"debug","transaction_id":"294","time":"2026-03-06T19:14:15.011924052Z","message":"Finished dispatching events from transaction"} +{"level":"info","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","time":"2026-03-06T19:14:15.012440047Z","message":"Matrix room created"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":991,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":149.779668,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.035566486Z","message":"Request completed"} +{"level":"debug","transaction_id":"295","content":{"pdu":8,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.041585768Z","message":"Starting handling of transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7QA_4t_I3lurRXZJIufmyRguSJgA4j4gjSQ9XoXxN7U","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455041,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.041926459Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"295","time":"2026-03-06T19:14:15.042087794Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":993,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":126.69241,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.049737963Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":995,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":119.725368,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.062212624Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1000,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":59.612509,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.095405843Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887676735164556","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.095528416Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887676735164556","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":223.6145,"time":"2026-03-06T19:14:15.095637928Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1003,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.52976,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.102747099Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1001,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":54.927073,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.104806607Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128608927649852","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.104908088Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128608927649852","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":196.21218,"time":"2026-03-06T19:14:15.105005867Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1005,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.423536,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.118008115Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1002,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":60.616212,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.123060572Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691774248980724","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.123166593Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691774248980724","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":194.982607,"time":"2026-03-06T19:14:15.123261578Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1008,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.71149,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.131584677Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":998,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455005834788_33?ts=1772725306757&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":143.069855,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"also ich bin riesiger discord enjoyer","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.149062975Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141886030647518","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":153.681125,"event_ids":{"":"$O2TUfS_yl4ogHlpgo1_f79dv84ghClgRNuXV_nkaZPI"},"time":"2026-03-06T19:14:15.149168786Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1010,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.347058,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.161226977Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":999,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":164.981178,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:15.177695077Z","message":"Request completed"} +{"level":"debug","transaction_id":"296","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.184515659Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"296","time":"2026-03-06T19:14:15.184571393Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$O2TUfS_yl4ogHlpgo1_f79dv84ghClgRNuXV_nkaZPI","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455184,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.184712195Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1004,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":112.879084,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.216057668Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1006,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":112.168719,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32898 bytes>","time":"2026-03-06T19:14:15.218079112Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":996,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":265.787544,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.223263291Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1014,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":11.124959,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.229847318Z","message":"Request completed"} +{"level":"debug","transaction_id":"297","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.235279018Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"297","time":"2026-03-06T19:14:15.235386506Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1007,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":131.335871,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.249735173Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1009,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":124.406125,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.256391836Z","message":"Request completed"} +{"level":"debug","transaction_id":"298","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.261504008Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"298","time":"2026-03-06T19:14:15.261723662Z","message":"Finished dispatching events from transaction"} +{"level":"warn","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354075053981040743","message_type":0,"author_id":"388409312340344833","action":"discord message create","embed_type":"link","embed_index":0,"computed_embed_type":"link preview","error":"unexpected status 415 downloading https://images-ext-1.discordapp.net/external/TjTyJ9W0gDtfkbzNFZB6fVlwltZ_Zdc2l0ai-5rzHNU/%3Ffile%3D%2FSWE%2520II%2520Lernfolien.pdf%26x%3D200%26y%3D200/http/drive.theocloud.dev/apps/files_sharing/publicpreview/S6MPY4c6DpJScjZ: {\"message\":\"Invalid resource \\\"https://images-ext-1.discordapp.net/external/TjTyJ9W0gDtfkbzNFZB6fVlwltZ_Zdc2l0ai-5rzHNU/%3Ffile%3D%2FSWE%2520II%2520Lernfolien.pdf%26x%3D200%26y%3D200/http/drive.theocloud.dev/apps/files_sharing/publicpreview/S6MPY4c6DpJScjZ\\\"\"}","time":"2026-03-06T19:14:15.265650122Z","message":"Failed to reupload image in URL preview"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1019,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.282593,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.277152928Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1011,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":128.238019,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.289784664Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1013,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":87.991643,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.30432428Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887712801984605","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.304466758Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887712801984605","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":208.665958,"time":"2026-03-06T19:14:15.304553013Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1022,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":7.781262,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.31290356Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1017,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":83.015453,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.332990744Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128700892086413","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.333117857Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128700892086413","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":228.011837,"time":"2026-03-06T19:14:15.333227509Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1018,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":81.464258,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.33805668Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691780293103616","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.338148732Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691780293103616","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":214.695367,"time":"2026-03-06T19:14:15.338236873Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1024,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.846008,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.342701119Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1025,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.400484,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.347205803Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1021,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":75.122373,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.365147923Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141924425171116","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.365244794Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141924425171116","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":215.740417,"time":"2026-03-06T19:14:15.365320224Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1028,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.445253,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.374440083Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1016,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455230033727_3?ts=1753188744973&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":170.392346,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 2 day streak!** 🔥 Here are yesterday's results:\n👑 2/6: Maja\nX/6: @alexx lagopodus\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 2 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 2/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e\u003cbr\u003e\nX/6: @alexx \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev","@discord_769998429991600219:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.400721365Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1030,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":15.469635,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.416449067Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1015,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455223564800_5?ts=1772222519350&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":203.550713,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:15.427244511Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477033042798186527","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":887.819146,"event_ids":{"":"$2qhv933q421IOAeRWoSeh2zelB57bi92JZKFDh4FLZU"},"time":"2026-03-06T19:14:15.427372672Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"299","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.437096316Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"299","time":"2026-03-06T19:14:15.437207855Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$PB3dw_8wt-vSNpfGwMn0tzcVAgN7QXMdfQCswSxizmg","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455437,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.437459775Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1032,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.929064,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.450003161Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1026,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":113.286614,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.456278974Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1027,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":116.330337,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.463970629Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1020,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455277361407_6?ts=1742907050367&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":201.837832,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://drive.theocloud.dev/s/S6MPY4c6DpJScjZ","com.beeper.linkpreviews":[{"og:title":"SWE II Lernfolien.pdf","og:description":"TheoCloud - Privacy First!","matched_url":"https://drive.theocloud.dev/s/S6MPY4c6DpJScjZ"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.479410791Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354075053981040743","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":955.86706,"event_ids":{"":"$1O8YJaAJre6SAlY9IqdbKU6k2gpoUZPM-93ml7c_D6k"},"time":"2026-03-06T19:14:15.479526519Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1012,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":309.174096,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:15.48739718Z","message":"Request completed"} +{"level":"debug","transaction_id":"300","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.488445931Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"300","time":"2026-03-06T19:14:15.488553837Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2qhv933q421IOAeRWoSeh2zelB57bi92JZKFDh4FLZU","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455488,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:15.488724462Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1036,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":21.688247,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_311538896066314240","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:15.509931776Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1029,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":151.467964,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.526292668Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1037,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_311538896066314240:matrix.theocloud.dev/displayname?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":25.366768,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:15.535699578Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1023,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455313060286_51?ts=1756213828250&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":230.177295,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich verzeih dir","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.543399545Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887725682688094","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":238.683171,"event_ids":{"":"$wtUGBnKj_oCkB0SVzd_Juf0gZDUAXJ5HMx5pj1l2Has"},"time":"2026-03-06T19:14:15.543470365Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"301","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.549059629Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"301","time":"2026-03-06T19:14:15.54913869Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1O8YJaAJre6SAlY9IqdbKU6k2gpoUZPM-93ml7c_D6k","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455549,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.549317277Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$wtUGBnKj_oCkB0SVzd_Juf0gZDUAXJ5HMx5pj1l2Has","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455549,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.549396827Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1038,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":40.266211,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<495195 bytes>","time":"2026-03-06T19:14:15.556413457Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1041,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":14.184677,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.558204421Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1042,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":7.661413,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.564373097Z","message":"Request completed"} +{"level":"debug","transaction_id":"302","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.571543519Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"302","time":"2026-03-06T19:14:15.571872546Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1034,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":122.261409,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.578788114Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128775278071848","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.578894693Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128775278071848","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":245.462896,"time":"2026-03-06T19:14:15.578971869Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1035,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.766226,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.583919982Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691791093436597","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.584029145Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691791093436597","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":245.669,"time":"2026-03-06T19:14:15.584138588Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1045,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.081026,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.588604649Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1046,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":8.502942,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.593235538Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1040,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_311538896066314240:matrix.theocloud.dev/displayname?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":57.554957,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"KatzenCrafter"},"time":"2026-03-06T19:14:15.59339876Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1039,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":79.547368,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.606053404Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141965584138260","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.606158726Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479141965584138260","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":240.651046,"time":"2026-03-06T19:14:15.606274734Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1049,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":6.800678,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.613665369Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1031,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455416696658_4?ts=1753188744973&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":216.093818,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved and 2 unsolved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":32898,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/deJHzwWfFePNBHngqFuuiXxC"},"time":"2026-03-06T19:14:15.633078925Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397199606793900153","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":777.694919,"event_ids":{"":"$PB3dw_8wt-vSNpfGwMn0tzcVAgN7QXMdfQCswSxizmg","1397199606466609243":"$OO-AKn7-U1JU5xZkmP4hjvhNqyE--9h7vyvJ67g7Vns"},"time":"2026-03-06T19:14:15.633213441Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"303","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.657880041Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"303","time":"2026-03-06T19:14:15.658010366Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$OO-AKn7-U1JU5xZkmP4hjvhNqyE--9h7vyvJ67g7Vns","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455658,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:15.658213188Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1033,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455450248237_42?ts=1772222898782&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":213.700814,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://vik1ngfile.site/f/VoZ5XaAbBC","com.beeper.linkpreviews":[{"og:title":"MD B21117461~AG.7z","og:description":"Share large files anonymously. Unlimited storage. No mail required. No speed limit. No size limit.","matched_url":"https://vik1ngfile.site/f/VoZ5XaAbBC"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.664173734Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477034634251338039","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":236.472105,"event_ids":{"":"$RyI_UNhwYCQJfZqPfTafcEnpxrAl8-nO641kdV6i7rI"},"time":"2026-03-06T19:14:15.664241411Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1051,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.451827,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.681318116Z","message":"Request completed"} +{"level":"debug","transaction_id":"304","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.694783838Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"304","time":"2026-03-06T19:14:15.694865832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$RyI_UNhwYCQJfZqPfTafcEnpxrAl8-nO641kdV6i7rI","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455695,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.69511922Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1043,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455558365687_52?ts=1756213829203&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":157.79567,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"danke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.716302508Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887729679863880","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":172.649226,"event_ids":{"":"$b7OWmJRrjzOEZ7kBtWic9dh9SAeOU-o1ajDN4l2GAZM"},"time":"2026-03-06T19:14:15.716431577Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1053,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.877446,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.735116189Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1044,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455564546305_34?ts=1742907067572&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":170.316008,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/call-shaka-sign-chill-gif-16835344","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":480,"mimetype":"video/mp4","size":495195,"w":640},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/oyRQEJTrVTFAtepqkdafaFNB"},"time":"2026-03-06T19:14:15.735113745Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354075126144172044","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":255.378188,"event_ids":{"video_https://tenor.com/view/call-shaka-sign-chill-gif-16835344":"$7FHpdZzTLgNEyyVeeIulqKYf8Muenm34apnLbalCF9o"},"time":"2026-03-06T19:14:15.735237855Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1055,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.256337,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.751413455Z","message":"Request completed"} +{"level":"debug","transaction_id":"305","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.757235014Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"305","time":"2026-03-06T19:14:15.757351651Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$b7OWmJRrjzOEZ7kBtWic9dh9SAeOU-o1ajDN4l2GAZM","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455757,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.757530726Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1047,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455588750619_43?ts=1772722201697&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":175.094543,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Add du mich mal","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.763972275Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128862464933888","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":184.876926,"event_ids":{"":"$7GgTXnNKPL-oE2Rb_51KJ5sA4p9tJxPlU4jtMIlEjh0"},"time":"2026-03-06T19:14:15.764066213Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1048,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455593538654_39?ts=1771187490785&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":182.081281,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gg wp","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.775795029Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691818347892878","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":191.5507,"event_ids":{"":"$EXYO6fW7ziJtC1wfNCWUqN0D2XLUfIdng706GsGk3-A"},"time":"2026-03-06T19:14:15.775930453Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.299779,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.780179724Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1058,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":13.309485,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.789975795Z","message":"Request completed"} +{"level":"debug","transaction_id":"306","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.794128894Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"306","time":"2026-03-06T19:14:15.79428115Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$EXYO6fW7ziJtC1wfNCWUqN0D2XLUfIdng706GsGk3-A","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455794,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.794556538Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$7GgTXnNKPL-oE2Rb_51KJ5sA4p9tJxPlU4jtMIlEjh0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455794,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.794551369Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$7FHpdZzTLgNEyyVeeIulqKYf8Muenm34apnLbalCF9o","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455794,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:15.794551369Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1050,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455613983291_35?ts=1772725337926&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":195.214343,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hmm okay musst du mir dann mal erklären warum","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.809407021Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142016762908722","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":202.966831,"event_ids":{"":"$0uZ852voDaC45d5CZbOMwIfqGdj7uda9_CrylRJ7G3Y"},"time":"2026-03-06T19:14:15.809506127Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.116715,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.818184025Z","message":"Request completed"} +{"level":"debug","transaction_id":"307","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.827701775Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"307","time":"2026-03-06T19:14:15.827799694Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0uZ852voDaC45d5CZbOMwIfqGdj7uda9_CrylRJ7G3Y","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455827,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.828011316Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1054,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":106.919446,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.842389317Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1052,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455681575554_7?ts=1772223367791&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":191.22754,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://drive.theocloud.dev/share/7MjbPcKM","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.872980772Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477036601417928887","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":208.514609,"event_ids":{"":"$O9Re74vBYMXtEu6vKJzozk-xVLFD8WHlDasDqwv32XY"},"time":"2026-03-06T19:14:15.873117105Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"308","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.898318486Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"308","time":"2026-03-06T19:14:15.898442526Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$O9Re74vBYMXtEu6vKJzozk-xVLFD8WHlDasDqwv32XY","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455898,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.898660015Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1063,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":77.810462,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<13703 bytes>","time":"2026-03-06T19:14:15.899993163Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1066,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_311538896066314240:matrix.theocloud.dev/avatar_url?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":9.319049,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:15.909670782Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1062,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":104.528816,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:15.923025664Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1056,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455751663141_8?ts=1742907072671&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":177.472043,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Haben mal Majas zusammengesetzte Folien auf den wesentliche Inhalt gecuttet","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Haben mal Majas zusammengesetzte Folien auf den wesentliche Inhalt gecuttet","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.929359796Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354075147530797206","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":193.687103,"event_ids":{"":"$1bz6pDGRV6SKrUpzJhLugQc7m5lXCsFYeDI0rbgeda0"},"time":"2026-03-06T19:14:15.929479087Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1064,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":87.754109,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:15.930392832Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887739817623573","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:15.930493545Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409887739817623573","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":213.717786,"time":"2026-03-06T19:14:15.930593699Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1067,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_311538896066314240:matrix.theocloud.dev/avatar_url?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":34.937319,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/thbNWktiDmUuGvpLmezWENHF"},"time":"2026-03-06T19:14:15.944770624Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1069,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.520064,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.947818539Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1070,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":17.285114,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.948404515Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1059,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455780429340_44?ts=1772722202933&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":179.639316,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bitte","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.960201846Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128867649224836","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":195.694858,"event_ids":{"":"$NWz9xO-LiFg0_YevmgsGpJONPKfDxWUWsSb6dgsA-Y0"},"time":"2026-03-06T19:14:15.96027099Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"309","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.964992744Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"309","time":"2026-03-06T19:14:15.965072154Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1bz6pDGRV6SKrUpzJhLugQc7m5lXCsFYeDI0rbgeda0","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455965,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.965287967Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1065,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":118.582539,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22503 bytes>","time":"2026-03-06T19:14:15.970661768Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1060,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455790190630_40?ts=1771187497913&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":183.358764,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Alle Studienarbeiten durch","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:15.973686565Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691848245153884","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":197.458584,"event_ids":{"":"$idRrAzNMC1mp7MxYa-AsjrzQRSqHm1DpEUprKh9NlN8"},"time":"2026-03-06T19:14:15.973774985Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1074,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.680416,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.974459229Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1075,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":12.198714,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.98344548Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1076,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":9.52648,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:15.983881924Z","message":"Request completed"} +{"level":"debug","transaction_id":"310","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:15.994705864Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"310","time":"2026-03-06T19:14:15.994798405Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$NWz9xO-LiFg0_YevmgsGpJONPKfDxWUWsSb6dgsA-Y0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455994,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.995003042Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$idRrAzNMC1mp7MxYa-AsjrzQRSqHm1DpEUprKh9NlN8","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824455994,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:15.995023157Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1068,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":91.785543,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.015001946Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142143556583577","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.015084569Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142143556583577","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":205.364096,"time":"2026-03-06T19:14:16.015160209Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1080,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.670352,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.022380778Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1077,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":74.479476,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.049226246Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1071,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/join?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":107.173043,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.052412169Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1073,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455948535539_53?ts=1756213915466&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":143.788671,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wo ist link auf deiner seite???????ßß","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.092430999Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409888091493236799","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":161.742245,"event_ids":{"":"$bMEVHs2mJxnKg7-Qh3iRCO7J-3OZVfF4tguKj4dOU3Q"},"time":"2026-03-06T19:14:16.09253695Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1072,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455948081355_9?ts=1742907093876&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":155.914469,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"\"nur\" ca. 170 Folien","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u0026quot;nur\u0026quot; ca. 170 Folien","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.104204583Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354075236471148616","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":174.395911,"event_ids":{"":"$0qpmbbn4c4JQqGIXoN_P2ClFwqKatKveZzwZIgsHQj4"},"time":"2026-03-06T19:14:16.104309905Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1081,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":87.627206,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.110295454Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1084,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.323179,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.11147495Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1085,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":15.092487,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.119954565Z","message":"Request completed"} +{"level":"debug","transaction_id":"311","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.128563458Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"311","time":"2026-03-06T19:14:16.128674577Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bMEVHs2mJxnKg7-Qh3iRCO7J-3OZVfF4tguKj4dOU3Q","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456128,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.128824458Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1078,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455983608562_5?ts=1753190561648&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":162.644467,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$PB3dw_8wt-vSNpfGwMn0tzcVAgN7QXMdfQCswSxizmg"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.146474708Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1079,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824455984041025_41?ts=1771187499589&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":163.857626,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"vergeilt sogar","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.148036869Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691855274676315","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":174.033221,"event_ids":{"":"$5yCMR_FpnVdA_SgodHLaqaEsQ_-r9dJKah-OMMgrLuA"},"time":"2026-03-06T19:14:16.148123264Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1082,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":100.712357,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.150159514Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128889304420364","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.150240461Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128889304420364","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":189.772517,"time":"2026-03-06T19:14:16.150307719Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1089,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":13.05065,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.159713093Z","message":"Request completed"} +{"level":"debug","transaction_id":"312","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.162636549Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"312","time":"2026-03-06T19:14:16.162719871Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0qpmbbn4c4JQqGIXoN_P2ClFwqKatKveZzwZIgsHQj4","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456162,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.162852501Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1090,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.648712,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.165397762Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1091,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.090461,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.165871851Z","message":"Request completed"} +{"level":"debug","transaction_id":"313","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.186083913Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"313","time":"2026-03-06T19:14:16.186203064Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5DIJ2ApCpt6Qq0xO5VQDuLuchFbX0cX-B812Uh218x8","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456186,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.186394222Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$5yCMR_FpnVdA_SgodHLaqaEsQ_-r9dJKah-OMMgrLuA","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456186,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.186419086Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1086,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":87.019369,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.19747581Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142185999011840","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.197562135Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142185999011840","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":182.344376,"time":"2026-03-06T19:14:16.19767486Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1096,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.697243,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.206861977Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1087,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":106.391369,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.218109509Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1095,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":59.252821,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<18281 bytes>","time":"2026-03-06T19:14:16.228585006Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1099,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.425276,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.23529007Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1093,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":80.689289,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.246374032Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1088,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456120112548_42?ts=1742909307692&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":167.254543,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Geschenkt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.287509988Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354084521888317452","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":183.019681,"event_ids":{"":"$3tIEsUAVg9yE_4-_4xrQqYQeceR9PztAu2uWr83cljA"},"time":"2026-03-06T19:14:16.287622504Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1097,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":86.498975,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.293676778Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1102,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":20.048701,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.308371723Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1098,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":92.171002,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.310448063Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409888311950184520","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.310525168Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409888311950184520","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":217.74866,"time":"2026-03-06T19:14:16.310608071Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1083,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":262.814429,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_311538896066314240:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.315388842Z","message":"Request completed"} +{"level":"debug","transaction_id":"314","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.337145046Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"314","time":"2026-03-06T19:14:16.337210837Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3tIEsUAVg9yE_4-_4xrQqYQeceR9PztAu2uWr83cljA","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456337,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.337432936Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1094,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456166015796_45?ts=1772722217035&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":176.637149,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"@helitra:nope.chat","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.342799194Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479128926797172767","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":192.388317,"event_ids":{"":"$ZDirBDMEmCuQrfy1SqCb1DQX_3Aw3BAjBpW4aa8jd2I"},"time":"2026-03-06T19:14:16.342891455Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1092,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456159869889_6?ts=1753190561648&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":183.753094,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22503,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/RRSRYwKorFQzFjcdhhMHMjuw"},"time":"2026-03-06T19:14:16.343831043Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397207226480853132","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":710.320423,"event_ids":{"":"$5DIJ2ApCpt6Qq0xO5VQDuLuchFbX0cX-B812Uh218x8","1397207493578326157":"$a1vkNdf_eB21iMN8Q7QInaJV1vMGDWfLtD7RFdEgM8U"},"time":"2026-03-06T19:14:16.343969889Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1106,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.992471,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.356553364Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1101,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":116.133732,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.362679575Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691884223758489","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.362785386Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691884223758489","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":214.45979,"time":"2026-03-06T19:14:16.362914245Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"315","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.368932271Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"315","time":"2026-03-06T19:14:16.369178185Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1108,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.871989,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.37250051Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1103,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":95.162484,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.38900381Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142547778703504","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.38911004Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142547778703504","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":191.356957,"time":"2026-03-06T19:14:16.389222975Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"316","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.390059336Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"316","time":"2026-03-06T19:14:16.39016368Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ZDirBDMEmCuQrfy1SqCb1DQX_3Aw3BAjBpW4aa8jd2I","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456390,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.390315028Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$a1vkNdf_eB21iMN8Q7QInaJV1vMGDWfLtD7RFdEgM8U","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456390,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:16.390315028Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1110,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":8.639833,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.398542094Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1100,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456235495196_10?ts=1772224459268&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":188.565293,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":122,"mimetype":"image/png","size":18281,"w":225},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/gfJPtPJXYjhAFgCfaLkVvPee"},"time":"2026-03-06T19:14:16.424300956Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477041179404144811","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":550.940521,"event_ids":{"1477041179081310400":"$NEqdfcp2jTXrFkfYAFveqwibgTY3GAjif1aRVj3oZok"},"time":"2026-03-06T19:14:16.424441828Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1107,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":95.237425,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.452119676Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1109,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":93.531109,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.46638991Z","message":"Request completed"} +{"level":"debug","transaction_id":"317","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.469486854Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"317","time":"2026-03-06T19:14:16.46958177Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$NEqdfcp2jTXrFkfYAFveqwibgTY3GAjif1aRVj3oZok","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456469,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:16.469763919Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1104,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456308531592_14?ts=1742909342523&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":184.131988,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Heute Grow Green Paper und Code Abgabe","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.492838814Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354084667979993218","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":204.880578,"event_ids":{"":"$eUu9H14gfHYi-ql2jQgXz-j-A1TWcqyCRwALgbcUsjk"},"time":"2026-03-06T19:14:16.492910472Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":11.808226,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.505307817Z","message":"Request completed"} +{"level":"debug","transaction_id":"318","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.511762985Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"318","time":"2026-03-06T19:14:16.511882835Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eUu9H14gfHYi-ql2jQgXz-j-A1TWcqyCRwALgbcUsjk","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456512,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.512116736Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1112,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":73.27791,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.525672555Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479129608459653120","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.525784023Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479129608459653120","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":182.737658,"time":"2026-03-06T19:14:16.525901637Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1113,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":70.88777,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.537471142Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691908542201876","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.537615157Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1472691908542201876","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":174.52044,"time":"2026-03-06T19:14:16.537718733Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1117,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.152061,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.539682208Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.873105,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.546236831Z","message":"Request completed"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409889479744946247","message_type":0,"author_id":"388409312340344833","action":"discord message create","embed_type":"article","embed_index":0,"computed_embed_type":"link preview","error":"unexpected status 400 downloading https://images-ext-1.discordapp.net/external/WUhRSjg-3Vl_Feq6DEbr5oBs8pMzo2_yfENhB7I7OKE/https/opengraph.githubassets.com/873d68a7d81b0e9482ac9b85cea2e47199694f23cce93cb86e3f1c750e58bfb1/theoleuthardt/portfolio/pull/12: {\"message\":\"Invalid resource \\\"https://images-ext-1.discordapp.net/external/WUhRSjg-3Vl_Feq6DEbr5oBs8pMzo2_yfENhB7I7OKE/https/opengraph.githubassets.com/873d68a7d81b0e9482ac9b85cea2e47199694f23cce93cb86e3f1c750e58bfb1/theoleuthardt/portfolio/pull/12\\\"\"}","time":"2026-03-06T19:14:16.557486669Z","message":"Failed to reupload image in URL preview"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456398798764_36?ts=1772725480119&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":162.865657,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"qwatschen wa gleich","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.561856138Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142613163708579","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":172.518762,"event_ids":{"":"$MXA0FX2tDMaoYTj7BLjrftUWOkkq6sVm5ahhHM62aPg"},"time":"2026-03-06T19:14:16.562002737Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1105,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/join?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":254.524226,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.570183637Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1122,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.711156,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.584555143Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1121,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":26.762076,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.584692592Z","message":"Request completed"} +{"level":"debug","transaction_id":"319","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.59367116Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"319","time":"2026-03-06T19:14:16.593739815Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MXA0FX2tDMaoYTj7BLjrftUWOkkq6sVm5ahhHM62aPg","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456593,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.593926154Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1116,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":93.957077,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<56188 bytes>","time":"2026-03-06T19:14:16.601773907Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1127,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":9.425977,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.61153373Z","message":"Request completed"} +{"level":"debug","transaction_id":"320","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.617118594Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"320","time":"2026-03-06T19:14:16.617350121Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1120,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.855173,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.636518321Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1126,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":80.918371,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.66601528Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456505596405_15?ts=1742909345717&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":165.677995,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hat schon jemand?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.671415551Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354084681376858132","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":178.29653,"event_ids":{"":"$6n8xdBFKliSrkr8VwZJprejcJPR4xmsZm9Rb3Q8ogJI"},"time":"2026-03-06T19:14:16.671514517Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1125,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":92.98627,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.677974993Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1131,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":15.071394,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.687326728Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1124,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":119.581982,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24627 bytes>","time":"2026-03-06T19:14:16.694081799Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1123,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":132.75751,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.703729316Z","message":"Request completed"} +{"level":"debug","transaction_id":"321","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.706133775Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"321","time":"2026-03-06T19:14:16.706207737Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6n8xdBFKliSrkr8VwZJprejcJPR4xmsZm9Rb3Q8ogJI","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456706,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.70644576Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1134,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":13.660931,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.708373685Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1119,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456539907938_46?ts=1772722392599&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":170.869088,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ja hab ich bekommen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.710945625Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479129663165956218","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":184.920437,"event_ids":{"":"$IHRq215a3zTBnddwBgLUpbgpy44g1z_ijXzS7hx-d7A"},"time":"2026-03-06T19:14:16.711064427Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1137,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.261922,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.725121083Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1129,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":100.102216,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.736815397Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1473251269736136735","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.736895017Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1473251269736136735","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":198.986104,"time":"2026-03-06T19:14:16.736978409Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"322","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.738913178Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"322","time":"2026-03-06T19:14:16.73898323Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$IHRq215a3zTBnddwBgLUpbgpy44g1z_ijXzS7hx-d7A","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456739,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.739179766Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1130,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":89.452952,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.75567671Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409889479744946247","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.755770858Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409889479744946247","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":445.080512,"time":"2026-03-06T19:14:16.755861932Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1132,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":89.084464,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.767253828Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142652741025924","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.767349303Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142652741025924","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":204.949722,"time":"2026-03-06T19:14:16.767414186Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.027599,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.767431717Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1141,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.540378,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.776392195Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1128,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456611702748_37?ts=1772224676538&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":183.388238,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/1336490/Against_the_Storm/\n\u003e [**Against the Storm**](https://store.steampowered.com/app/1336490/Against_the_Storm/)\n\u003e \n\u003e You are the Viceroy – a leader charged by the Scorched Queen to reclaim the wilderness and discover lost riches for the Smoldering City, civilization's last bastion against the Blightstorm that destroyed the old world. Unlike most survival city builders where your focus is on a single city, in Against the Storm you must build a vast, prosperous…\n\u003e \n\u003e PriceRecommendationsMetacritic$8.993144891","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/1336490/Against_the_Storm/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/1336490/Against_the_Storm/\"\u003e\u003cstrong\u003eAgainst the Storm\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003eYou are the Viceroy – a leader charged by the Scorched Queen to reclaim the wilderness and discover lost riches for the Smoldering City, civilization's last bastion against the Blightstorm that destroyed the old world. Unlike most survival city builders where your focus is on a single city, in Against the Storm you must build a vast, prosperous…\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003cth\u003eMetacritic\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$8.99\u003c/td\u003e\u003ctd\u003e31448\u003c/td\u003e\u003ctd\u003e91\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003cp class=\"discord-embed-image\"\u003e\u003cimg src=\"mxc://matrix.theocloud.dev/dPyklOrUBFKTOYCCBlgVVLCQ\" alt=\"\" title=\"Embed image\"\u003e\u003c/p\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.795399968Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477042090700439582","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":370.628694,"event_ids":{"":"$Eavv6Reuv1h1biUBPbsCU8JEKUve_pMiYTHv1NKpZ0o"},"time":"2026-03-06T19:14:16.795551176Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1138,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":88.066583,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.81352263Z","message":"Request completed"} +{"level":"debug","transaction_id":"323","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.82064549Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"323","time":"2026-03-06T19:14:16.820746691Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Eavv6Reuv1h1biUBPbsCU8JEKUve_pMiYTHv1NKpZ0o","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456820,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.8209866Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1143,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":43.807352,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<860506 bytes>","time":"2026-03-06T19:14:16.831767586Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1145,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.942879,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.842059328Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1133,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456687624536_43?ts=1742909355904&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":164.926422,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.852711315Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354084724104232991","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":180.891658,"event_ids":{"":"$tDDJJmyBJO8OcuzJs0hX42vDUmeyacFJnsFjsXt64ZE"},"time":"2026-03-06T19:14:16.852821107Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1140,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":85.870813,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.853649227Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1147,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.503509,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.868873995Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1142,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":94.661785,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.871385382Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1136,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456708537395_7?ts=1753257800742&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":165.079446,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus and Maja are playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus and Maja are playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$5DIJ2ApCpt6Qq0xO5VQDuLuchFbX0cX-B812Uh218x8"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:16.873842571Z","message":"Request completed"} +{"level":"debug","transaction_id":"324","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.879571101Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"324","time":"2026-03-06T19:14:16.879634029Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tDDJJmyBJO8OcuzJs0hX42vDUmeyacFJnsFjsXt64ZE","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456879,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.879811638Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1151,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":8.338185,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.882380784Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1144,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":80.881844,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.894611486Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479129668488658984","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.894722116Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479129668488658984","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":183.243874,"time":"2026-03-06T19:14:16.894769329Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1153,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.754442,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.901991225Z","message":"Request completed"} +{"level":"debug","transaction_id":"325","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.905739588Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"325","time":"2026-03-06T19:14:16.905847005Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kGCFaxLokQFnoC1HtWMUtVkxv-k6H3h88rtire8R4XA","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824456906,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:16.906054926Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1135,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":220.589213,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_316966695430520833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.92448643Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1146,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":84.963702,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.927354641Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1148,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":75.236146,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.929042029Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409889817579356172","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.929119764Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409889817579356172","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":173.155373,"time":"2026-03-06T19:14:16.929207136Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1157,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":11.321496,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.941084297Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1150,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":74.192913,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:16.945724335Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142669665046539","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:16.945798577Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479142669665046539","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":178.273901,"time":"2026-03-06T19:14:16.945865766Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1159,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.629778,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:16.95692647Z","message":"Request completed"} +{"level":"debug","transaction_id":"326","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:16.959396371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"326","time":"2026-03-06T19:14:16.959617352Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1154,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":86.574405,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:16.988873284Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1156,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":81.058334,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:17.008594216Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475753277063696435","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"video_https://tenor.com/view/nanami-nanami-kento-jjk-jujutsu-kaisen-gojo-gif-9721827202022859485","time":"2026-03-06T19:14:17.008699818Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475753277063696435","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":271.605331,"time":"2026-03-06T19:14:17.00879613Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1163,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":12.538287,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.021861167Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1160,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":76.606451,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<51181 bytes>","time":"2026-03-06T19:14:17.023598772Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1149,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456869046296_11?ts=1742909468334&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":167.668638,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich auch nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.036843233Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354085195669835846","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":183.839209,"event_ids":{"":"$hxilLiqmgk1KejDqBk3-71RS4x-X2iMIPjIxiWe2pqc"},"time":"2026-03-06T19:14:17.036940105Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1165,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.556239,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.039547175Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1166,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":22.707385,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.060349055Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1161,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":114.155031,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:17.071388388Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1152,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456882548824_8?ts=1753257800742&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":200.368071,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24627,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/FCiJNKiBRkPjQCNEizomzeNS"},"time":"2026-03-06T19:14:17.083160087Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397489247681908907","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":739.017897,"event_ids":{"":"$kGCFaxLokQFnoC1HtWMUtVkxv-k6H3h88rtire8R4XA","1397489542843334677":"$uWquOxA8MqwdlEP__cEuhVJaV1LcanubXvttUk4Aq3A"},"time":"2026-03-06T19:14:17.083297885Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"327","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.08611155Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"327","time":"2026-03-06T19:14:17.086218199Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hxilLiqmgk1KejDqBk3-71RS4x-X2iMIPjIxiWe2pqc","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457086,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.086441065Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1170,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":15.792446,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.099778207Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1162,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":121.803872,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:17.110850296Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479129882637369455","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:17.110957504Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479129882637369455","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":216.089069,"time":"2026-03-06T19:14:17.111019943Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"328","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.122125556Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"328","time":"2026-03-06T19:14:17.122237932Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uWquOxA8MqwdlEP__cEuhVJaV1LcanubXvttUk4Aq3A","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457122,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:17.122462615Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.063501,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.125589312Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1158,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824456941290750_54?ts=1756214353358&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":204.901601,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"top","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.146347261Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409889928145539092","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":217.019717,"event_ids":{"":"$p5d6J8iiRKo1aHRFsmQNHmEEd7ron-8UQ4l_uz-qRCQ"},"time":"2026-03-06T19:14:17.146443713Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1174,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":10.355997,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.157396861Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1169,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":97.810761,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:17.169350289Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151899298238585","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:17.169425509Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151899298238585","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":223.468599,"time":"2026-03-06T19:14:17.169516583Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"329","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.172273116Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"329","time":"2026-03-06T19:14:17.172369009Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$p5d6J8iiRKo1aHRFsmQNHmEEd7ron-8UQ4l_uz-qRCQ","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457172,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.172568549Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1176,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.760311,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.178708938Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1155,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":297.447934,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:17.222236293Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1164,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457022035214_44?ts=1771919816550&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":206.721899,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bist du das?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.228924943Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475763415233331230","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":219.9929,"event_ids":{"":"$Va2JntpE7OUspxdnfsKfnYUGCqLApdyK6tM92PIb6Pc"},"time":"2026-03-06T19:14:17.229012106Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1179,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":21.092773,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.250670112Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1167,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457039744619_47?ts=1772224744252&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":238.97113,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/457140/Oxygen_Not_Included/\n\u003e [**Oxygen Not Included**](https://store.steampowered.com/app/457140/Oxygen_Not_Included/)\n\u003e \n\u003e \n\u003e \n\u003e In the space-colony simulation game _Oxygen Not Included_ you’ll find that scarcities of oxygen, warmth and sustenance are constant threats to your colony's survival. Guide colonists through the perils of subterranean asteroid living and watch as their population grows until they're not simply surviving, but _thriving..._\n\u003e \n\u003e **Just make sure you do**…\n\u003e \n\u003e \n\u003e \n\u003e PriceRecommendationsMetacritic$24.9912979785","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/457140/Oxygen_Not_Included/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/457140/Oxygen_Not_Included/\"\u003e\u003cstrong\u003eOxygen Not Included\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003e\u003cp\u003eIn the space-colony simulation game \u003cem\u003eOxygen Not Included\u003c/em\u003e you’ll find that scarcities of oxygen, warmth and sustenance are constant threats to your colony's survival. Guide colonists through the perils of subterranean asteroid living and watch as their population grows until they're not simply surviving, but \u003cem\u003ethriving...\u003c/em\u003e\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eJust make sure you do\u003c/strong\u003e…\u003c/p\u003e\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003cth\u003eMetacritic\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$24.99\u003c/td\u003e\u003ctd\u003e129797\u003c/td\u003e\u003ctd\u003e85\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003cp class=\"discord-embed-image\"\u003e\u003cimg src=\"mxc://matrix.theocloud.dev/lGNsKGQIRdTtyIjUzheOBSjA\" alt=\"\" title=\"Embed image\"\u003e\u003c/p\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.278986527Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477042374713671802","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":483.186783,"event_ids":{"":"$jSfyhN1bE0BOcIeoVI2yKGHmCnP9XvlXPiE_PAuaoI8"},"time":"2026-03-06T19:14:17.279119507Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"330","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.282595555Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"330","time":"2026-03-06T19:14:17.282678527Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Va2JntpE7OUspxdnfsKfnYUGCqLApdyK6tM92PIb6Pc","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457282,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.282891197Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1168,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457060517375_55?ts=1742909518990&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":251.91087,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"müssen alle oder einer","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.312555218Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354085408136237076","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":275.262409,"event_ids":{"":"$v4dgo97aoKgj-MmUqEm3t0KEiZvEfXxKYTc_7IAejqk"},"time":"2026-03-06T19:14:17.312636794Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1177,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":150.201724,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:17.32919478Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1181,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.582716,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.334854096Z","message":"Request completed"} +{"level":"debug","transaction_id":"331","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.3367251Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"331","time":"2026-03-06T19:14:17.336961376Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$jSfyhN1bE0BOcIeoVI2yKGHmCnP9XvlXPiE_PAuaoI8","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457337,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.337049377Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1171,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457099949251_56?ts=1753257855916&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":240.584206,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"MAJA SCHUMMELT!!!!!!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.340679218Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397489479098568716","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":257.076121,"event_ids":{"":"$9d65YRz67ybzwF07rpeZe3l-eLm1hA5nknRbR9ixsPY"},"time":"2026-03-06T19:14:17.340778044Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457125767409_48?ts=1772722480777&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":229.145795,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja geht noch nicht, aber denke das ist gerade einfach server fehler","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.355073003Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479130033011425421","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":243.947528,"event_ids":{"":"$0Mk0tXqPzhUtB2ECQV0RGgbkszNyefczNsY0--hhj3A"},"time":"2026-03-06T19:14:17.355164636Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1185,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":15.501483,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.356922146Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1186,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.783151,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.365462733Z","message":"Request completed"} +{"level":"debug","transaction_id":"332","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.367694612Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"332","time":"2026-03-06T19:14:17.367773813Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$v4dgo97aoKgj-MmUqEm3t0KEiZvEfXxKYTc_7IAejqk","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457367,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.367968672Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$9d65YRz67ybzwF07rpeZe3l-eLm1hA5nknRbR9ixsPY","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457367,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.367976425Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$0Mk0tXqPzhUtB2ECQV0RGgbkszNyefczNsY0--hhj3A","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457367,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.368001638Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1175,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457157543459_57?ts=1756214354927&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":239.686733,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"danke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.397370296Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1409889934726398022","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":250.688002,"event_ids":{"":"$ya4Rj3No5hg11jZJ5mTSbCsUROXm3i4wvDL4p-qsxmM"},"time":"2026-03-06T19:14:17.397447053Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1189,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.798586,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.408817508Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1182,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":101.489143,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<58531 bytes>","time":"2026-03-06T19:14:17.415460901Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1183,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":92.06987,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:17.421448685Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151914607313128","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:17.421528584Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151914607313128","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":251.904444,"time":"2026-03-06T19:14:17.421589906Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"333","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.42738262Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"333","time":"2026-03-06T19:14:17.42747991Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ya4Rj3No5hg11jZJ5mTSbCsUROXm3i4wvDL4p-qsxmM","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457427,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.42769698Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1191,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.319962,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.429184829Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1192,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.640608,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.436678272Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1180,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457250837804_45?ts=1771919823851&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":234.580847,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"haloo?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.485603732Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475763445856075786","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":256.406335,"event_ids":{"":"$Ix5zc8pX8FCZ9NunroUxB0CHRKGQrcrtqLkp_HIU4xE"},"time":"2026-03-06T19:14:17.485723931Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1178,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824457222611625_11?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":277.751447,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:17.500446603Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","action":"initial backfill","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:17.500811599Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1195,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":22.999606,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.509514709Z","message":"Request completed"} +{"level":"debug","transaction_id":"334","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.523961994Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"334","time":"2026-03-06T19:14:17.524070109Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Ix5zc8pX8FCZ9NunroUxB0CHRKGQrcrtqLkp_HIU4xE","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457524,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.524250163Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1190,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":136.921783,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:17.546096463Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1184,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457335031076_12?ts=1742909938761&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":216.63307,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"nur einee","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.551843571Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354087168783679509","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":238.96198,"event_ids":{"":"$3fB0yjY15KoMj4oXFFctEyF2PRgY4WxiEVlKy10RVq4"},"time":"2026-03-06T19:14:17.551957553Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1199,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":13.375137,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.566102142Z","message":"Request completed"} +{"level":"debug","transaction_id":"335","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.570930265Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"335","event_id":"$hKY-UM62yC2C9b09Qq2Mm7c9JSQ4oN8_UGD8sXdYo4Y","time":"2026-03-06T19:14:17.570998222Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"335","time":"2026-03-06T19:14:17.571045016Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1188,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457365707041_49?ts=1772722488967&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":223.526359,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"also ich warte jetzt erstmal","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.589411358Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479130067362775291","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":234.057659,"event_ids":{"":"$RRyVd-onPjV5izX_lTTtU87xwib5C4qL941pj5JoNco"},"time":"2026-03-06T19:14:17.589497124Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1187,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457357117983_16?ts=1753257875530&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":241.112073,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich hab literally Josh vorgesagt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.598417932Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397489561365512363","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":257.420374,"event_ids":{"":"$A2MzjI-JONv3kfVzUco-BaBVdBHzDihkpx7OM7aqLzU"},"time":"2026-03-06T19:14:17.598524721Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1201,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":23.886741,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.614040522Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1202,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":22.290078,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.621458815Z","message":"Request completed"} +{"level":"debug","transaction_id":"336","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.624750339Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"336","time":"2026-03-06T19:14:17.624861668Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3fB0yjY15KoMj4oXFFctEyF2PRgY4WxiEVlKy10RVq4","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457625,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.625076153Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1197,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":144.730842,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:17.654686745Z","message":"Request completed"} +{"level":"debug","transaction_id":"337","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.660898792Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"337","time":"2026-03-06T19:14:17.660982533Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$A2MzjI-JONv3kfVzUco-BaBVdBHzDihkpx7OM7aqLzU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457661,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.661214619Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$RRyVd-onPjV5izX_lTTtU87xwib5C4qL941pj5JoNco","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457661,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.661217482Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1198,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":127.335867,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:17.673626212Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1440632365822120017","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:17.673755071Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1440632365822120017","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":276.091786,"time":"2026-03-06T19:14:17.673854805Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1194,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457436936898_38?ts=1772727701929&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":240.863295,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bodenlos","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.677970049Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151932110147747","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":256.288092,"event_ids":{"":"$_6YJxOwyRsQLoQYd6oAUG9RamRC_5qu0UkTG9TK8Gr0"},"time":"2026-03-06T19:14:17.6780716Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1196,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":178.403039,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:17.679322335Z","message":"Request completed"} +{"level":"info","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:17.685286163Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"741981427750404108","time":"2026-03-06T19:14:17.685359357Z","message":"Found other user ID"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:17.685552611Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1193,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457429375917_50?ts=1772225306541&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":258.117749,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/1044720/Farthest_Frontier/\n\u003e [**Farthest Frontier**](https://store.steampowered.com/app/1044720/Farthest_Frontier/)\n\u003e \n\u003e Protect and guide your small band of settlers to forge a town from untamed wilderness at the edge of the known world. Harvest raw materials, hunt, fish and farm to sustain your advancing town. Produce crafted items for villagers to trade, consume, equip and fight with as you battle for your survival against the elements and outside threats (paci…\n\u003e \n\u003e PriceRecommendationsMetacritic$34.992237383","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/1044720/Farthest_Frontier/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/1044720/Farthest_Frontier/\"\u003e\u003cstrong\u003eFarthest Frontier\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003eProtect and guide your small band of settlers to forge a town from untamed wilderness at the edge of the known world. Harvest raw materials, hunt, fish and farm to sustain your advancing town. Produce crafted items for villagers to trade, consume, equip and fight with as you battle for your survival against the elements and outside threats (paci…\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003cth\u003eMetacritic\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$34.99\u003c/td\u003e\u003ctd\u003e22373\u003c/td\u003e\u003ctd\u003e83\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003cp class=\"discord-embed-image\"\u003e\u003cimg src=\"mxc://matrix.theocloud.dev/wbXMbssdEuKLwBvwmwmsPmVq\" alt=\"\" title=\"Embed image\"\u003e\u003c/p\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.687868719Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477044733124542589","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":408.671967,"event_ids":{"":"$qemvtHLsrie4dyhd3uzetulpgSUdNd7eSXmwe28pTj4"},"time":"2026-03-06T19:14:17.688085509Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1206,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.783513,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.696233374Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1207,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.053033,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.699917412Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1208,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":18.245445,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_741981427750404108","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:17.704090345Z","message":"Request completed"} +{"level":"debug","transaction_id":"338","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.713939916Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"338","time":"2026-03-06T19:14:17.714014856Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_6YJxOwyRsQLoQYd6oAUG9RamRC_5qu0UkTG9TK8Gr0","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457714,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.714243939Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"339","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.735708342Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"339","time":"2026-03-06T19:14:17.735808077Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qemvtHLsrie4dyhd3uzetulpgSUdNd7eSXmwe28pTj4","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457735,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.736033248Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1205,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":100.480411,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:17.755419286Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475763526793433124","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:17.755534666Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475763526793433124","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":269.536744,"time":"2026-03-06T19:14:17.755650534Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1213,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":10.169797,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.766481109Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1200,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457566434311_17?ts=1742916814302&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":225.904207,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich würd jetzt paper abgeben","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.792508863Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354116006892535883","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":240.248893,"event_ids":{"":"$mCaJoGtK_TXtP59wI1ZxY9_oiYRMEic5VtuP1lklqNU"},"time":"2026-03-06T19:14:17.792633811Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1209,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":100.108222,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:17.796721537Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1215,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":18.39791,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.811758709Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1210,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":114.529735,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:17.814915718Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1203,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457614285808_51?ts=1772722492468&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":211.501133,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wird schon nicht an uns liegen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.825971813Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479130082046906520","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":236.245397,"event_ids":{"":"$BoAcjWypPB9BZU9pDwxsvmmKkeWiMyz1w0Jb49tUgU8"},"time":"2026-03-06T19:14:17.826077344Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"340","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.828738822Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"340","time":"2026-03-06T19:14:17.828861815Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mCaJoGtK_TXtP59wI1ZxY9_oiYRMEic5VtuP1lklqNU","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457828,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.829031741Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1204,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457621682659_58?ts=1753257880854&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":213.569231,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"HDF","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.835434597Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397489583695859814","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":236.625827,"event_ids":{"":"$5wh5qjwi3DOYMAU4mEfiInznWpdJTONoGT88bGgZKag"},"time":"2026-03-06T19:14:17.835494941Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1219,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.371015,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.839152299Z","message":"Request completed"} +{"level":"debug","transaction_id":"341","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.856446562Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"341","time":"2026-03-06T19:14:17.856529465Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BoAcjWypPB9BZU9pDwxsvmmKkeWiMyz1w0Jb49tUgU8","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457856,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.856782853Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$5wh5qjwi3DOYMAU4mEfiInznWpdJTONoGT88bGgZKag","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457856,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.856777684Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1216,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":77.784759,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:17.874678318Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1442803574152364223","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:17.874783291Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1442803574152364223","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":200.82037,"time":"2026-03-06T19:14:17.874909985Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1221,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":6.960965,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.882512172Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1218,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":69.636406,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:17.884699351Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151936614826044","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:17.884809702Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151936614826044","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":206.454333,"time":"2026-03-06T19:14:17.884891208Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1223,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":9.879603,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.895363631Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1220,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":74.464878,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:17.913932026Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1214,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457766718712_46?ts=1771923142245&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":156.919848,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"halo!ß","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.923836283Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475777364209438750","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":168.057169,"event_ids":{"":"$53AI8_fp9rUAyUpSjTX6EkytmI9PDp9e-Sto9pYXxro"},"time":"2026-03-06T19:14:17.92396179Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1226,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":11.982901,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.936807243Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","action":"initial backfill","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","limit":100,"count":11,"time":"2026-03-06T19:14:17.943626848Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","action":"initial backfill","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","limit":100,"count":11,"found_all":false,"time":"2026-03-06T19:14:17.943731821Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","action":"initial backfill","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:17.943822895Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","transaction_id":"342","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.952302929Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"342","time":"2026-03-06T19:14:17.952402035Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$53AI8_fp9rUAyUpSjTX6EkytmI9PDp9e-Sto9pYXxro","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824457952,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:17.95259487Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1217,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457811926470_18?ts=1742916825343&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":157.502612,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"code trau ich mich nicht, muss jemand anderes machen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:17.969561712Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354116053201977404","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":176.611096,"event_ids":{"":"$BwU39dMYu3A3WWkIWtrMKP4ypt_K-jKeQ4KCqhocmp8"},"time":"2026-03-06T19:14:17.969642939Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1229,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":14.839937,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:17.985002712Z","message":"Request completed"} +{"level":"debug","transaction_id":"343","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:17.987502994Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"343","time":"2026-03-06T19:14:17.98758897Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1212,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":280.687755,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38316 bytes>","time":"2026-03-06T19:14:17.999535973Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1228,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_311538896066314240:matrix.theocloud.dev?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":65.679774,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.0102101Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1231,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.642913,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.014465378Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1225,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":102.021061,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:18.01612462Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479130514437701874","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:18.016188526Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479130514437701874","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":189.754776,"time":"2026-03-06T19:14:18.016247263Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"344","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.021508827Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"344","time":"2026-03-06T19:14:18.021565958Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BwU39dMYu3A3WWkIWtrMKP4ypt_K-jKeQ4KCqhocmp8","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458021,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.021725059Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1235,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":17.040247,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.033673388Z","message":"Request completed"} +{"level":"debug","transaction_id":"345","content":{"pdu":0,"unstable_edu":3,"unstable_to_device":0},"time":"2026-03-06T19:14:18.054913319Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"345","time":"2026-03-06T19:14:18.054997339Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1222,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457882753686_59?ts=1772736209244&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":179.096293,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"WIE KONNTEST DU KAUFEN","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.062030312Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187614375608391","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":186.924071,"event_ids":{"":"$QcoHwzVBRu4O8G2TUZkUdU5Wj5Sh-67zUkqSqdDLGiw"},"time":"2026-03-06T19:14:18.062108395Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1237,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":11.541149,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.074181673Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1224,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457895595926_39?ts=1772727710400&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":188.62871,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yippie","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.084413909Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151967639965737","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":199.405575,"event_ids":{"":"$eBhslxTs8bJVhMEqBY9kprbBz-RVbasVy4TE03xO6JY"},"time":"2026-03-06T19:14:18.084519021Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"346","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.089762776Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"346","time":"2026-03-06T19:14:18.089841977Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QcoHwzVBRu4O8G2TUZkUdU5Wj5Sh-67zUkqSqdDLGiw","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458090,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.090052901Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1239,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.944631,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.100126315Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1232,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":105.964563,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22503 bytes>","time":"2026-03-06T19:14:18.111193655Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1241,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":15.217574,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.126885528Z","message":"Request completed"} +{"level":"debug","transaction_id":"347","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.132393216Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"347","time":"2026-03-06T19:14:18.13247123Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eBhslxTs8bJVhMEqBY9kprbBz-RVbasVy4TE03xO6JY","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458132,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.132711627Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1227,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457937121114_47?ts=1771923142638&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":213.858796,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.151155633Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475777365857796161","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":226.754955,"event_ids":{"":"$aNSj2amkGkomueN6xk1v3wIH48MMgIfmNCtDQTZsxss"},"time":"2026-03-06T19:14:18.151227082Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"348","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.175482101Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"348","time":"2026-03-06T19:14:18.17554901Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$aNSj2amkGkomueN6xk1v3wIH48MMgIfmNCtDQTZsxss","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458175,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.175772226Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1230,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824457985303662_48?ts=1742916856278&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":228.824939,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"möchte er .zip und github link?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.214379684Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354116182952902736","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":244.596782,"event_ids":{"":"$osG7EZ2J-azctoSeC8qPDC2OhxqjcTWgKlhvjAeu8HI"},"time":"2026-03-06T19:14:18.21450994Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1243,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":20.866484,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.236203496Z","message":"Request completed"} +{"level":"debug","transaction_id":"349","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.244407374Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"349","time":"2026-03-06T19:14:18.244678501Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1240,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":159.287429,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:18.259805909Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1234,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458014666524_52?ts=1772228761076&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":255.744998,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://www.techpowerup.com/download/visual-c-redistributable-runtime-package-all-in-one/","com.beeper.linkpreviews":[{"og:title":"Latest Visual C++ Redistributable Runtimes All-in-One Dec 2025 Down...","og:description":"This archive contains the latest version (December 2025) of all VCRedist Visual Studio C++ runtimes, installable with a single click by running the i","og:image":"mxc://matrix.theocloud.dev/fmjRkGmmDGqSriqAsYjThkDc","matrix:image:size":38316,"og:image:width":1200,"og:image:height":630,"og:image:type":"image/png","matched_url":"https://www.techpowerup.com/download/visual-c-redistributable-runtime-package-all-in-one/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.27061141Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477059222494777476","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":582.2656,"event_ids":{"":"$VvJG37RAhymcQ_WuH55hOEJpwGzDXyyLCTKwwoSg16A"},"time":"2026-03-06T19:14:18.270751933Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1236,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458033930059_53?ts=1772722605460&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":240.36057,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gleichen von vorhin","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.274455527Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479130555969699895","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":258.187661,"event_ids":{"":"$6WJ4qpQeDJFd-1qTkUVjX_u7vo42FQrjFQhNxjam--E"},"time":"2026-03-06T19:14:18.274575935Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1233,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458010423748_1?ts=1771239798329&user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":271.57425,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wir haben am 7. April unseren Vortrag","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.282172395Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1472911212089053406","message_type":0,"author_id":"311538896066314240","action":"discord message create","handling_time":338.204228,"event_ids":{"":"$nxh8L3szwTlCL8QBaODdPRfGpNX_5G1SzPuYKImxlQQ"},"time":"2026-03-06T19:14:18.282294758Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1246,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.755575,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.293410848Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1247,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.484168,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.295801059Z","message":"Request completed"} +{"level":"debug","transaction_id":"350","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.297598658Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"350","time":"2026-03-06T19:14:18.297715993Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$osG7EZ2J-azctoSeC8qPDC2OhxqjcTWgKlhvjAeu8HI","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458297,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.297923075Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$VvJG37RAhymcQ_WuH55hOEJpwGzDXyyLCTKwwoSg16A","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458297,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.29793837Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1248,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_311538896066314240:matrix.theocloud.dev?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":17.540527,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.300518692Z","message":"Request completed"} +{"level":"debug","transaction_id":"351","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.323983865Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"351","time":"2026-03-06T19:14:18.324103575Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6WJ4qpQeDJFd-1qTkUVjX_u7vo42FQrjFQhNxjam--E","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458324,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.324316733Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$nxh8L3szwTlCL8QBaODdPRfGpNX_5G1SzPuYKImxlQQ","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458324,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.324388322Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1238,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458074378209_60?ts=1772736212174&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":253.474009,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"frech","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.327999305Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187626664661072","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":265.720914,"event_ids":{"":"$HDqJhwW8-kOpWKUV7YJaFRU4gt7OSH_mcQ9HmQpzdU4"},"time":"2026-03-06T19:14:18.328110354Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1252,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.905306,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.340922492Z","message":"Request completed"} +{"level":"debug","transaction_id":"352","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.356985577Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"352","time":"2026-03-06T19:14:18.357081749Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HDqJhwW8-kOpWKUV7YJaFRU4gt7OSH_mcQ9HmQpzdU4","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458357,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.357290438Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1245,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.804626,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:18.367815243Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151977706553365","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:18.367919308Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479151977706553365","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":283.201027,"time":"2026-03-06T19:14:18.368043068Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1242,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458127060622_9?ts=1753277526753&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":251.665304,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 3 day streak!** 🔥 Here are yesterday's results:\n👑 5/6: @Maja\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 3 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 5/6: @Maja\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$PB3dw_8wt-vSNpfGwMn0tzcVAgN7QXMdfQCswSxizmg"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.378987276Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1254,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.239223,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.38183181Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1255,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":18.671972,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.397904882Z","message":"Request completed"} +{"level":"debug","transaction_id":"353","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.408674834Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"353","time":"2026-03-06T19:14:18.408788886Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yGiZevJxFnVrf-Dv-QkMDJ4k-2UJhMLvQw52kSsI7c8","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458408,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.408965866Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1244,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458236525748_19?ts=1742916883992&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":217.747542,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich denke nur zip","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.454464169Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354116299193716871","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":239.566814,"event_ids":{"":"$7Hp3MnODIbEru3rOnlyxfrsfGV3LHDiLwgpUZjaslJE"},"time":"2026-03-06T19:14:18.454566767Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1253,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":114.320068,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:18.455573612Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1258,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":13.394622,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.468645354Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1256,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":111.511154,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:18.493721718Z","message":"Request completed"} +{"level":"debug","transaction_id":"354","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.495840801Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"354","time":"2026-03-06T19:14:18.495926637Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7Hp3MnODIbEru3rOnlyxfrsfGV3LHDiLwgpUZjaslJE","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458496,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.496150901Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1249,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458293664655_54?ts=1772231280319&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":211.767021,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"WINEDLLOVERRIDES=\"OnlineFix64=n;SteamOverlay64=n;winmm=n,b;dnet=n;steam_api64=n;winhttp=n,b\" %command%","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"WINEDLLOVERRIDES=\u0026quot;OnlineFix64=n;SteamOverlay64=n;winmm=n,b;dnet=n;steam_api64=n;winhttp=n,b\u0026quot; %command%","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.505636384Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477069788965765294","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":234.494382,"event_ids":{"":"$i2gO003nQqJyrKwK315MFMsaiFu6vQuGvMgNTbUMCic"},"time":"2026-03-06T19:14:18.505745268Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1250,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458295942279_55?ts=1772722613457&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":211.951126,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Kannst du mir eine DIrect Message schicken?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.508030366Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479130589511548990","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":233.18491,"event_ids":{"":"$FPA17BYHyzfB2ncx3t2TgLHWAI3RNxhkBz4ZoP0s100"},"time":"2026-03-06T19:14:18.508184159Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1251,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458300751057_2?ts=1771248131351&user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":208.475776,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Würdet ihr Melvin und Valentin noch mit aufnehmen wollen? Die hatten mich vorhin angeschrieben und von mir aus gerne...","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.509405071Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1472946163316559895","message_type":0,"author_id":"311538896066314240","action":"discord message create","handling_time":226.843445,"event_ids":{"":"$JlvLi9W-Wy-anU8biKTO6c_CzK5zL2j36A_pCU98YYQ"},"time":"2026-03-06T19:14:18.509500335Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1262,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.26591,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.526602672Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1264,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.056451,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.527218122Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1263,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.627833,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.529567964Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1211,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":827.875861,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"state_key":"fi.mau.discord://discord/dm/741982362241597471","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_741981427750404108:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"741982362241597471","external_url":"https://discord.com/channels/@me/741982362241597471"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/741982362241597471","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_741981427750404108:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"741982362241597471","external_url":"https://discord.com/channels/@me/741982362241597471"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:18.532498195Z","message":"Request completed"} +{"level":"info","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","time":"2026-03-06T19:14:18.533108546Z","message":"Matrix room created"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:18.535711007Z","message":"Unhandled event"} +{"level":"debug","transaction_id":"355","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.550634057Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"355","time":"2026-03-06T19:14:18.550710255Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$i2gO003nQqJyrKwK315MFMsaiFu6vQuGvMgNTbUMCic","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458550,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.550918454Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1259,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.405909,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:18.575267062Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187714845839470","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:18.575415407Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187714845839470","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":246.837459,"time":"2026-03-06T19:14:18.575503059Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"356","content":{"pdu":8,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.577452635Z","message":"Starting handling of transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FPA17BYHyzfB2ncx3t2TgLHWAI3RNxhkBz4ZoP0s100","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458577,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.577801777Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$JlvLi9W-Wy-anU8biKTO6c_CzK5zL2j36A_pCU98YYQ","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458577,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.577801777Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"356","time":"2026-03-06T19:14:18.57791541Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1269,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":11.76192,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.587841178Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1261,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":130.32253,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:18.624269349Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479152038339150122","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:18.624398627Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479152038339150122","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":256.248142,"time":"2026-03-06T19:14:18.624531747Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1257,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458398151495_10?ts=1753277526753&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":246.478261,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22503,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xPkhxYxhRILExMcnuTbdxoRw"},"time":"2026-03-06T19:14:18.64554895Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397571984568615052","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":810.220304,"event_ids":{"":"$yGiZevJxFnVrf-Dv-QkMDJ4k-2UJhMLvQw52kSsI7c8","1397571984283406476":"$9V5q7Q9e_5YfjYEHM_TLWWAeIxUIML1u0rPR7n3Qpm0"},"time":"2026-03-06T19:14:18.646034424Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1271,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":32.253422,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.65735089Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1267,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":142.830854,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:18.672695787Z","message":"Request completed"} +{"level":"debug","transaction_id":"357","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.675455812Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"357","time":"2026-03-06T19:14:18.675556036Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$9V5q7Q9e_5YfjYEHM_TLWWAeIxUIML1u0rPR7n3Qpm0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458675,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:18.675782534Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1266,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":154.212903,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:18.681794274Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1260,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458468894412_20?ts=1742916903843&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":330.610911,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"kannst ihm den link dazuschreiben, dann freut er sich vielleicht über die readme","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.799695643Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354116382454845592","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":344.872275,"event_ids":{"":"$zoQ_ujgx_Y5AToBZozHKSrtVQ0i2fwHIS4AXQkwtL5w"},"time":"2026-03-06T19:14:18.799813816Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1276,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":13.23636,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.81386272Z","message":"Request completed"} +{"level":"debug","transaction_id":"358","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.837885654Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"358","time":"2026-03-06T19:14:18.838004874Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$zoQ_ujgx_Y5AToBZozHKSrtVQ0i2fwHIS4AXQkwtL5w","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458838,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.83822376Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1265,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458526799767_56?ts=1772273156413&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":319.441183,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:18.846401377Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477245430034333797","message_type":3,"author_id":"122672447207112706","action":"discord message create","handling_time":340.429122,"event_ids":{"":"$VM8Dnpitr3xCFQXm1QtLkPIza1OkSJ03x1wMn6E7kFQ"},"time":"2026-03-06T19:14:18.846522065Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1272,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":216.387714,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1952375 bytes>","time":"2026-03-06T19:14:18.864269395Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1278,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":23.849306,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.871128181Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1274,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":204.145209,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:18.877050174Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131142169825301","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:18.87715787Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131142169825301","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":368.646012,"time":"2026-03-06T19:14:18.877278697Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1279,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.020416,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.884763759Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1268,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":358.256142,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:18.891604247Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1281,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.693621,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.894882781Z","message":"Request completed"} +{"level":"debug","transaction_id":"359","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.898102927Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"359","time":"2026-03-06T19:14:18.898207201Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$VM8Dnpitr3xCFQXm1QtLkPIza1OkSJ03x1wMn6E7kFQ","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458898,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:18.898443268Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1270,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458588006495_61?ts=1772736239836&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":335.943435,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"komplett tot","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.924077252Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187742687756409","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":348.410972,"event_ids":{"":"$B9s1bWgKFDsfZlo6vCnQi3SYO4WZI5inhypObEhk51g"},"time":"2026-03-06T19:14:18.924167838Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"360","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.933847622Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"360","time":"2026-03-06T19:14:18.933958182Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$B9s1bWgKFDsfZlo6vCnQi3SYO4WZI5inhypObEhk51g","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458934,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.934196134Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1285,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":11.789019,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.936591025Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1273,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458657583535_40?ts=1772728491895&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":304.142591,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wowie","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:18.96186141Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479155245467566314","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":337.192982,"event_ids":{"":"$qmhpUmRbmX0cA0qsssGLHk3l2zBL58EiO4zfy8QThSo"},"time":"2026-03-06T19:14:18.961953393Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1288,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.776305,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:18.971379929Z","message":"Request completed"} +{"level":"debug","transaction_id":"361","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:18.986221263Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"361","time":"2026-03-06T19:14:18.986314363Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qmhpUmRbmX0cA0qsssGLHk3l2zBL58EiO4zfy8QThSo","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824458986,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:18.986485197Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1282,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":122.732425,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.007801115Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1277,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458814144254_21?ts=1742916937878&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":249.906956,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"und beim code muss auch die exe dazu? letztes mal waren das zwei abgaben oder nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.064221904Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354116525207851028","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":264.12851,"event_ids":{"":"$ITMV0nNJ93wlyt8368ofm0vI2ciLlSU7JXCJAY7r9KQ"},"time":"2026-03-06T19:14:19.064367805Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1287,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":126.443841,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24627 bytes>","time":"2026-03-06T19:14:19.067903358Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1291,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":25.473487,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.090582667Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1292,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":23.984451,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.092512408Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1275,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":422.979216,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.104926725Z","message":"Request completed"} +{"level":"debug","transaction_id":"362","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.113539738Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"362","time":"2026-03-06T19:14:19.113620825Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ITMV0nNJ93wlyt8368ofm0vI2ciLlSU7JXCJAY7r9KQ","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459113,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.113830701Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1280,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458871288958_41?ts=1772280446990&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":253.20288,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hat das game jetzt funktioniert?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.12461958Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477276008930480138","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":277.76814,"event_ids":{"":"$mOIqDfAuCarAMSCRS_NclowWiKMLDTrkK9jzznJRMhY"},"time":"2026-03-06T19:14:19.124701016Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1284,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458895113470_57?ts=1772722746436&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":232.87921,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich bekomme alles","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.128139419Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131147265904752","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":250.683322,"event_ids":{"":"$ZkCq8yeHOMdxV8iDO5BhSa9qVydKHAjmszEOI7Rf_x0"},"time":"2026-03-06T19:14:19.128221064Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1296,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.058474,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.140300627Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1297,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.906218,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.143738332Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1289,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":176.355405,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.148038588Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1290,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":141.939736,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.149919718Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475777474188017675","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"video_https://cdn.discordapp.com/attachments/1167763580809134111/1448432282489720964/jynxi_moredaddy_short.gif","time":"2026-03-06T19:14:19.150002831Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1475777474188017675","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":998.600375,"time":"2026-03-06T19:14:19.150098235Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"363","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.152392971Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"363","time":"2026-03-06T19:14:19.152593349Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1301,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.518309,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.16007436Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1286,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824458936769471_62?ts=1772736249517&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":246.418127,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"warum ich nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.18339496Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187783292551350","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":259.005932,"event_ids":{"":"$72rkQQvLNnA-kFufgZ4RSSlHTUMnq20PKC9HG6lo4g4"},"time":"2026-03-06T19:14:19.183519628Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"364","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.187246689Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"364","time":"2026-03-06T19:14:19.187363046Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mOIqDfAuCarAMSCRS_NclowWiKMLDTrkK9jzznJRMhY","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459187,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.187547081Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$ZkCq8yeHOMdxV8iDO5BhSa9qVydKHAjmszEOI7Rf_x0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459187,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.18758703Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1303,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.441912,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.203735113Z","message":"Request completed"} +{"level":"debug","transaction_id":"365","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.225257066Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"365","time":"2026-03-06T19:14:19.225362458Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$72rkQQvLNnA-kFufgZ4RSSlHTUMnq20PKC9HG6lo4g4","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459225,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.225560321Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1300,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":105.306579,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.253496096Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479155538615865507","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:19.253582351Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479155538615865507","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":291.392542,"time":"2026-03-06T19:14:19.253661622Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1283,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":374.178843,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:19.266108625Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1305,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.400559,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.267566721Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1306,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_741981427750404108:matrix.theocloud.dev/displayname?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":22.863204,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:19.289497461Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1302,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":135.87771,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.296255046Z","message":"Request completed"} +{"level":"debug","transaction_id":"366","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.331971245Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"366","time":"2026-03-06T19:14:19.332285465Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1293,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459090773546_49?ts=1742918451385&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":263.811217,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://moodle.hwr-berlin.de/mod/assign/view.php?id=1889256\u0026action=view\nabgegeben!","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://moodle.hwr-berlin.de/mod/assign/view.php?id=1889256\u0026amp;action=view\u003cbr\u003e\nabgegeben!","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.354755527Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354122873316577361","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":290.061489,"event_ids":{"":"$h8WPIu-_2RfcJOphPIOf1AFJKOY6sFFfgR6rTDYJAv4"},"time":"2026-03-06T19:14:19.354862455Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1294,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459092687433_11?ts=1753344496005&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":263.392792,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 4 day streak!** 🔥 Here are yesterday's results:\n👑 2/6: Maja\n6/6: lagopodus\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 4 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 2/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e\u003cbr\u003e\n6/6: \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev","@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$5DIJ2ApCpt6Qq0xO5VQDuLuchFbX0cX-B812Uh218x8"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.35641421Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1304,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":165.402047,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.369458155Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1310,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":21.893584,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.377437211Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1311,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":21.266401,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.377947897Z","message":"Request completed"} +{"level":"debug","transaction_id":"367","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.400482423Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"367","time":"2026-03-06T19:14:19.400574615Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$h8WPIu-_2RfcJOphPIOf1AFJKOY6sFFfgR6rTDYJAv4","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459400,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.400823323Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1298,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459140478795_13?ts=1772280546027&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":272.327708,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.412929635Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477276424321765448","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":288.019512,"event_ids":{"":"$yBmXor7GmnvutZKagWpMmxwzypJhRKfO3vAtA38njB8"},"time":"2026-03-06T19:14:19.413012887Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1299,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459143886886_58?ts=1772722750841&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":280.806625,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber kriege immer den gleichen error","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.424816085Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131165741940758","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":296.331645,"event_ids":{"":"$6vvZwOT-iOyzdDFXElW9cHW-Py4oCvtO7JzQNg-QIZ0"},"time":"2026-03-06T19:14:19.424901502Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1315,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":20.144874,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.433739896Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1316,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.657236,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.445142548Z","message":"Request completed"} +{"level":"debug","transaction_id":"368","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.452805289Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"368","time":"2026-03-06T19:14:19.452919201Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$cqGsacARaC_MP9G9dyvI1RN3LRGIBE7n98gLodMOcPM","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459453,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.453140531Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1309,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":161.231348,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.457653667Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476512564669055130","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:19.457730493Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476512564669055130","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":307.527774,"time":"2026-03-06T19:14:19.457795307Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1319,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.462161,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.472698661Z","message":"Request completed"} +{"level":"debug","transaction_id":"369","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.489415119Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"369","time":"2026-03-06T19:14:19.489504797Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yBmXor7GmnvutZKagWpMmxwzypJhRKfO3vAtA38njB8","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459489,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.489732413Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$6vvZwOT-iOyzdDFXElW9cHW-Py4oCvtO7JzQNg-QIZ0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459489,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.489735206Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1295,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":391.120194,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.496353875Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1312,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":131.320226,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.5009379Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187833951490219","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:19.501022409Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187833951490219","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":317.181787,"time":"2026-03-06T19:14:19.501094277Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1322,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.024956,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.522622376Z","message":"Request completed"} +{"level":"debug","transaction_id":"370","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.550262369Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"370","time":"2026-03-06T19:14:19.550512335Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1307,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459267822693_42?ts=1772728565965&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":290.923482,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"haha","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.558932793Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479155556139929762","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":305.173951,"event_ids":{"":"$U9T-FZ4yyUk94I3VoMVQz3Wxb7li3PimM45Qd1ZKuYY"},"time":"2026-03-06T19:14:19.559019118Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1324,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.427031,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.574004886Z","message":"Request completed"} +{"level":"debug","transaction_id":"371","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.593803762Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"371","time":"2026-03-06T19:14:19.593878563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$U9T-FZ4yyUk94I3VoMVQz3Wxb7li3PimM45Qd1ZKuYY","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459593,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.594047791Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1318,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":154.620641,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.600061137Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1320,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":132.103925,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.605095365Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1313,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459377622013_50?ts=1742918460642&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":252.449003,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"funktioniert der link auch bei euch?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.630248067Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354122912142983280","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":275.153036,"event_ids":{"":"$gVDCp_-rkC02-yMZHfGzC9KvU1lp1wOc_CaVFtGnW9A"},"time":"2026-03-06T19:14:19.630386284Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1314,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459378183126_12?ts=1753344496005&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":253.301847,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 solved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24627,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/aWCpajAUSMfJrRIytIyUckMS"},"time":"2026-03-06T19:14:19.63171203Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397852873970417684","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":985.322388,"event_ids":{"":"$cqGsacARaC_MP9G9dyvI1RN3LRGIBE7n98gLodMOcPM","1397852864507809923":"$sx6B7vcLsxzWIC2lp2Udk_NuFTWbZlT-WpjLKFXNVFk"},"time":"2026-03-06T19:14:19.631842285Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1323,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":125.108178,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.648047988Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1328,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":21.832612,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.652949515Z","message":"Request completed"} +{"level":"debug","transaction_id":"372","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.677870271Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"372","time":"2026-03-06T19:14:19.677945212Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gVDCp_-rkC02-yMZHfGzC9KvU1lp1wOc_CaVFtGnW9A","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459678,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.678149849Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1317,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459433937550_43?ts=1772280552073&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":262.166992,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"tooop","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.696226206Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477276449680392273","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":282.988496,"event_ids":{"":"$FuPiDZDjqsNQNhvgSTAoF8auNO3wdy9EZ56lFrPTXYs"},"time":"2026-03-06T19:14:19.696310087Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1331,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.265143,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.71724774Z","message":"Request completed"} +{"level":"debug","transaction_id":"373","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.730787215Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"373","time":"2026-03-06T19:14:19.730897566Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$sx6B7vcLsxzWIC2lp2Udk_NuFTWbZlT-WpjLKFXNVFk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459731,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:19.731077549Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1325,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":160.722128,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.735137478Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1326,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":137.028641,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.737275279Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131236885725334","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:19.737412728Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131236885725334","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":312.301071,"time":"2026-03-06T19:14:19.737504291Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1308,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_741981427750404108:matrix.theocloud.dev/displayname?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":451.221179,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"theosTablet"},"time":"2026-03-06T19:14:19.740877182Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1327,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":136.729925,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.742045852Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476512608264781904","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:19.742124564Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476512608264781904","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":284.226241,"time":"2026-03-06T19:14:19.742207118Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1334,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.810464,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.752843461Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1335,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.639765,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.753369233Z","message":"Request completed"} +{"level":"debug","transaction_id":"374","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.761562635Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"374","time":"2026-03-06T19:14:19.761789762Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FuPiDZDjqsNQNhvgSTAoF8auNO3wdy9EZ56lFrPTXYs","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459761,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.761838302Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1329,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.316302,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.767553352Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187888469049570","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:19.767662446Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187888469049570","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":266.434211,"time":"2026-03-06T19:14:19.767734314Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1338,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.777143,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.777051686Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1321,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459496663765_14?ts=1771248291972&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":286.520348,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hab schon den beiden abgesagt, weil ich null Bock auf so eine große Gruppe hab","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.783347195Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1472946837009862747","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1273.559389,"event_ids":{"":"$0GAcXS2MZSNFpPUltZCR2lihs4OcbOCXWnIizv605WA"},"time":"2026-03-06T19:14:19.783425977Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1340,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_311538896066314240:matrix.theocloud.dev?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":10.690889,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.794703402Z","message":"Request completed"} +{"level":"debug","transaction_id":"375","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.805884724Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"375","time":"2026-03-06T19:14:19.805978173Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0GAcXS2MZSNFpPUltZCR2lihs4OcbOCXWnIizv605WA","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459806,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.806200481Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1333,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":81.11302,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.816436139Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479156176687071252","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:19.816532522Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479156176687071252","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":257.341452,"time":"2026-03-06T19:14:19.816645247Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1342,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.19033,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.826554113Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1337,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":87.5853,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.84135445Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1330,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459653109803_51?ts=1742918463317&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":202.613848,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das wäre lustig","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.855895603Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354122923362750464","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":225.226108,"event_ids":{"":"$bHZHYplREcvFm95DSDIgJ3foQc7gvGavkCfCQy7D4so"},"time":"2026-03-06T19:14:19.856017547Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1345,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.68475,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.872613598Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1339,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":98.950727,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.87630043Z","message":"Request completed"} +{"level":"debug","transaction_id":"376","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.892311761Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"376","time":"2026-03-06T19:14:19.892410099Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bHZHYplREcvFm95DSDIgJ3foQc7gvGavkCfCQy7D4so","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459892,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.892631499Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1332,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459717537306_15?ts=1772280560520&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":195.54777,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"musste eine start option reinmachen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.913225179Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477276485109940337","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":216.6682,"event_ids":{"":"$mILrjvl-QOUEFNNi1vbk8LFHgiKjF0y6QMkinV3mT-0"},"time":"2026-03-06T19:14:19.913384419Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1349,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":16.693131,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.930725826Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1336,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459753013317_59?ts=1772722773147&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":179.149024,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"liegt nicht an uns","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.932301117Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131259300090047","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":194.672926,"event_ids":{"":"$7ow5GcIuWGbVAeEXo8b1KPZ0x0SoJWRyUwo6e89CDV0"},"time":"2026-03-06T19:14:19.932405951Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1343,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":113.871611,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:19.940760618Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1351,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":11.320866,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.94427452Z","message":"Request completed"} +{"level":"debug","transaction_id":"377","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.946660959Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"377","time":"2026-03-06T19:14:19.946747494Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mILrjvl-QOUEFNNi1vbk8LFHgiKjF0y6QMkinV3mT-0","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459946,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.94694843Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1344,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.554591,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.949085952Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476512649087815700","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:19.949175839Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476512649087815700","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":206.855925,"time":"2026-03-06T19:14:19.949244074Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1348,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":91.824515,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:19.968392789Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187895028813835","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:19.968503698Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187895028813835","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":200.612728,"time":"2026-03-06T19:14:19.968599591Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"378","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:19.969316033Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"378","time":"2026-03-06T19:14:19.969425546Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7ow5GcIuWGbVAeEXo8b1KPZ0x0SoJWRyUwo6e89CDV0","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824459969,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:19.969633326Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1354,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.031439,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:19.978161552Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1341,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459794885132_3?ts=1771248448483&user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":194.505933,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"achso","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:19.989537734Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1472947493464445115","message_type":0,"author_id":"311538896066314240","action":"discord message create","handling_time":205.868426,"event_ids":{"":"$MHfHbmnN65C1j-I0r6oPpVX4P1D60Nl4Im5LWYsBXA4"},"time":"2026-03-06T19:14:19.989645919Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1346,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":119.878672,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<25469 bytes>","time":"2026-03-06T19:14:19.992089489Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1356,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":12.801522,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.003396667Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1357,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":16.110019,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.008810348Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1352,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":72.969067,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:20.013882291Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479164099450376282","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:20.013955835Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479164099450376282","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":197.124807,"time":"2026-03-06T19:14:20.014021696Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"379","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.016124575Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"379","time":"2026-03-06T19:14:20.01619337Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MHfHbmnN65C1j-I0r6oPpVX4P1D60Nl4Im5LWYsBXA4","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460016,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.016409811Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.200527,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.023665511Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1347,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459872792324_16?ts=1742918466803&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":183.120671,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jippieee danke alex","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.056055125Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354122937984352357","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":199.551336,"event_ids":{"":"$VrpRjiB8onOglDCui_q-a8_7aS6dMPplHB7IYY9ZdFM"},"time":"2026-03-06T19:14:20.056128669Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1363,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.891342,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.072515402Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1355,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":101.83102,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:20.080359802Z","message":"Request completed"} +{"level":"debug","transaction_id":"380","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.08932957Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"380","time":"2026-03-06T19:14:20.08942253Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$VrpRjiB8onOglDCui_q-a8_7aS6dMPplHB7IYY9ZdFM","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460089,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.089599091Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1350,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459930899244_44?ts=1772280565325&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":178.606559,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"i see","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.109650027Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477276505263444221","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":196.00356,"event_ids":{"":"$xAREYho4OxBpKPnihseJGCtWvXWUX937jJPZxWtovho"},"time":"2026-03-06T19:14:20.109747737Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1362,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":81.258153,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<29938 bytes>","time":"2026-03-06T19:14:20.110694588Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1366,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.291186,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.123575171Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1367,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_741981427750404108:matrix.theocloud.dev/avatar_url?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":15.382891,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:20.126349235Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1353,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824459944454015_60?ts=1772722775579&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":188.431195,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bin ich mir sicher","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.133021123Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131269500768256","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":200.419964,"event_ids":{"":"$VTNHfbzoxgX0VLKsWwMVXVV8guPnWfo7T_d39ZiCa0A"},"time":"2026-03-06T19:14:20.133101232Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1361,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":113.398639,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:20.137435502Z","message":"Request completed"} +{"level":"debug","transaction_id":"381","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.142380331Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"381","time":"2026-03-06T19:14:20.142439977Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xAREYho4OxBpKPnihseJGCtWvXWUX937jJPZxWtovho","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460142,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.142592582Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1370,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":11.153804,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.14479373Z","message":"Request completed"} +{"level":"debug","transaction_id":"382","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.167308839Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"382","time":"2026-03-06T19:14:20.167410739Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$VTNHfbzoxgX0VLKsWwMVXVV8guPnWfo7T_d39ZiCa0A","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460167,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.167586742Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1365,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":92.269618,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:20.172821906Z","message":"Request completed"} +{"level":"error","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187909075796251","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !whjfmmHRLrqVzwMyWf:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:20.172887208Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187909075796251","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":204.137456,"time":"2026-03-06T19:14:20.172933653Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1373,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":8.095552,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.181412989Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1359,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460008983347_13?ts=1753344657883&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":187.077234,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"FloJ and Maja were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"FloJ and Maja were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$cqGsacARaC_MP9G9dyvI1RN3LRGIBE7n98gLodMOcPM"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.196289943Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1358,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460003542079_45?ts=1771253298868&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":197.169995,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"same, ich glaube wenn wir zu groß werden wird das stressig sorry 😢","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$0GAcXS2MZSNFpPUltZCR2lihs4OcbOCXWnIizv605WA"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.200870895Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1472967837453778945","message_type":19,"author_id":"316966695430520833","action":"discord message create","handling_time":210.997429,"event_ids":{"":"$aXE6NnpE5nAYc6D06jWM61pDFu9sHMi6wsEqFLVt2Io"},"time":"2026-03-06T19:14:20.200982992Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1375,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":19.809771,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.216348911Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1376,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_311538896066314240:matrix.theocloud.dev?user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":19.81047,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.221439641Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1371,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":91.802164,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:20.229371693Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479164320586797221","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:20.229448171Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479164320586797221","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":215.373465,"time":"2026-03-06T19:14:20.229555937Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"383","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.233611187Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"383","time":"2026-03-06T19:14:20.233715182Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$iJaDZsKchd17cuZHft2Ajf8OTWytYM5d6PqTa_fMjhc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460233,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.233896981Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"384","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.25195441Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"384","time":"2026-03-06T19:14:20.252048278Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$aXE6NnpE5nAYc6D06jWM61pDFu9sHMi6wsEqFLVt2Io","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460252,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.252227703Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1364,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460072721018_17?ts=1742918484227&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":193.747866,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja der geht","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"ja der geht","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.266653267Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354123011065647155","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":210.363751,"event_ids":{"":"$XCgmz495Cz2MEiHfgCw3kDVFbiPkUtgjCHZS74am_hI"},"time":"2026-03-06T19:14:20.266772417Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"385","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.307945111Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"385","time":"2026-03-06T19:14:20.308059442Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XCgmz495Cz2MEiHfgCw3kDVFbiPkUtgjCHZS74am_hI","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460308,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.308284684Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1368,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460123742164_18?ts=1772280579724&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":202.607911,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"du musst es wahrscheinlich einfach neu entpacken","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.326498909Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477276565657354310","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":216.574262,"event_ids":{"":"$ASC1U62zmslx2lbMYr4sub2kzA1RkuYkwN9cAToaHNg"},"time":"2026-03-06T19:14:20.326629863Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1380,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.250398,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.340592442Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1372,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460144950665_61?ts=1772722778087&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":213.96328,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich warte mal","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.359033026Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131280019820594","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":225.742452,"event_ids":{"":"$CaKXy_Qv8vFKtY9wTwgmJ39H_ABftI92ongDvnUhdcI"},"time":"2026-03-06T19:14:20.359150501Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"386","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.374147164Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"386","time":"2026-03-06T19:14:20.374256677Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ASC1U62zmslx2lbMYr4sub2kzA1RkuYkwN9cAToaHNg","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460374,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.374480172Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1382,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.388901,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.378294536Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1374,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21whjfmmHRLrqVzwMyWf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460181502876_63?ts=1772736285797&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":219.888136,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ey","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.401530208Z","message":"Request completed"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","message_id":"1479187935462166548","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":228.551436,"event_ids":{"":"$KwmxkmknJ9qNF_89jMDMwzYQPpw7Mvw4o7UE_uugZGc"},"time":"2026-03-06T19:14:20.401648241Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","action":"initial backfill","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:20.401922721Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","transaction_id":"387","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.410093005Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"387","time":"2026-03-06T19:14:20.410197419Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$CaKXy_Qv8vFKtY9wTwgmJ39H_ABftI92ongDvnUhdcI","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460410,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.410424267Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460216497186_14?ts=1753344657883&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":226.214725,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":25469,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/tSQIrWDXIOspJVFjmxxcWKbD"},"time":"2026-03-06T19:14:20.443073833Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397853552935702560","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":811.024954,"event_ids":{"":"$iJaDZsKchd17cuZHft2Ajf8OTWytYM5d6PqTa_fMjhc","1397856052862779482":"$4wfXDn2Q-S7cg1U48om-o-QH3-uVOTsh-Pu-ybZlvhQ"},"time":"2026-03-06T19:14:20.443262268Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"388","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.445439669Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"388","time":"2026-03-06T19:14:20.445537937Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KwmxkmknJ9qNF_89jMDMwzYQPpw7Mvw4o7UE_uugZGc","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460445,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.445735102Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_311538896066314240:matrix.theocloud.dev","req_id":1378,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460221605237_4?ts=1771264784045&user_id=%40discord_311538896066314240%3Amatrix.theocloud.dev","duration":228.526013,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Alles gut. die haben inzwischen wohl auch ne andere Gruppe gefunden 👍","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.450278758Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1473016009777484020","message_type":0,"author_id":"311538896066314240","action":"discord message create","handling_time":249.103141,"event_ids":{"":"$DIKpClRtYZR1zouyQiv_34GasryYK-bKzQgta5qHrc4"},"time":"2026-03-06T19:14:20.450432271Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1369,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_741981427750404108:matrix.theocloud.dev/avatar_url?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":339.312973,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EboUcTkkaJaWpzyfJNhwrnVP"},"time":"2026-03-06T19:14:20.465816489Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1386,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":22.401476,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.47351869Z","message":"Request completed"} +{"level":"debug","transaction_id":"389","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.479284236Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"389","time":"2026-03-06T19:14:20.479411978Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$DIKpClRtYZR1zouyQiv_34GasryYK-bKzQgta5qHrc4","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460479,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.479625835Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$4wfXDn2Q-S7cg1U48om-o-QH3-uVOTsh-Pu-ybZlvhQ","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460479,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:20.479625835Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1384,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":47.676262,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<377627 bytes>","time":"2026-03-06T19:14:20.491028137Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1383,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":115.100276,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:20.493793052Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1389,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":8.488974,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.499966197Z","message":"Request completed"} +{"level":"debug","transaction_id":"390","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.501868001Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"390","time":"2026-03-06T19:14:20.502136405Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":1385,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":65.475276,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.509613574Z","message":"Request completed"} +{"level":"debug","transaction_id":"391","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:20.541244282Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"391","time":"2026-03-06T19:14:20.541387319Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1379,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":280.682167,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<11311 bytes>","time":"2026-03-06T19:14:20.54395018Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1381,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460340749308_46?ts=1772280590095&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":212.36061,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"okok","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.553245692Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477276609156349995","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":226.312922,"event_ids":{"":"$XfUcIjkZ6v8FhjxNGTHBM8Waz8P7z4UyxwZ8vMXtwAI"},"time":"2026-03-06T19:14:20.55334396Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1393,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.955736,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.559403472Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1394,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.602617,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.571698498Z","message":"Request completed"} +{"level":"debug","transaction_id":"392","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.583451479Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"392","time":"2026-03-06T19:14:20.583553798Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XfUcIjkZ6v8FhjxNGTHBM8Waz8P7z4UyxwZ8vMXtwAI","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460583,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.583771007Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1390,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":95.576648,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:20.589519023Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131284432228452","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:20.589581811Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131284432228452","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":230.147261,"time":"2026-03-06T19:14:20.589650745Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1397,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":5.177195,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.595274092Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1395,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":73.516491,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:20.633231948Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1388,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460473746306_19?ts=1771264793906&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":164.875856,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Top","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.638775814Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1473016051137646677","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":188.044409,"event_ids":{"":"$zWF7oLUwBYEerzLyeJE8cjLJZ47iB8_oeslRVLaI3fI"},"time":"2026-03-06T19:14:20.638874921Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1387,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824460466239104_1?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":192.840824,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:20.659203061Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1400,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":19.918445,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.659408257Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","action":"initial backfill","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:20.659787081Z","message":"Fetching messages for backfill"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","old_name":"","new_name":"theosTablet","time":"2026-03-06T19:14:20.659883743Z","message":"Updating portal name"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","time":"2026-03-06T19:14:20.660187976Z","message":"Updating bridge info..."} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1391,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824460500269033_52?ts=1772098465147&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":162.693426,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"agony","url":"mxc://matrix.theocloud.dev/eXcKQUhwWjVVPTJMjTfJplya","info":{"mimetype":"image/apng","w":160,"h":146,"size":377627},"m.mentions":{}},"time":"2026-03-06T19:14:20.663166118Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476512721758589023","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":713.829084,"event_ids":{"1314362868745109514":"$u8LgEJhB833ImfQdwfr3cilH4RLOSI4Es4R-2lCN5RQ"},"time":"2026-03-06T19:14:20.66327165Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1404,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.13753,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.674150485Z","message":"Request completed"} +{"level":"debug","transaction_id":"393","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.677700845Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"393","time":"2026-03-06T19:14:20.677790104Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$zWF7oLUwBYEerzLyeJE8cjLJZ47iB8_oeslRVLaI3fI","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460677,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.678017929Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":1392,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460509797189_1?ts=1753345112172&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":185.064242,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gottlos","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.694974924Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397855458362134559","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":251.322448,"event_ids":{"":"$_1BZXAM_XOp4SeqGJz1PkZQs44ZrYVqdSbi9D9KnORs"},"time":"2026-03-06T19:14:20.695096519Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1406,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":16.252567,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.711984301Z","message":"Request completed"} +{"level":"debug","transaction_id":"394","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.714006164Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"394","event_id":"$vmEHLGULSnp3Qyf7-nShO1nNH00GglzB7Gp6rLralFI","time":"2026-03-06T19:14:20.714073841Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"394","time":"2026-03-06T19:14:20.714135302Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$u8LgEJhB833ImfQdwfr3cilH4RLOSI4Es4R-2lCN5RQ","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460714,"status":"SUCCESS","event_type":"m.sticker","reported_by":"BRIDGE","retry_num":0},"time":"2026-03-06T19:14:20.714375839Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1399,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.349198,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:20.75278725Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479164507648426055","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:20.752895854Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479164507648426055","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":523.251218,"time":"2026-03-06T19:14:20.753002154Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"395","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.75765239Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"395","time":"2026-03-06T19:14:20.757767629Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_1BZXAM_XOp4SeqGJz1PkZQs44ZrYVqdSbi9D9KnORs","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460757,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.757964235Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1396,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460571968648_20?ts=1772280607243&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":193.942865,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"den online fix einmal reinziehen und du hast die exclusion vom windows defender drin","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.766055667Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477276681080410204","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":212.383449,"event_ids":{"":"$L-QwphQLCQ8o_tbdTdnamFTmmWi9UisN8daEvFg-ELk"},"time":"2026-03-06T19:14:20.766145764Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1408,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.110651,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.772599116Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1409,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.976273,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.784732876Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1398,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460595491022_62?ts=1772722781877&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":200.531991,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich sag dir nachher bescheid","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.796181974Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131295916232799","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":206.441482,"event_ids":{"":"$ULGu4kji8I54Oo1GH6d9Blnz_2frpAZY3upBDd_HlsE"},"time":"2026-03-06T19:14:20.796284432Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"396","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.802775709Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"396","time":"2026-03-06T19:14:20.802878586Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$L-QwphQLCQ8o_tbdTdnamFTmmWi9UisN8daEvFg-ELk","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460803,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.803094818Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1412,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.513004,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.809487338Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1405,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":140.781403,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:20.815447883Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1402,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":158.664088,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:20.818639883Z","message":"Request completed"} +{"level":"info","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:20.819553209Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"680546220531515392","time":"2026-03-06T19:14:20.819608105Z","message":"Found other user ID"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"","old_name":"","new_name":"Amon","time":"2026-03-06T19:14:20.819961507Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:20.820024924Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","transaction_id":"397","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.832202755Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"397","time":"2026-03-06T19:14:20.832310801Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ULGu4kji8I54Oo1GH6d9Blnz_2frpAZY3upBDd_HlsE","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460832,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.832508315Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1415,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":14.585153,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_680546220531515392","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:20.835021378Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1401,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460659764313_47?ts=1771264794306&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":210.708492,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"supi","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.870669411Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1473016052815237392","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":231.651035,"event_ids":{"":"$o1qiTefNOt82AckN7O7gZpgPShO4XdLFimjYxhuY44I"},"time":"2026-03-06T19:14:20.870827045Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1410,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":98.17457,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:20.871056058Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1414,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":85.649483,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:20.90131709Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476512733091463383","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:20.902072992Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476512733091463383","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":238.649645,"time":"2026-03-06T19:14:20.902287338Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"398","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.904435126Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"398","time":"2026-03-06T19:14:20.904570481Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$o1qiTefNOt82AckN7O7gZpgPShO4XdLFimjYxhuY44I","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460904,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.904818001Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1403,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F741982362241597471?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":250.842492,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_741981427750404108:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"741982362241597471","displayname":"theosTablet","external_url":"https://discord.com/channels/@me/741982362241597471"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:20.911383031Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1413,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":111.360294,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:20.921169395Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1407,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460712296286_53?ts=1753347734541&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":220.129092,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wordle 1496 5/6\n\n🟨🟩⬛⬛⬛\n⬛🟩⬛🟨⬛\n⬛🟩⬛⬛🟨\n🟩🟩🟩⬛🟨\n🟩🟩🟩🟩🟩","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWordle 1496 5/6\u003c/p\u003e\n\u003cp\u003e🟨🟩⬛⬛⬛\u003cbr\u003e\n⬛🟩⬛🟨⬛\u003cbr\u003e\n⬛🟩⬛⬛🟨\u003cbr\u003e\n🟩🟩🟩⬛🟨\u003cbr\u003e\n🟩🟩🟩🟩🟩\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.93266361Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1397866457374658611","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":237.324599,"event_ids":{"":"$67msUUoKXeB1Ycfoyw8XuqBGIz8IUNLwJMvXJvVRjXY"},"time":"2026-03-06T19:14:20.9327609Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"399","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.94655928Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"399","time":"2026-03-06T19:14:20.946688977Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1420,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":31.70956,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<460438 bytes>","time":"2026-03-06T19:14:20.953328389Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","action":"initial backfill","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","limit":100,"count":24,"time":"2026-03-06T19:14:20.959587999Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","action":"initial backfill","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","limit":100,"count":24,"found_all":false,"time":"2026-03-06T19:14:20.959657702Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","action":"initial backfill","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:20.95968941Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1421,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.205501,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<62365 bytes>","time":"2026-03-06T19:14:20.962746544Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1422,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":10.631524,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.964318763Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1417,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":101.627849,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:20.972820867Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479398489430425742","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:20.972883795Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479398489430425742","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":219.737347,"time":"2026-03-06T19:14:20.972942043Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"400","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:20.974863752Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"400","time":"2026-03-06T19:14:20.974916553Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$67msUUoKXeB1Ycfoyw8XuqBGIz8IUNLwJMvXJvVRjXY","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824460975,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:20.975082638Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1423,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.575657,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.976662329Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1424,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.684538,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.977698718Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1411,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460784898822_21?ts=1772280620970&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":200.122715,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dann sollte es auch bei dir gehen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:20.98513084Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477276738655490160","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":218.709898,"event_ids":{"":"$6ql1dR-pBgERKPjL40pjBhoiJOqeRAwUcX4XJq91lwI"},"time":"2026-03-06T19:14:20.985187132Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1426,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.928639,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:20.990175753Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1429,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":16.092418,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.0017623Z","message":"Request completed"} +{"level":"debug","transaction_id":"401","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.017043221Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"401","time":"2026-03-06T19:14:21.017145261Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6ql1dR-pBgERKPjL40pjBhoiJOqeRAwUcX4XJq91lwI","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461017,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:21.017318889Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1419,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":100.767183,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:21.022126269Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131313532567743","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:21.02222314Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131313532567743","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":225.584469,"time":"2026-03-06T19:14:21.02231177Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1432,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.454821,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.031355082Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1428,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":85.854889,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:21.063758804Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1430,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":81.493171,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:21.071865741Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1427,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":97.341771,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:21.074207621Z","message":"Request completed"} +{"level":"debug","transaction_id":"402","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.110595213Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"402","time":"2026-03-06T19:14:21.110657233Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1433,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":82.380098,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:21.114033406Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1425,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824460964446504_48?ts=1771264803672&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":180.779281,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/fish-catfish-picmix-ocean-gif-10783276515468631313","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":498,"mimetype":"video/mp4","size":460438,"w":498},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/dLODdMIOkrzTYMWiyKTdBbOs"},"time":"2026-03-06T19:14:21.145421832Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1473016092099084391","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":274.263735,"event_ids":{"video_https://tenor.com/view/fish-catfish-picmix-ocean-gif-10783276515468631313":"$u1c_woXLzjmFvc88srBz69Zg6_3GWII400bNWEAVo5E"},"time":"2026-03-06T19:14:21.145546151Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1418,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F741982362241597471?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":236.805112,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_741981427750404108:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"741982362241597471","displayname":"theosTablet","external_url":"https://discord.com/channels/@me/741982362241597471"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:21.148585056Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","old_avatar_id":"","new_avatar_id":"65e8b3efabc341d4e23d7bd6a17f20cb","time":"2026-03-06T19:14:21.148753586Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","time":"2026-03-06T19:14:21.149018008Z","message":"Updating bridge info..."} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1438,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":21.717302,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.168373944Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1434,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.411554,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:21.171363401Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476513185405337731","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"video_https://tenor.com/view/spongebob-spongebob-meme-spongebob-memes-crying-i-can%27t-take-it-gif-902260968865311544","time":"2026-03-06T19:14:21.171469352Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476513185405337731","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":268.572082,"time":"2026-03-06T19:14:21.171572509Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1435,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":108.009682,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:21.180025794Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479439452005990430","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:21.18011603Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479439452005990430","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":207.142837,"time":"2026-03-06T19:14:21.180210666Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1431,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461001882499_49?ts=1772280749221&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":189.231378,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"i try","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:21.191222621Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477277276579299410","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":205.854666,"event_ids":{"":"$NrBXiLCdJ4dv_xo6DARhFilUmGHWHhxiv9fcdMpRifM"},"time":"2026-03-06T19:14:21.191320959Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"403","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.197679884Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"403","time":"2026-03-06T19:14:21.197789955Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1442,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.994014,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.199736179Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1443,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":19.277922,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.211175638Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1436,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":151.326183,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:21.225709457Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"741982429056598046","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:21.225813243Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"741982429056598046","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":266.068517,"time":"2026-03-06T19:14:21.225920381Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"404","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.239138721Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"404","time":"2026-03-06T19:14:21.239253751Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$u1c_woXLzjmFvc88srBz69Zg6_3GWII400bNWEAVo5E","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461239,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:21.239513006Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$NrBXiLCdJ4dv_xo6DARhFilUmGHWHhxiv9fcdMpRifM","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461239,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:21.239548974Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1447,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.757318,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.245259624Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1437,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":132.990642,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:21.247197048Z","message":"Request completed"} +{"level":"error","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131340283580478","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qdEWEasVEgAnUMnvHK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:21.247273385Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479131340283580478","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":224.761797,"time":"2026-03-06T19:14:21.24734211Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","action":"initial backfill","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:21.247378428Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1446,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":38.682818,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<714639 bytes>","time":"2026-03-06T19:14:21.252583001Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1439,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F741982362241597471?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":111.481121,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_741981427750404108:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"741982362241597471","displayname":"theosTablet","external_url":"https://discord.com/channels/@me/741982362241597471"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:21.260729259Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1449,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":9.783011,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.262782202Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1444,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":91.183222,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:21.291359408Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1441,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":128.014313,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22106 bytes>","time":"2026-03-06T19:14:21.299113502Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1453,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":10.923465,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.310627622Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1448,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":88.593612,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:21.334208175Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1450,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F741982362241597471?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":109.078129,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_741981427750404108:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"741982362241597471","displayname":"theosTablet","external_url":"https://discord.com/channels/@me/741982362241597471"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:21.370131875Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1440,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461168538842_50?ts=1772450242207&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":229.783733,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hier sind einige spannende Unternehmen mit interessanten IT-Management-Strukturen:\n\n---\n\n### 🚀 Tech-Giganten mit besonderen Strukturen\n\n- **Spotify** – bekannt für das „Squad/Tribe\"-Modell, ein agiles IT-Organisationsmodell das viele Firmen kopiert haben\n- **Netflix** – radikale Dezentralisierung, „Freedom \u0026 Responsibility\"-Kultur, keine klassische IT-Hierarchie\n- **Google (Alphabet)** – OKR-System, starke Ingenieurkultur, Site Reliability Engineering (SRE)\n\n---\n\n### 🏭 Klassische Industrie mit digitaler Transformation\n\n- **Siemens** – riesige IT-Transformation, eigene Cloud-Plattform (MindSphere), klassisch vs. modern\n- **BMW / Mercedes** – Aufbau interner Software-Einheiten, Kampf gegen Tech-Konzerne\n- **Bosch** – IoT-Strategie, eigene IT-Tochtergesellschaft\n\n---\n\n### 🏦 Finanzsektor\n\n- **ING Bank** – hat sich komplett nach dem Spotify-Modell umgebaut, sehr bekanntes Fallbeispiel\n- **Deutsche Bank** – massive IT-Modernisierung, Legacy-Probleme vs. New Tech\n- **N26 / Revolut** – Cloud-native FinTechs ohne Legacy-Ballast\n\n---\n\n### 🌍 Besonders spannende Cases\n\n- **Amazon (AWS)** – „Two-Pizza-Teams\", Microservices-Philosophie\n- **Zalando** – von Startup zu Enterprise IT, Platform-Thinking\n- **SAP** – deutsches Unternehmen, globale IT-Governance, hybride Strukturen\n\n---\n\n### 💡 Empfehlungen je nach Fokus:\n\n| Fokus | Empfehlung |\n|---|---|\n| Agile Strukturen | Spotify, ING |\n| Cloud-Transformation | Netflix, AWS |\n| Digitale Transformation (Industrie) | Siemens, BMW |\n| FinTech vs. Legacy | N26 vs. Deutsche Bank |\n| Deutscher Bezug | SAP, Zalando, Bosch |\n\n**Spotify und ING** sind besonders beliebt für Vorträge, weil das Squad-Modell gut dokumentiert und leicht verständlich ist. Hast du einen bestimmten Schwerpunkt oder eine Branche, die dich interessiert?","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eHier sind einige spannende Unternehmen mit interessanten IT-Management-Strukturen:\u003c/p\u003e\n\u003cp\u003e---\u003c/p\u003e\n\u003ch3\u003e🚀 Tech-Giganten mit besonderen Strukturen\u003c/h3\u003e\n\u003cp\u003e- \u003cstrong\u003eSpotify\u003c/strong\u003e – bekannt für das „Squad/Tribe\u0026quot;-Modell, ein agiles IT-Organisationsmodell das viele Firmen kopiert haben\u003cbr\u003e\n- \u003cstrong\u003eNetflix\u003c/strong\u003e – radikale Dezentralisierung, „Freedom \u0026amp; Responsibility\u0026quot;-Kultur, keine klassische IT-Hierarchie\u003cbr\u003e\n- \u003cstrong\u003eGoogle (Alphabet)\u003c/strong\u003e – OKR-System, starke Ingenieurkultur, Site Reliability Engineering (SRE)\u003c/p\u003e\n\u003cp\u003e---\u003c/p\u003e\n\u003ch3\u003e🏭 Klassische Industrie mit digitaler Transformation\u003c/h3\u003e\n\u003cp\u003e- \u003cstrong\u003eSiemens\u003c/strong\u003e – riesige IT-Transformation, eigene Cloud-Plattform (MindSphere), klassisch vs. modern\u003cbr\u003e\n- \u003cstrong\u003eBMW / Mercedes\u003c/strong\u003e – Aufbau interner Software-Einheiten, Kampf gegen Tech-Konzerne\u003cbr\u003e\n- \u003cstrong\u003eBosch\u003c/strong\u003e – IoT-Strategie, eigene IT-Tochtergesellschaft\u003c/p\u003e\n\u003cp\u003e---\u003c/p\u003e\n\u003ch3\u003e🏦 Finanzsektor\u003c/h3\u003e\n\u003cp\u003e- \u003cstrong\u003eING Bank\u003c/strong\u003e – hat sich komplett nach dem Spotify-Modell umgebaut, sehr bekanntes Fallbeispiel\u003cbr\u003e\n- \u003cstrong\u003eDeutsche Bank\u003c/strong\u003e – massive IT-Modernisierung, Legacy-Probleme vs. New Tech\u003cbr\u003e\n- \u003cstrong\u003eN26 / Revolut\u003c/strong\u003e – Cloud-native FinTechs ohne Legacy-Ballast\u003c/p\u003e\n\u003cp\u003e---\u003c/p\u003e\n\u003ch3\u003e🌍 Besonders spannende Cases\u003c/h3\u003e\n\u003cp\u003e- \u003cstrong\u003eAmazon (AWS)\u003c/strong\u003e – „Two-Pizza-Teams\u0026quot;, Microservices-Philosophie\u003cbr\u003e\n- \u003cstrong\u003eZalando\u003c/strong\u003e – von Startup zu Enterprise IT, Platform-Thinking\u003cbr\u003e\n- \u003cstrong\u003eSAP\u003c/strong\u003e – deutsches Unternehmen, globale IT-Governance, hybride Strukturen\u003c/p\u003e\n\u003cp\u003e---\u003c/p\u003e\n\u003ch3\u003e💡 Empfehlungen je nach Fokus:\u003c/h3\u003e\n\u003cp\u003e| Fokus | Empfehlung |\u003cbr\u003e\n|---|---|\u003cbr\u003e\n| Agile Strukturen | Spotify, ING |\u003cbr\u003e\n| Cloud-Transformation | Netflix, AWS |\u003cbr\u003e\n| Digitale Transformation (Industrie) | Siemens, BMW |\u003cbr\u003e\n| FinTech vs. Legacy | N26 vs. Deutsche Bank |\u003cbr\u003e\n| Deutscher Bezug | SAP, Zalando, Bosch |\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eSpotify und ING\u003c/strong\u003e sind besonders beliebt für Vorträge, weil das Squad-Modell gut dokumentiert und leicht verständlich ist. Hast du einen bestimmten Schwerpunkt oder eine Branche, die dich interessiert?\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:21.398904989Z","message":"Request completed"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","message_id":"1477988181688455199","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":253.107196,"event_ids":{"":"$kXWIv-97TmZzzdahpwMp9QRmehei1WNNbYUGJlNXgZY"},"time":"2026-03-06T19:14:21.399141963Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","action":"initial backfill","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:21.399461561Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","transaction_id":"405","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.399985727Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"405","time":"2026-03-06T19:14:21.400127437Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1452,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":135.170837,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:21.426746546Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479439474420093071","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:21.426855011Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479439474420093071","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":246.542864,"time":"2026-03-06T19:14:21.426970041Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1445,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461212146864_51?ts=1772280848829&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":227.534673,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hat nt geklappt 🙁","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:21.440102336Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477277694365274183","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":248.53267,"event_ids":{"":"$Tyq7zuIe1HIUv1hHRgem4SnWPyxOwAhn8ds3VWqwZTQ"},"time":"2026-03-06T19:14:21.440173715Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"406","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.443214506Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"406","time":"2026-03-06T19:14:21.443420261Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kXWIv-97TmZzzdahpwMp9QRmehei1WNNbYUGJlNXgZY","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461443,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:21.443592842Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$Tyq7zuIe1HIUv1hHRgem4SnWPyxOwAhn8ds3VWqwZTQ","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461443,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:21.443641382Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1457,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.884289,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.444459933Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1458,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":19.650251,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.460437181Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1456,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":146.64389,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:21.481005578Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"921146326861881345","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:21.481145752Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"921146326861881345","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":255.07123,"time":"2026-03-06T19:14:21.481216292Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1451,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461262959042_54?ts=1772099264244&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":230.200272,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/evil-cat-kitty-cat-car-crash-driving-cat-cat-driving-gif-965611625253620143","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":262,"mimetype":"video/mp4","size":714639,"w":204},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/TxEamkfMpNvohcHikoZONoBQ"},"time":"2026-03-06T19:14:21.493414936Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1476516073414066254","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":321.765251,"event_ids":{"video_https://tenor.com/view/evil-cat-kitty-cat-car-crash-driving-cat-cat-driving-gif-965611625253620143":"$l1NJKP5TSj3z5enF2B1ZqegHYkSyz9M1roYveahRvgU"},"time":"2026-03-06T19:14:21.493534017Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"407","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.514257115Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"407","time":"2026-03-06T19:14:21.514406019Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$l1NJKP5TSj3z5enF2B1ZqegHYkSyz9M1roYveahRvgU","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461514,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:21.514641387Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1459,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":99.523013,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:21.544312252Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1454,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461310856146_15?ts=1753428856428&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":242.796946,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja and alexx are playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja and alexx are playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$iJaDZsKchd17cuZHft2Ajf8OTWytYM5d6PqTa_fMjhc"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:21.553931204Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1463,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":10.911661,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.565072017Z","message":"Request completed"} +{"level":"debug","transaction_id":"408","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.596910087Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"408","time":"2026-03-06T19:14:21.597036571Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nhryQyaVN96YukiaC3L4SEMVlzIi2Ce7VsVPNRTUUqo","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461597,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:21.597236949Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1455,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":266.727199,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<68115 bytes>","time":"2026-03-06T19:14:21.598259998Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1465,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":6.858018,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.60551004Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1462,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":89.606185,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:21.634139279Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479441177421025310","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:21.634248302Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479441177421025310","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":207.170913,"time":"2026-03-06T19:14:21.634377022Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1460,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461460696226_52?ts=1772280868574&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":180.543283,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"kann aber grad nt in call also müssten wir später schauen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:21.641442122Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477277777181937736","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":201.077738,"event_ids":{"":"$kugQGgvecTI5pTPtzDlC4PfPd8vM_PxMhAQaLVtkk3Y"},"time":"2026-03-06T19:14:21.641594867Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1467,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":11.620071,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.646586282Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1468,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.782526,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.656136019Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1416,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":832.128133,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Amon","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1418671061335146496","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_680546220531515392:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1418671061335146496","displayname":"Amon","external_url":"https://discord.com/channels/@me/1418671061335146496"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/1418671061335146496","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_680546220531515392:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1418671061335146496","displayname":"Amon","external_url":"https://discord.com/channels/@me/1418671061335146496"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:21.667586793Z","message":"Request completed"} +{"level":"info","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","time":"2026-03-06T19:14:21.668129956Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"409","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.671652868Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"409","time":"2026-03-06T19:14:21.671743802Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kugQGgvecTI5pTPtzDlC4PfPd8vM_PxMhAQaLVtkk3Y","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461671,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:21.671941875Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"410","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.697198502Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"410","time":"2026-03-06T19:14:21.697649613Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"411","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.724887314Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"411","time":"2026-03-06T19:14:21.725064085Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1464,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461565295443_16?ts=1753428856428&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":182.989019,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22106,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/yazazOfLYQQxpihJMnHMzRbx"},"time":"2026-03-06T19:14:21.748552656Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398206707229786144","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":815.549123,"event_ids":{"":"$nhryQyaVN96YukiaC3L4SEMVlzIi2Ce7VsVPNRTUUqo","1398216831289917572":"$Z7arUHOXN9mhMvQGsMQKJ3NCvJbVuLBFtw5ecndawH8"},"time":"2026-03-06T19:14:21.748682772Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1472,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":11.30187,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.760713585Z","message":"Request completed"} +{"level":"debug","transaction_id":"412","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.778174981Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"412","time":"2026-03-06T19:14:21.7783213Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Z7arUHOXN9mhMvQGsMQKJ3NCvJbVuLBFtw5ecndawH8","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461778,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:21.778550871Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1466,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461605700151_22?ts=1742918786056&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":181.061443,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://github.com/AlexInABox/grow-green/releases/tag/2.0.0 was für wunderbare release notes!","com.beeper.linkpreviews":[{"og:title":"Release 2.0.0 · AlexInABox/grow-green","og:description":"🌱 Grow Green\nSTILL YOUR MOST FAVOURITE GAME\nWe have put so much time, sweat and heartblood into this precious study project to make it bigger and better and are so happy, to present our second rele...","og:image":"mxc://matrix.theocloud.dev/CMVMJUfjsbeMNFXJugDAresZ","matrix:image:size":68115,"og:image:width":1200,"og:image:height":600,"og:image:type":"image/png","matched_url":"https://github.com/AlexInABox/grow-green/releases/tag/2.0.0"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:21.786952682Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354124277028229141","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":1519.905576,"event_ids":{"":"$I26l3zGzG4ABM1iDi2yRmIFa9dLbwDEUu0oculiJjws"},"time":"2026-03-06T19:14:21.787070087Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1475,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.880931,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.799731156Z","message":"Request completed"} +{"level":"debug","transaction_id":"413","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.818312053Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"413","time":"2026-03-06T19:14:21.818453205Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$I26l3zGzG4ABM1iDi2yRmIFa9dLbwDEUu0oculiJjws","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461818,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:21.818690389Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1469,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461646824234_53?ts=1772796695429&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":180.051105,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"werd ich spontan entscheiden","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:21.827017818Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479441311823302819","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":192.753242,"event_ids":{"":"$yjTGxlG0od1p0dO_LIQ1-Z3CR39XlrkHZcga-IS3uso"},"time":"2026-03-06T19:14:21.827375549Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1477,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":20.610023,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.850004851Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1470,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461656375718_63?ts=1772284231995&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":194.011799,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hallo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:21.850542497Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477291884392222921","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":208.564336,"event_ids":{"":"$DTlEnG4wK6vXpHGYRJOfxZjQiiV3XuuChaEX9T-sfUY"},"time":"2026-03-06T19:14:21.850614085Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1479,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":19.005467,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.870201339Z","message":"Request completed"} +{"level":"debug","transaction_id":"414","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.876648615Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"414","time":"2026-03-06T19:14:21.876759245Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yjTGxlG0od1p0dO_LIQ1-Z3CR39XlrkHZcga-IS3uso","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461876,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:21.87695152Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1471,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":231.313278,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:21.899680068Z","message":"Request completed"} +{"level":"debug","transaction_id":"415","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.931837107Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"415","time":"2026-03-06T19:14:21.931921407Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$DTlEnG4wK6vXpHGYRJOfxZjQiiV3XuuChaEX9T-sfUY","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824461932,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:21.93213694Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"416","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:21.959409283Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"416","time":"2026-03-06T19:14:21.959655268Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1461,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":433.917975,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<479542 bytes>","time":"2026-03-06T19:14:21.961984436Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1482,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":8.920529,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:21.971188874Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461760972909_23?ts=1753428882783&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":231.677854,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gibts nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:21.992830746Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398206817770799105","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":243.85359,"event_ids":{"":"$MdSIExWllPRCEjMpCivWBFTO-ZsX2EqbQvK3ApzDhJ4"},"time":"2026-03-06T19:14:21.9929441Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1484,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":12.67406,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.006360862Z","message":"Request completed"} +{"level":"debug","transaction_id":"417","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.020195002Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"417","time":"2026-03-06T19:14:22.020243612Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MdSIExWllPRCEjMpCivWBFTO-ZsX2EqbQvK3ApzDhJ4","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462020,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.020420173Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1476,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461799954931_22?ts=1742920555708&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":227.77947,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"so schön","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.027868358Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1354131699486822440","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":240.467079,"event_ids":{"":"$fv63Q9EuLk2ON5c3cys0rk2hgLYjfysmv728ckewbdQ"},"time":"2026-03-06T19:14:22.027952937Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1486,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":27.431514,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.056057451Z","message":"Request completed"} +{"level":"debug","transaction_id":"418","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.080129483Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"418","time":"2026-03-06T19:14:22.080216996Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fv63Q9EuLk2ON5c3cys0rk2hgLYjfysmv728ckewbdQ","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462080,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.080430294Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1478,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461850308805_54?ts=1772796703771&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":249.361278,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"viel trinken wollt ich siwieso nt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.099857329Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479441346812186685","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":271.310246,"event_ids":{"":"$IwgX0cPubgHf0iv4rlD_PkUSPMnBRAouqvR5fshUcVU"},"time":"2026-03-06T19:14:22.099941838Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1480,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461870417361_64?ts=1772284232678&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":245.625068,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hallo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.116173522Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477291887256670301","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":265.309262,"event_ids":{"":"$98s1gILwawD1CtoODg8WpinAaREfV9HV1EkUL_dMqJ4"},"time":"2026-03-06T19:14:22.116262222Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1488,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":16.143473,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.116723041Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1489,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.965795,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.133857645Z","message":"Request completed"} +{"level":"debug","transaction_id":"419","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.14334641Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"419","time":"2026-03-06T19:14:22.143435599Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$IwgX0cPubgHf0iv4rlD_PkUSPMnBRAouqvR5fshUcVU","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462143,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.143579753Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1474,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":372.718861,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<190283 bytes>","time":"2026-03-06T19:14:22.150514039Z","message":"Request completed"} +{"level":"debug","transaction_id":"420","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.161399789Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"420","time":"2026-03-06T19:14:22.161488139Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$98s1gILwawD1CtoODg8WpinAaREfV9HV1EkUL_dMqJ4","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462161,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.161680275Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1483,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824461971464192_55?ts=1772785671042&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":210.74928,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://haptics.lochie.me","com.beeper.linkpreviews":[{"og:title":"WebHaptics – Haptic feedback for the mobile web.","og:description":"Haptic feedback for the mobile web.","og:image":"mxc://matrix.theocloud.dev/lJrjdPEfwreraxYHDzXSsPmz","matrix:image:size":479542,"og:image:width":1440,"og:image:height":760,"og:image:type":"image/png","matched_url":"https://haptics.lochie.me/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.182392477Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1479395072192811100","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":688.616177,"event_ids":{"":"$78HksR4jsjth_wHNiotMNaF8uMm2GvF9vpYINVI__Vk"},"time":"2026-03-06T19:14:22.182483133Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"421","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.218615871Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"421","time":"2026-03-06T19:14:22.218717631Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$78HksR4jsjth_wHNiotMNaF8uMm2GvF9vpYINVI__Vk","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462218,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.218931209Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1485,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462006593227_24?ts=1753428886723&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":222.978934,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"glaub ich nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.229766253Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398206834296225942","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":236.526161,"event_ids":{"":"$L1TpDs20FqETATi27x7p5Mnv7yDc7Tm_sLLwZ7u6N4g"},"time":"2026-03-06T19:14:22.229848527Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1481,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":353.286097,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:22.253524484Z","message":"Request completed"} +{"level":"debug","transaction_id":"422","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.264632751Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"422","time":"2026-03-06T19:14:22.264722359Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$L1TpDs20FqETATi27x7p5Mnv7yDc7Tm_sLLwZ7u6N4g","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462264,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.264964712Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1492,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_680546220531515392:matrix.theocloud.dev/displayname?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":11.83309,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:22.2659395Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1487,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462056238761_25?ts=1771495467228&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":217.335472,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wordle 1.706 5/6\n\n🟨🟨⬜⬜⬜\n⬜🟨⬜⬜⬜\n⬜⬜🟨⬜⬜\n⬜🟩🟩🟩🟩\n🟩🟩🟩🟩🟩","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWordle 1.706 5/6\u003c/p\u003e\n\u003cp\u003e🟨🟨⬜⬜⬜\u003cbr\u003e\n⬜🟨⬜⬜⬜\u003cbr\u003e\n⬜⬜🟨⬜⬜\u003cbr\u003e\n⬜🟩🟩🟩🟩\u003cbr\u003e\n🟩🟩🟩🟩🟩\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.27373962Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473983565174931516","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":245.544889,"event_ids":{"":"$nR6gBFYPvGj-I6epbJ2INORWqEN7RrAY8lCXbFzOTJk"},"time":"2026-03-06T19:14:22.273849691Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1494,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":12.556795,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.287012228Z","message":"Request completed"} +{"level":"debug","transaction_id":"423","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.30087598Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"423","time":"2026-03-06T19:14:22.301156886Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1490,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462116885005_55?ts=1772796708690&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":197.446989,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber vlt nhn wein","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.314490885Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479441367443836959","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":214.297684,"event_ids":{"":"$FF5EbHc55d3eXnv2joIIj90QvDdL56jToxrmpIdjkOA"},"time":"2026-03-06T19:14:22.314576442Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1491,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462134031761_65?ts=1772284598758&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":194.473945,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"brew","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.328681429Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477293422707740895","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":212.181045,"event_ids":{"":"$Tjc69RdBHGMj9a-RYQqJsP7mgQkOR5hjRO5_tn8eXB8"},"time":"2026-03-06T19:14:22.328802675Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1496,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.933595,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.329185062Z","message":"Request completed"} +{"level":"debug","transaction_id":"424","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.332309593Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"424","time":"2026-03-06T19:14:22.332421341Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nR6gBFYPvGj-I6epbJ2INORWqEN7RrAY8lCXbFzOTJk","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462332,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.332661179Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1497,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":12.638301,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.342217831Z","message":"Request completed"} +{"level":"debug","transaction_id":"425","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.350365347Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"425","time":"2026-03-06T19:14:22.350454395Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FF5EbHc55d3eXnv2joIIj90QvDdL56jToxrmpIdjkOA","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462350,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.350685503Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$Tjc69RdBHGMj9a-RYQqJsP7mgQkOR5hjRO5_tn8eXB8","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462350,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.350722799Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1498,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":51.221175,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:22.380808318Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1495,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462287187252_26?ts=1771495473563&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":116.415405,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hä","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.403767624Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473983591745716331","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":129.71141,"event_ids":{"":"$UEKMtg1T5_ELCbXGL3KwIWFnqTkKHpnfyoGRmwAXnkg"},"time":"2026-03-06T19:14:22.403870781Z","message":"Finished handling Discord message"} +{"level":"warn","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473983679314526290","message_type":1,"author_id":"769998429991600219","action":"discord message create","handling_time":0.404316,"time":"2026-03-06T19:14:22.404716431Z","message":"Unhandled message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1501,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":11.544641,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.416696049Z","message":"Request completed"} +{"level":"debug","transaction_id":"426","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.427587177Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"426","time":"2026-03-06T19:14:22.427668194Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$UEKMtg1T5_ELCbXGL3KwIWFnqTkKHpnfyoGRmwAXnkg","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462427,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.427866616Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1500,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":70.285729,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:22.451306018Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479441542279336047","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:22.451439137Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479441542279336047","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":136.597923,"time":"2026-03-06T19:14:22.451543551Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1504,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.981937,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.477114258Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1499,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462342416323_66?ts=1772284603030&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":134.542048,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yay","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.477124385Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477293440625807435","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":148.021529,"event_ids":{"":"$ZPoTpF26-PU6ESzHyNK7mS6YuPwJQ6_um3_LZTJj0Uo"},"time":"2026-03-06T19:14:22.477257086Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1508,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.657716,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.48959297Z","message":"Request completed"} +{"level":"debug","transaction_id":"427","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.491976545Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"427","time":"2026-03-06T19:14:22.492100864Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ZPoTpF26-PU6ESzHyNK7mS6YuPwJQ6_um3_LZTJj0Uo","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462492,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.492310251Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1493,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_680546220531515392:matrix.theocloud.dev/displayname?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":230.868103,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Scuf"},"time":"2026-03-06T19:14:22.496953572Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1502,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":87.313544,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<27230 bytes>","time":"2026-03-06T19:14:22.504282746Z","message":"Request completed"} +{"level":"debug","transaction_id":"428","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.525241631Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"428","time":"2026-03-06T19:14:22.525535947Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1505,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":82.085783,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<21539 bytes>","time":"2026-03-06T19:14:22.538007953Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1511,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":6.098134,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.54453897Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1510,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":52.093643,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.556722877Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1507,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":80.950917,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:22.558503575Z","message":"Request completed"} +{"level":"debug","transaction_id":"429","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:22.575724992Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"429","time":"2026-03-06T19:14:22.575798327Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1506,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":111.664735,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<33723 bytes>","time":"2026-03-06T19:14:22.578782685Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1503,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462416916262_27?ts=1771495872622&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":172.130368,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Strands #718\n“Here's a thought”\n🔵💡🔵💡\n🔵💡🔵🔵\n🟡💡🔵","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Strands #718\u003cbr\u003e\n“Here's a thought”\u003cbr\u003e\n🔵💡🔵💡\u003cbr\u003e\n🔵💡🔵🔵\u003cbr\u003e\n🟡💡🔵","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.589234156Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473985265520476252","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":184.475401,"event_ids":{"":"$Qf6OFUyom9dmSOOiRHUfGiWFUfSdBduCmHUmUrqX_mA"},"time":"2026-03-06T19:14:22.589349605Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1515,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":15.978855,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.595281166Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1516,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":17.185309,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.607158676Z","message":"Request completed"} +{"level":"debug","transaction_id":"430","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.616147371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"430","time":"2026-03-06T19:14:22.616272737Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Qf6OFUyom9dmSOOiRHUfGiWFUfSdBduCmHUmUrqX_mA","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462616,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.616487782Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1514,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":75.897482,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:22.634568399Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479442264576229417","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:22.634617428Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479442264576229417","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":182.86428,"time":"2026-03-06T19:14:22.634660451Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1519,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":6.041214,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.641235538Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1509,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462489768413_23?ts=1772290939931&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":157.476909,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.64740135Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477320019514888264","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":169.844921,"event_ids":{"":"$2TizU-mOPt0w4hM80zEEkNWYY7tmXdc6QG8cOx15UWI"},"time":"2026-03-06T19:14:22.647484532Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1521,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.891897,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.659990412Z","message":"Request completed"} +{"level":"debug","transaction_id":"431","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.666365122Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"431","time":"2026-03-06T19:14:22.666451377Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2TizU-mOPt0w4hM80zEEkNWYY7tmXdc6QG8cOx15UWI","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462666,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.666660973Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1512,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462544683054_56?ts=1772785673329&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":153.133909,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cimg data-mx-emoticon src=\"mxc://matrix.theocloud.dev/qZwmnjjirAULuFNFccYKZuCB\" alt=\":SteamHappy:\" title=\":SteamHappy:\" height=\"32\"/\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.697999811Z","message":"Request completed"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1479395081785049210","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":515.335996,"event_ids":{"":"$ex0LoULQtLKrOIU0WgqTibiCRsu5atBcKlb9JTM_zDA"},"time":"2026-03-06T19:14:22.698102269Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1513,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462556925839_2?ts=1672231934610&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":141.768484,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Dieses Widget im Vinyl-Stil ist richtig cool. Jetzt KOSTENLOS ausprobieren! https://mdvinyl.onelink.me/8vn9/2unl2zvf","com.beeper.linkpreviews":[{"og:title":"‎MD Vinyl - Music widget","og:description":"‎Beautiful now playing music widget, give your home screen a fresh lease of life. Currently supports Apple Music and Spotify.","og:image":"mxc://matrix.theocloud.dev/UadJElWQfMRsABWeFxOBSVHG","matrix:image:size":190283,"og:image:width":1200,"og:image:height":630,"og:image:type":"image/png","matched_url":"https://mdvinyl.onelink.me/8vn9/2unl2zvf"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.698947291Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1523,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.41585,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.708317045Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1524,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":9.68167,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.70883283Z","message":"Request completed"} +{"level":"debug","transaction_id":"432","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.725500468Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"432","time":"2026-03-06T19:14:22.725598737Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ex0LoULQtLKrOIU0WgqTibiCRsu5atBcKlb9JTM_zDA","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462725,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.725817273Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1517,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462595522541_17?ts=1753431268854&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":153.938213,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 5 day streak!** 🔥 Here are yesterday's results:\n👑 5/6: FloJ @Maja @alexx\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 5 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 5/6: \u003ca href=\"https://matrix.to/#/@discord_283971167717687296:matrix.theocloud.dev\"\u003eFloJ\u003c/a\u003e @Maja @alexx\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_283971167717687296:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$iJaDZsKchd17cuZHft2Ajf8OTWytYM5d6PqTa_fMjhc"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.749731113Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1518,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462607405917_28?ts=1771495877699&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":144.12538,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"😔😔","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.751674682Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473985286814957646","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":162.073854,"event_ids":{"":"$zx0vTJ4pc_4Y56ZshpL_0grVjnEljjFXPCbch5gbQjA"},"time":"2026-03-06T19:14:22.751755699Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"433","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.753711911Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"433","time":"2026-03-06T19:14:22.753790064Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BrLuBqXI7FGtQ0fphciOpJ7tMKEfI-ygQ-zMxK9dU6Y","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462753,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.753999591Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1527,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":20.764025,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.77069356Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1528,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":18.687755,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.771104232Z","message":"Request completed"} +{"level":"debug","transaction_id":"434","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.7878121Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"434","time":"2026-03-06T19:14:22.787932578Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vW8VkaKGlodzPSV8-XGp79QpruPOn36sAJj729qaSBA","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462788,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.788115914Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$zx0vTJ4pc_4Y56ZshpL_0grVjnEljjFXPCbch5gbQjA","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462788,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.788141267Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1520,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462641433960_56?ts=1772796951625&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":160.126235,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"safe mein bester","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.801704418Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479442386387206317","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":166.895064,"event_ids":{"":"$NqLGwFrikLWtZJbkTVKnTfoV5wNe5gTNl8UzU6cpkMQ"},"time":"2026-03-06T19:14:22.801789696Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1532,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":10.48248,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.812889721Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1525,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":109.097405,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:22.81776862Z","message":"Request completed"} +{"level":"debug","transaction_id":"435","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.829544858Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"435","time":"2026-03-06T19:14:22.829649272Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$NqLGwFrikLWtZJbkTVKnTfoV5wNe5gTNl8UzU6cpkMQ","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462829,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.829856983Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1529,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":76.178597,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22505 bytes>","time":"2026-03-06T19:14:22.83369202Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1522,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462660155309_24?ts=1772291479344&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":181.493627,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"d","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.841774303Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322281977118740","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":193.997551,"event_ids":{"":"$WOlbb0mXj8cRpnhv0SOx7uN7CYk-XCmvRmHF7Yi144o"},"time":"2026-03-06T19:14:22.841866914Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1535,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_680546220531515392:matrix.theocloud.dev/avatar_url?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":15.7863,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:22.849898002Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1536,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.530957,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.859019327Z","message":"Request completed"} +{"level":"debug","transaction_id":"436","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.880919825Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"436","time":"2026-03-06T19:14:22.881021376Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$WOlbb0mXj8cRpnhv0SOx7uN7CYk-XCmvRmHF7Yi144o","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462881,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:22.881227131Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1526,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462709004362_3?ts=1672231934610&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":193.398025,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":152,"mimetype":"image/png","size":27230,"w":152},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/rvDEEywQdpVwIVzzZbijjSMu"},"time":"2026-03-06T19:14:22.902595152Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1057642133261140099","message_type":0,"author_id":"741981427750404108","action":"discord message create","handling_time":1421.253214,"event_ids":{"":"$BrLuBqXI7FGtQ0fphciOpJ7tMKEfI-ygQ-zMxK9dU6Y","1057642133466648606":"$3aXYG1aTvEHMbv05eSHLkWQhLRMQFxp95cJO5tszL-8"},"time":"2026-03-06T19:14:22.902691953Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1539,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":10.475567,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.914144543Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1534,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":96.266969,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:22.91426949Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1479395355467448342","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:22.914387524Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1479395355467448342","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":215.896093,"time":"2026-03-06T19:14:22.914472801Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1541,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.943933,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.929973446Z","message":"Request completed"} +{"level":"debug","transaction_id":"437","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:22.937047766Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"437","time":"2026-03-06T19:14:22.937135278Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3aXYG1aTvEHMbv05eSHLkWQhLRMQFxp95cJO5tszL-8","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824462937,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:22.93736457Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1530,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462770867677_18?ts=1753431268854&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":198.899428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"3 solved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":33723,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/JYhiEYZcaSJdIxWimmadFrGr"},"time":"2026-03-06T19:14:22.970005686Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398216825677807717","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":739.953429,"event_ids":{"":"$vW8VkaKGlodzPSV8-XGp79QpruPOn36sAJj729qaSBA","1398216825552240640":"$PArure-pQ-dQyCnW8rySXGTthQ0g4BRTPeGtgv2zCSc"},"time":"2026-03-06T19:14:22.970143554Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1531,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462771263542_64?ts=1771496137652&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":200.315758,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Strands #718\n“Here's a thought”\n🔵🔵🔵🔵\n🔵🟡🔵","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Strands #718\u003cbr\u003e\n“Here's a thought”\u003cbr\u003e\n🔵🔵🔵🔵\u003cbr\u003e\n🔵🟡🔵","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:22.971779469Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473986377136738477","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":219.770591,"event_ids":{"":"$seMzPdqgwkabo4B0g_vY0P_J0pkRbuOQ2GbGxuBSAw0"},"time":"2026-03-06T19:14:22.971880181Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1543,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":14.941837,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:22.98746757Z","message":"Request completed"} +{"level":"debug","transaction_id":"438","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.000089109Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"438","time":"2026-03-06T19:14:23.000211473Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$PArure-pQ-dQyCnW8rySXGTthQ0g4BRTPeGtgv2zCSc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463000,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:23.000451939Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1533,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462813041069_57?ts=1772796981858&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":209.964183,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"sorry wenn das auch von mir fies oder degradierend rüberkam","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.023139001Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479442513193341079","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":221.095708,"event_ids":{"":"$BepRBRDSM-3dmGx6caMKRlG9WSzF-bMJne0ERXm4GYY"},"time":"2026-03-06T19:14:23.023209821Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1545,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.626779,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.038516514Z","message":"Request completed"} +{"level":"debug","transaction_id":"439","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.041749371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"439","time":"2026-03-06T19:14:23.041811321Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$seMzPdqgwkabo4B0g_vY0P_J0pkRbuOQ2GbGxuBSAw0","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463041,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.042010092Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1542,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":117.216216,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:23.047476294Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1538,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462859188485_25?ts=1772291487976&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":206.864865,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ksdajfkldasjklfadslk","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.066228584Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322318182355044","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":224.188043,"event_ids":{"":"$BmLsXkjgMfyFHtB4pqFtW_E8dc-yolid9tdUIwTBhBw"},"time":"2026-03-06T19:14:23.066373506Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1548,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.678533,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.082761217Z","message":"Request completed"} +{"level":"debug","transaction_id":"440","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.08775794Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"440","time":"2026-03-06T19:14:23.087805014Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BepRBRDSM-3dmGx6caMKRlG9WSzF-bMJne0ERXm4GYY","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463087,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.088005461Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"441","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.130688562Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"441","time":"2026-03-06T19:14:23.130766436Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BmLsXkjgMfyFHtB4pqFtW_E8dc-yolid9tdUIwTBhBw","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463130,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.130980992Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1540,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462914322920_4?ts=1675249994259&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":227.008551,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]}},"time":"2026-03-06T19:14:23.141473879Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1070300792919166996","message_type":3,"author_id":"741981427750404108","action":"discord message create","handling_time":238.316357,"event_ids":{"":"$QdeXkE8txT72DxMEjtYj4XMX-9mo_v8-2sPne6rurxQ"},"time":"2026-03-06T19:14:23.141553639Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1550,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.298799,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.155485488Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1547,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":113.43363,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:23.161028376Z","message":"Request completed"} +{"level":"error","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1479395396144074803","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !jLZnJyqzUlpMjvncEu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:23.161135375Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","message_id":"1479395396144074803","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":246.514927,"time":"2026-03-06T19:14:23.161222049Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","action":"initial backfill","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:23.161288678Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1546,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":130.375888,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:23.169372847Z","message":"Request completed"} +{"level":"debug","transaction_id":"442","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.171384373Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"442","time":"2026-03-06T19:14:23.171484457Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QdeXkE8txT72DxMEjtYj4XMX-9mo_v8-2sPne6rurxQ","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463171,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:23.171689234Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1537,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_680546220531515392:matrix.theocloud.dev/avatar_url?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":333.981984,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NwnhQIYwpuPbDUsgpmODEtQY"},"time":"2026-03-06T19:14:23.184017994Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1544,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824462987701681_65?ts=1771496143300&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":208.793209,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"🤭","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.196662022Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473986400826163200","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":224.536974,"event_ids":{"":"$9LzCUKwQmMD8aKAhLts1cA70FFnNdMaQsh06qq_8zYI"},"time":"2026-03-06T19:14:23.196750722Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1554,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":11.42577,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.208914305Z","message":"Request completed"} +{"level":"debug","transaction_id":"443","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.211106234Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"443","time":"2026-03-06T19:14:23.211204711Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$9LzCUKwQmMD8aKAhLts1cA70FFnNdMaQsh06qq_8zYI","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463211,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.211487153Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"444","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.22744289Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"444","time":"2026-03-06T19:14:23.227670366Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1552,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":65.319248,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:23.234846725Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479442827254567014","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:23.234931863Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479442827254567014","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":211.418508,"time":"2026-03-06T19:14:23.235022518Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1551,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":84.846297,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:23.240663815Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1556,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.1978,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.241835348Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1549,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463082939595_26?ts=1772291488640&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":170.329066,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jasklfjdklas","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.253421965Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322320967237666","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":186.735076,"event_ids":{"":"$C0qi-W3nxhQvqBybqjClc7Q-QV-kfhRJxwAsRolfzqo"},"time":"2026-03-06T19:14:23.253507242Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1560,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.645916,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.268779084Z","message":"Request completed"} +{"level":"debug","transaction_id":"445","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.275289218Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"445","time":"2026-03-06T19:14:23.275382597Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$C0qi-W3nxhQvqBybqjClc7Q-QV-kfhRJxwAsRolfzqo","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463275,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.275592473Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1558,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":59.065923,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:23.299897569Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1188865516840951819","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:23.299989621Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1188865516840951819","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":158.212208,"time":"2026-03-06T19:14:23.300070149Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1559,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":68.452021,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:23.310602707Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1553,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824463184302811_1?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":142.689772,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:23.327067314Z","message":"Request completed"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","action":"initial backfill","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:23.327431611Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1557,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":90.143621,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23388 bytes>","time":"2026-03-06T19:14:23.327492653Z","message":"Request completed"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","old_avatar_id":"","new_avatar_id":"a46648761a4f45e701c4371697ce010c","time":"2026-03-06T19:14:23.32758247Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","time":"2026-03-06T19:14:23.328023245Z","message":"Updating bridge info..."} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1555,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463209141362_58?ts=1771496818132&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":126.965842,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wordle 1.706 3/6\n\n⬛⬛⬛🟨🟨\n🟨🟨🟨⬛🟩\n🟩🟩🟩🟩🟩","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWordle 1.706 3/6\u003c/p\u003e\n\u003cp\u003e⬛⬛⬛🟨🟨\u003cbr\u003e\n🟨🟨🟨⬛🟩\u003cbr\u003e\n🟩🟩🟩🟩🟩\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.336293403Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473989231276724327","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":139.265128,"event_ids":{"":"$SANR_EwEnovEJamj_uSrerOQFfoVQVjEkSqciub5KVw"},"time":"2026-03-06T19:14:23.336393068Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1565,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":18.445682,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.346814786Z","message":"Request completed"} +{"level":"debug","transaction_id":"446","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.35684867Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"446","event_id":"$tvTykNKVbstuAiVaj-mbKaQwoW52KzUG9MG7yxOlmWY","time":"2026-03-06T19:14:23.356914741Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"446","time":"2026-03-06T19:14:23.356967122Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1562,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":77.840283,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:23.388649933Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479497631095849000","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:23.388778792Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479497631095849000","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":153.593891,"time":"2026-03-06T19:14:23.388880482Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"447","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.392892708Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"447","time":"2026-03-06T19:14:23.393016678Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SANR_EwEnovEJamj_uSrerOQFfoVQVjEkSqciub5KVw","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463393,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.393239545Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1568,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":10.754376,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.400251356Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1561,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463268953131_27?ts=1772291489495&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":159.722407,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jklasöfjklasöj","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.428878289Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322324553498867","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":175.180238,"event_ids":{"":"$QfLlpzSMmnJnNJhV3j3skEAQL59oc56VywqKdDEnSVE"},"time":"2026-03-06T19:14:23.429018043Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1567,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":49.950115,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1015933 bytes>","time":"2026-03-06T19:14:23.436037327Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1564,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1418671061335146496?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":117.420434,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_680546220531515392:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1418671061335146496","displayname":"Amon","external_url":"https://discord.com/channels/@me/1418671061335146496"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:23.445714457Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1570,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.300897,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.446136234Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1571,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.885823,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.450261955Z","message":"Request completed"} +{"level":"debug","transaction_id":"448","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.458240172Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"448","time":"2026-03-06T19:14:23.458378879Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QfLlpzSMmnJnNJhV3j3skEAQL59oc56VywqKdDEnSVE","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463458,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.458599301Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1563,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":134.253669,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:23.461836069Z","message":"Request completed"} +{"level":"info","channel_id":"1455158234129105072","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:23.462742552Z","message":"Creating Matrix room for channel"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"","old_name":"","new_name":"Korea 1950","time":"2026-03-06T19:14:23.462836839Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:23.462891106Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1566,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463347009087_19?ts=1753431291672&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":154.973903,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"alexx and lagopodus were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"alexx and lagopodus were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$vW8VkaKGlodzPSV8-XGp79QpruPOn36sAJj729qaSBA"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.502324379Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1572,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1418671061335146496?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":59.648966,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_680546220531515392:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1418671061335146496","displayname":"Amon","external_url":"https://discord.com/channels/@me/1418671061335146496"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:23.505802661Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1576,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":17.315984,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.519964501Z","message":"Request completed"} +{"level":"debug","transaction_id":"449","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.527439226Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"449","time":"2026-03-06T19:14:23.527515563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0-qvy_YzANkiuucm1brXwccM0gEYlDhtDLAsvN9XyAw","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463527,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.527696664Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1569,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463400559639_59?ts=1772810129900&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":139.592758,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"20 uhr","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.540414166Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479497660078751856","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":151.410901,"event_ids":{"":"$_GPeCwl_nGQDi1NkWZ1fuDW4yDjEXA7vrGISAUKGeYc"},"time":"2026-03-06T19:14:23.540550009Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","action":"initial backfill","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","limit":100,"count":8,"time":"2026-03-06T19:14:23.545305636Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","action":"initial backfill","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","limit":100,"count":8,"found_all":false,"time":"2026-03-06T19:14:23.545381485Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","action":"initial backfill","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:23.545426813Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1578,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.697738,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.5559285Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1579,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.365292,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.562837573Z","message":"Request completed"} +{"level":"debug","transaction_id":"450","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.572993332Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"450","time":"2026-03-06T19:14:23.573044945Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_GPeCwl_nGQDi1NkWZ1fuDW4yDjEXA7vrGISAUKGeYc","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463573,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.573196782Z","message":"Sent message checkpoint"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:23.574184561Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1573,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463446323202_28?ts=1772291490221&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":153.122595,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"flasfjklasöfjk","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.599611044Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322327598563470","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":170.256151,"event_ids":{"":"$e7EeWh86pKdE0nI7-D7Q-FvBgccax6VkV3654PJlQ_0"},"time":"2026-03-06T19:14:23.599712036Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1574,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463450431741_60?ts=1771496840091&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":158.438357,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/toba-aquarium-baby-seal-head-bang-bobbing-nico-gif-20734369","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":640,"mimetype":"video/mp4","size":1015933,"w":640},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/dhQBOPLmbYtHKzZfyTbCJYmz"},"time":"2026-03-06T19:14:23.609124673Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473989323379445812","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":272.456357,"event_ids":{"video_https://tenor.com/view/toba-aquarium-baby-seal-head-bang-bobbing-nico-gif-20734369":"$HMR-BjFdda3L-3grqO7VFmL10bgOo9EZXbvgYouOcEY"},"time":"2026-03-06T19:14:23.609256884Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1582,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.830377,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.622169036Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1583,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":17.700815,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.627717932Z","message":"Request completed"} +{"level":"debug","transaction_id":"451","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.637676177Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"451","time":"2026-03-06T19:14:23.637781708Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$e7EeWh86pKdE0nI7-D7Q-FvBgccax6VkV3654PJlQ_0","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463637,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.637957152Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"452","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.659833485Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"452","time":"2026-03-06T19:14:23.659926724Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HMR-BjFdda3L-3grqO7VFmL10bgOo9EZXbvgYouOcEY","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463660,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:23.660094345Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1580,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":123.012213,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:23.679251999Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1581,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":124.50998,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:23.687649829Z","message":"Request completed"} +{"level":"debug","transaction_id":"453","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.695045702Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"453","time":"2026-03-06T19:14:23.695133284Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1577,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463520195958_20?ts=1753431291672&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":200.43882,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":23388,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/zRkQWukJwjxsZlDriCZoMWsl"},"time":"2026-03-06T19:14:23.72091268Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398216921383440394","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":750.290148,"event_ids":{"":"$0-qvy_YzANkiuucm1brXwccM0gEYlDhtDLAsvN9XyAw","1398217602362511392":"$lZZo6GiuyvUi2C52BGuh174kje9LBw01SsJ-mXuPsmU"},"time":"2026-03-06T19:14:23.721053622Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1588,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":14.64829,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.736587302Z","message":"Request completed"} +{"level":"debug","transaction_id":"454","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.751930523Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"454","time":"2026-03-06T19:14:23.752044366Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lZZo6GiuyvUi2C52BGuh174kje9LBw01SsJ-mXuPsmU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463752,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:23.752296775Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1586,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":99.562614,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:23.779019041Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479497682241196052","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:23.77916592Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479497682241196052","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":238.355189,"time":"2026-03-06T19:14:23.779266702Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1587,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":98.936758,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:23.786778513Z","message":"Request completed"} +{"level":"error","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967506495963393","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:23.786914287Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967506495963393","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":241.421962,"time":"2026-03-06T19:14:23.787006059Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1590,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.943021,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.790844099Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1591,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.619861,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.799267282Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1584,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463622322200_29?ts=1772291491979&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":199.793758,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lasöfkjl","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.8222833Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322334972149820","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":222.353077,"event_ids":{"":"$CSo0lPSbbk_G0OgOh44PZHUis6ExFSoRESJ4-p81jr0"},"time":"2026-03-06T19:14:23.822427734Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1585,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463627878359_29?ts=1771496846639&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":196.896073,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"🐕","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.82492613Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473989350843879506","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":215.330651,"event_ids":{"":"$_qv7gA_DfLwpymMk8EwHquL59pb5YzwwfMh7-aJF-1E"},"time":"2026-03-06T19:14:23.825044024Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1594,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.228122,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.839377605Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1595,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":16.067485,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.84183221Z","message":"Request completed"} +{"level":"debug","transaction_id":"455","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.849927693Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"455","time":"2026-03-06T19:14:23.850028685Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$CSo0lPSbbk_G0OgOh44PZHUis6ExFSoRESJ4-p81jr0","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463850,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.850232415Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"456","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.875167907Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"456","time":"2026-03-06T19:14:23.875288105Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_qv7gA_DfLwpymMk8EwHquL59pb5YzwwfMh7-aJF-1E","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463875,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.875438755Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1592,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":102.91574,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:23.89411331Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1593,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":130.822529,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:23.930575774Z","message":"Request completed"} +{"level":"debug","transaction_id":"457","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.955531241Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"457","time":"2026-03-06T19:14:23.955826114Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1589,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463736828607_66?ts=1753431463148&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":226.922715,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Mann oh mann seid ihr schlecht!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:23.96447377Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398217640606171227","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":242.988104,"event_ids":{"":"$FHJ4SaVuDK9_jYnF7QtvfS76uiWw8Qzefy4pw4nJ1u0"},"time":"2026-03-06T19:14:23.964585168Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1600,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":13.374368,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:23.978573938Z","message":"Request completed"} +{"level":"debug","transaction_id":"458","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:23.990825383Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"458","time":"2026-03-06T19:14:23.990912686Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FHJ4SaVuDK9_jYnF7QtvfS76uiWw8Qzefy4pw4nJ1u0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824463991,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:23.991169775Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":988,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s801_893_0_353_368_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":9218.386011,"status_code":200,"response_length":208,"response_mime":"application/json","time":"2026-03-06T19:14:24.004641364Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:24.004973","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:24.004997629Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:24.004973","time":"2026-03-06T19:14:24.005181244Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1598,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":116.122975,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:24.010400694Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479497889108459643","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:24.010488485Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479497889108459643","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":230.982364,"time":"2026-03-06T19:14:24.010562518Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1604,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":15.8259,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.026835758Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1599,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":101.338143,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:24.03210724Z","message":"Request completed"} +{"level":"error","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967537856774301","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:24.03219573Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967537856774301","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":245.03057,"time":"2026-03-06T19:14:24.032273255Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1596,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463839633996_30?ts=1772291492374&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":216.213875,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"asfjklasfjks","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.055999289Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322336628904017","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":233.284294,"event_ids":{"":"$ZiZu-ZXB12qKngw_wUtuhuk13XVYsva48ZP4jZukKyM"},"time":"2026-03-06T19:14:24.056085544Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1602,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":64.302834,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2250814 bytes>","time":"2026-03-06T19:14:24.058240945Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1597,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463842035661_57?ts=1771496893655&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":218.644454,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wordle 1.706^2 1/7\n\n🟩🟩🟩🟩🟩🟩","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWordle 1.706^2 1/7\u003c/p\u003e\n\u003cp\u003e🟩🟩🟩🟩🟩🟩\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.060841521Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473989548043145300","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":235.475176,"event_ids":{"":"$i6F1nKKaLbTkan3VoKA6noLDNj2BL5APhHv22SI9Hw0"},"time":"2026-03-06T19:14:24.060933014Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1607,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.343709,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.072020189Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1608,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":14.584036,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.073192211Z","message":"Request completed"} +{"level":"debug","transaction_id":"459","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.084857051Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"459","time":"2026-03-06T19:14:24.084940862Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ZiZu-ZXB12qKngw_wUtuhuk13XVYsva48ZP4jZukKyM","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464085,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.08506546Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1606,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/typing/@discord_680546220531515392:matrix.theocloud.dev?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":62.362547,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.095134754Z","message":"Request completed"} +{"level":"debug","transaction_id":"460","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.101553744Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"460","time":"2026-03-06T19:14:24.101631339Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$i6F1nKKaLbTkan3VoKA6noLDNj2BL5APhHv22SI9Hw0","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464101,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.101808459Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"461","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:24.121239266Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"461","time":"2026-03-06T19:14:24.121309946Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1601,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824463978775643_30?ts=1753431506408&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":162.861605,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wollen wir jetzt mittagspause machen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.141799771Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398217822051766413","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":176.969665,"event_ids":{"":"$xmjy0QS3Em8ZydMIhiMlOKitTXkAED_ZrITOuq9jZeE"},"time":"2026-03-06T19:14:24.141899855Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1613,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":14.18342,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.156784072Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1612,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":33.781569,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<410108 bytes>","time":"2026-03-06T19:14:24.167782826Z","message":"Request completed"} +{"level":"debug","transaction_id":"462","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.172506256Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"462","time":"2026-03-06T19:14:24.1725886Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xmjy0QS3Em8ZydMIhiMlOKitTXkAED_ZrITOuq9jZeE","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464172,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.172813353Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1615,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.321775,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.179524842Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1605,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464027044237_61?ts=1772810232713&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":152.916351,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"haben wa letzte mal auch gemacht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.180140152Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479498091307729050","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":169.536288,"event_ids":{"":"$HxtGwadd-9nj4a83ReDrc5hmNHqrtvnmKF1oJaOyNDY"},"time":"2026-03-06T19:14:24.180263144Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1575,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":729.136962,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Korea 1950","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1455158234129105072","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1455158234129105072","displayname":"Korea 1950","external_url":"https://discord.com/channels/@me/1455158234129105072"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"state_key":"fi.mau.discord://discord/dm/1455158234129105072","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1455158234129105072","displayname":"Korea 1950","external_url":"https://discord.com/channels/@me/1455158234129105072"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}}],"preset":"private_chat","room_version":"11"},"time":"2026-03-06T19:14:24.192504601Z","message":"Request completed"} +{"level":"info","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","time":"2026-03-06T19:14:24.192993986Z","message":"Matrix room created"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1617,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":15.610088,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.19675059Z","message":"Request completed"} +{"level":"debug","transaction_id":"463","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.223638801Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"463","time":"2026-03-06T19:14:24.223721285Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HxtGwadd-9nj4a83ReDrc5hmNHqrtvnmKF1oJaOyNDY","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464223,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.223875985Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1610,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464073361718_5?ts=1704195755933&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":175.830958,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Zusammenfassung_Automatentheorie__formale_Sprachen.pdf","info":{"mimetype":"application/pdf","size":2250814},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/dKUzXZUaoWdwzpauDuPjAfCW"},"time":"2026-03-06T19:14:24.249356177Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1191708116891480125","message_type":0,"author_id":"741981427750404108","action":"discord message create","handling_time":949.142013,"event_ids":{"1191708116421709954":"$fiYi_NvbbIXRihUujUkb2is8fYmdPbNG8DKd4Hy__Xo"},"time":"2026-03-06T19:14:24.249441664Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1609,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464072184388_31?ts=1772291492799&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":186.585334,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"alfj","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.258897952Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322338411348060","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":202.561326,"event_ids":{"":"$TtusTsCjUCbREzEhR78Ke5SlsZKFPNyL4euhjQNngI0"},"time":"2026-03-06T19:14:24.258981693Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1620,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.358934,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.264715182Z","message":"Request completed"} +{"level":"debug","transaction_id":"464","content":{"pdu":8,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.270802281Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"464","time":"2026-03-06T19:14:24.271291177Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fiYi_NvbbIXRihUujUkb2is8fYmdPbNG8DKd4Hy__Xo","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464271,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:24.271420944Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1621,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.155072,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.280712265Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1611,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464095278070_2?ts=1770061156277&user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":195.835658,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"moin spiel grade nicht bin aM ESSEN SÜSER","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.291260537Z","message":"Request completed"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967629015912469","message_type":0,"author_id":"680546220531515392","action":"discord message create","handling_time":258.869598,"event_ids":{"":"$ZB1Ryrs-_Y4g6H56QkBRLYJa7u642QChuA4UCdHc3EM"},"time":"2026-03-06T19:14:24.291366837Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1624,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.762543,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.298711237Z","message":"Request completed"} +{"level":"debug","transaction_id":"465","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.302175621Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"465","time":"2026-03-06T19:14:24.302273609Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$TtusTsCjUCbREzEhR78Ke5SlsZKFPNyL4euhjQNngI0","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464302,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.302466095Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$ZB1Ryrs-_Y4g6H56QkBRLYJa7u642QChuA4UCdHc3EM","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464302,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.302484603Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1614,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464156966430_31?ts=1753431510945&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":194.370857,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"und in 2h feierabend?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.351452876Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398217841081057290","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":209.263386,"event_ids":{"":"$f1gxx20vREXZZgI03swwR_L7-zimwIhZeqI_7bflcaU"},"time":"2026-03-06T19:14:24.351546325Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1622,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":90.109398,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:24.355316199Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1626,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":14.695085,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.366823335Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1616,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464179699238_32?ts=1771498118302&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":202.435399,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/silly-dance-sea-lion-gif-18060641275691946665","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":498,"mimetype":"video/mp4","size":410108,"w":430},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/rFLEDqkIqsdgTkhPuAuyZmwt"},"time":"2026-03-06T19:14:24.38231532Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1473994684585213975","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":321.17669,"event_ids":{"video_https://tenor.com/view/silly-dance-sea-lion-gif-18060641275691946665":"$Y-2TYX_xK9rJEltaT3N0i4740VKfuttUtYB-NLuLZUw"},"time":"2026-03-06T19:14:24.382432236Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"466","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.38621978Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"466","time":"2026-03-06T19:14:24.386288365Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$f1gxx20vREXZZgI03swwR_L7-zimwIhZeqI_7bflcaU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464386,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.386458989Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1619,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464196920726_62?ts=1772810234354&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":196.783977,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"juckt haha","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.393862475Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479498098190585962","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":213.194317,"event_ids":{"":"$iTQ5OPZ_AkcdDBqMleK2kCSx4PHdHaByZKwncCRhTRg"},"time":"2026-03-06T19:14:24.393987353Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1625,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":99.809227,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:24.398800461Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1629,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":16.035148,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.399029194Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1630,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.414877,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.408147237Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1618,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":221.506659,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:24.414696482Z","message":"Request completed"} +{"level":"debug","transaction_id":"467","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.421966989Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"467","time":"2026-03-06T19:14:24.42208153Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$iTQ5OPZ_AkcdDBqMleK2kCSx4PHdHaByZKwncCRhTRg","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464422,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.422266333Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$Y-2TYX_xK9rJEltaT3N0i4740VKfuttUtYB-NLuLZUw","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464422,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:24.422271222Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1623,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464280903214_33?ts=1772291493235&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":167.225208,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"salf","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.448273414Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322340240195696","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":189.122354,"event_ids":{"":"$RIlVrhWhxG9ue0lvZIjzM3yMPaVtL3VgIGt2dcxtkQA"},"time":"2026-03-06T19:14:24.448397873Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1627,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":99.548087,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:24.455041964Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1195126258032464033","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:24.455124518Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1195126258032464033","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":205.373803,"time":"2026-03-06T19:14:24.455217478Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1635,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.671063,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.467604836Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1636,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.087458,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.470904532Z","message":"Request completed"} +{"level":"debug","transaction_id":"468","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.480003997Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"468","time":"2026-03-06T19:14:24.480067902Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$RIlVrhWhxG9ue0lvZIjzM3yMPaVtL3VgIGt2dcxtkQA","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464480,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.480274146Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1631,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":85.165826,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:24.484115329Z","message":"Request completed"} +{"level":"error","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967680689733726","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:24.484215553Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967680689733726","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":192.623056,"time":"2026-03-06T19:14:24.48430097Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1639,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.644023,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.493425857Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1633,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":94.755373,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:24.503312095Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1628,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464367072462_67?ts=1753431512377&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":175.533919,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"nein","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.542756333Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398217847087431733","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":190.986023,"event_ids":{"":"$zDE-FeV-J_8XC7rDfXOKxXBL0VV00DjiSWw79_R27vw"},"time":"2026-03-06T19:14:24.542839445Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1638,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":82.219461,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:24.553397215Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1642,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":15.252845,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.558755651Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1632,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464399201565_63?ts=1771851241343&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":171.041458,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wordle 1.710 4/6\n\n⬛⬛⬛🟩⬛\n🟩⬛🟩⬛⬛\n🟩⬛🟩🟩🟩\n🟩🟩🟩🟩🟩","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWordle 1.710 4/6\u003c/p\u003e\n\u003cp\u003e⬛⬛⬛🟩⬛\u003cbr\u003e\n🟩⬛🟩⬛⬛\u003cbr\u003e\n🟩⬛🟩🟩🟩\u003cbr\u003e\n🟩🟩🟩🟩🟩\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.570421259Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475475789968310383","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":187.797865,"event_ids":{"":"$bf-LlsaMSkG7TjAefCeI7WhK9h9jO2-KIt_PfU6kqdQ"},"time":"2026-03-06T19:14:24.570520575Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"469","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.575825022Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"469","time":"2026-03-06T19:14:24.575889417Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$zDE-FeV-J_8XC7rDfXOKxXBL0VV00DjiSWw79_R27vw","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464576,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.576070308Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1645,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":13.216525,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.584265596Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1640,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":93.985292,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:24.58767208Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1641,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":87.956162,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:24.591434831Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479498155388309504","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:24.591510121Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479498155388309504","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":197.193321,"time":"2026-03-06T19:14:24.5916035Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1648,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":8.060562,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.600090378Z","message":"Request completed"} +{"level":"debug","transaction_id":"470","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.602061675Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"470","time":"2026-03-06T19:14:24.602147162Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bf-LlsaMSkG7TjAefCeI7WhK9h9jO2-KIt_PfU6kqdQ","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464602,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.602325469Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1637,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464467760234_34?ts=1772291493530&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":162.685882,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jsaklfj","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.630584055Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322341477257268","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":181.989786,"event_ids":{"":"$hutTndw6_9EIaZXdkJAO4emC5VKbRFCgSFZwwZ5IfHU"},"time":"2026-03-06T19:14:24.630680297Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1643,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":81.525508,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:24.635073513Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1195127048604229653","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:24.635157673Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1195127048604229653","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":179.826981,"time":"2026-03-06T19:14:24.635243789Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1650,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.994498,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.645280117Z","message":"Request completed"} +{"level":"debug","transaction_id":"471","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.661571446Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"471","time":"2026-03-06T19:14:24.661656025Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hutTndw6_9EIaZXdkJAO4emC5VKbRFCgSFZwwZ5IfHU","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464661,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.661854796Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1634,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":254.622422,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:24.669671957Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1647,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":82.846923,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:24.670675939Z","message":"Request completed"} +{"level":"error","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967702948646943","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:24.670753744Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967702948646943","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":186.359534,"time":"2026-03-06T19:14:24.670852012Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1652,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":14.678811,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_428589198929297419","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:24.685204381Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1653,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/typing/@discord_680546220531515392:matrix.theocloud.dev?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":16.864733,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.688205641Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1654,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_428589198929297419:matrix.theocloud.dev/displayname?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":10.368358,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:24.695950236Z","message":"Request completed"} +{"level":"debug","transaction_id":"472","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.710690579Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"472","time":"2026-03-06T19:14:24.710889Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1644,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464558930676_68?ts=1753431514338&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":194.402077,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"fisch","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.75347111Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398217855312592968","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":210.33295,"event_ids":{"":"$3W_U43-K3pSxGJAse6OZwoq6bz96cREwRw1SjKoqsHY"},"time":"2026-03-06T19:14:24.753574756Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1657,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":19.99143,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.774199166Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1656,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_428589198929297419:matrix.theocloud.dev/displayname?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":82.872346,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Palul"},"time":"2026-03-06T19:14:24.778976235Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1646,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464584452074_58?ts=1771851424079&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":203.611822,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wordle 1.710,3 1/10\n\n🟩🟩🟩","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWordle 1.710,3 1/10\u003c/p\u003e\n\u003cp\u003e🟩🟩🟩\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.78827042Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475476556418650173","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":217.572446,"event_ids":{"":"$0lhJEN2hskxyYEmCDQsSedfVPbHeMzsRtPiYa02300A"},"time":"2026-03-06T19:14:24.788385939Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"473","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.800961522Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"473","time":"2026-03-06T19:14:24.801070965Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3W_U43-K3pSxGJAse6OZwoq6bz96cREwRw1SjKoqsHY","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464801,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.801273437Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1659,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":20.615471,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.80970982Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1649,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464600231250_64?ts=1772810283287&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":212.647102,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo gib mir 2 min","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.813035637Z","message":"Request completed"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479498303430459494","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":221.369,"event_ids":{"":"$aHe1Clex9b7RXSCvjt2BZSL5SqQk1orwZqCmy_Ql4tc"},"time":"2026-03-06T19:14:24.813160236Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1661,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.358858,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.822303841Z","message":"Request completed"} +{"level":"debug","transaction_id":"474","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.831101378Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"474","time":"2026-03-06T19:14:24.831198738Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0lhJEN2hskxyYEmCDQsSedfVPbHeMzsRtPiYa02300A","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464831,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.831386194Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$aHe1Clex9b7RXSCvjt2BZSL5SqQk1orwZqCmy_Ql4tc","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464831,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.83140582Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1651,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464645476933_35?ts=1772291493865&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":218.52705,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"saklf","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.864185572Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322342882607278","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":233.28136,"event_ids":{"":"$qcmT0nFWJh5Orad8lBoWFx8dr7bVJyjytaF6k5W2maw"},"time":"2026-03-06T19:14:24.864297809Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1663,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.79056,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.880878145Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1655,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464688406298_3?ts=1770061197508&user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":202.13878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"kussi aber morgen und am wochenende hab ich zeit","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.89068567Z","message":"Request completed"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967801951260803","message_type":0,"author_id":"680546220531515392","action":"discord message create","handling_time":219.724635,"event_ids":{"":"$u7EGaXCQEshGzC5RyNaVHk0un0_HAZC7lRJlWFYuJOE"},"time":"2026-03-06T19:14:24.890788827Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"475","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.897942767Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"475","time":"2026-03-06T19:14:24.898040546Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qcmT0nFWJh5Orad8lBoWFx8dr7bVJyjytaF6k5W2maw","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464898,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.898256219Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1665,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.698157,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:24.905367345Z","message":"Request completed"} +{"level":"debug","transaction_id":"476","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.926298153Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"476","time":"2026-03-06T19:14:24.926383361Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$u7EGaXCQEshGzC5RyNaVHk0un0_HAZC7lRJlWFYuJOE","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824464926,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:24.926557268Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1662,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":108.68366,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:24.93130647Z","message":"Request completed"} +{"level":"debug","transaction_id":"477","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:24.989181723Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"477","time":"2026-03-06T19:14:24.989436158Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1658,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464774414420_69?ts=1753431520628&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":222.879129,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"🐟","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:24.997437633Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398217881694638090","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":243.606696,"event_ids":{"":"$uBZGyQWGEsylE8vxn2a_A_N8TSBmUUDFuOHs0Gc7YUk"},"time":"2026-03-06T19:14:24.997520676Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1660,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464809931778_32?ts=1771923458085&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":209.337977,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://share.google/o1SgqzJmSBr9EiROZ","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.019418799Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475778688938283119","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":230.716894,"event_ids":{"":"$2btil1OgNmlPzDIiOFhzg8qbk2yztnqXaZ_Ce__QnI4"},"time":"2026-03-06T19:14:25.019513226Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"478","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.027499685Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"478","time":"2026-03-06T19:14:25.027571203Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uBZGyQWGEsylE8vxn2a_A_N8TSBmUUDFuOHs0Gc7YUk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465027,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.027749441Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1666,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":129.867018,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:25.035512824Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1669,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":15.43632,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.035631136Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1668,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":43.007518,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<466033 bytes>","time":"2026-03-06T19:14:25.047654616Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1667,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.440411,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:25.050969328Z","message":"Request completed"} +{"level":"error","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479498325265879040","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !gSMgjfecyuIzhsmpNx:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:25.051051183Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","message_id":"1479498325265879040","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":237.518269,"time":"2026-03-06T19:14:25.051128359Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","action":"initial backfill","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:25.051190309Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1673,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.134405,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.07524118Z","message":"Request completed"} +{"level":"debug","transaction_id":"479","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.078398607Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"479","time":"2026-03-06T19:14:25.078464957Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2btil1OgNmlPzDIiOFhzg8qbk2yztnqXaZ_Ce__QnI4","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465078,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.078648084Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1664,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824464881108624_67?ts=1772291499171&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":230.66982,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":".","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.111921551Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322365137453259","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":247.268664,"event_ids":{"":"$6v_yPfxD_jK32u2vY14PgXwVe14qzp7gyAHmfO48nrE"},"time":"2026-03-06T19:14:25.112042867Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1675,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.647105,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.12943002Z","message":"Request completed"} +{"level":"debug","transaction_id":"480","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.136071178Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"480","time":"2026-03-06T19:14:25.136155966Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6v_yPfxD_jK32u2vY14PgXwVe14qzp7gyAHmfO48nrE","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465136,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.136313042Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1670,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":108.186523,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:25.143871996Z","message":"Request completed"} +{"level":"error","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967874433024069","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:25.143956645Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967874433024069","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":252.712866,"time":"2026-03-06T19:14:25.144025649Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1677,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/typing/@discord_680546220531515392:matrix.theocloud.dev?user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":4.596736,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.149123503Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1672,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":109.535176,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<28827 bytes>","time":"2026-03-06T19:14:25.151347769Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1674,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":82.26444,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:25.157875014Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1679,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_428589198929297419:matrix.theocloud.dev/avatar_url?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":6.279026,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:25.158162694Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1681,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_428589198929297419:matrix.theocloud.dev/avatar_url?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":6.557487,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pcDetnpDXAnldMgTDJImxNcU"},"time":"2026-03-06T19:14:25.164868806Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1671,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465035795056_59?ts=1771923646269&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":156.311521,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://share.google/o1SgqzJmSBr9EiROZ","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.19225129Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475779478239056004","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":172.467077,"event_ids":{"":"$LbPZRS1NEd54LrOZOdtLQmakIoqhKDD5TjB0L7nGurw"},"time":"2026-03-06T19:14:25.192323717Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1680,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":49.068846,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:25.207185235Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1205439453833732146","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"1205439453510762546","time":"2026-03-06T19:14:25.207261852Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1205439453833732146","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":571.907783,"time":"2026-03-06T19:14:25.207351809Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"481","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.20963104Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"481","time":"2026-03-06T19:14:25.2096932Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LbPZRS1NEd54LrOZOdtLQmakIoqhKDD5TjB0L7nGurw","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465209,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.20986117Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1676,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465129595406_36?ts=1772291502332&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":113.550057,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.243271528Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322378395648123","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":130.9018,"event_ids":{"":"$HGm54gbKB_xOWyKOb5v4-PoLqRBmyLjQcqaIYSXt4ZM"},"time":"2026-03-06T19:14:25.24335918Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1683,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.094232,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.257973737Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1682,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/join?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":107.973993,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:25.273275262Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_680546220531515392:matrix.theocloud.dev","req_id":1678,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465149324928_4?ts=1770061240898&user_id=%40discord_680546220531515392%3Amatrix.theocloud.dev","duration":127.53743,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"geile scheisse","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.277039269Z","message":"Request completed"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","message_id":"1467967983942107341","message_type":0,"author_id":"680546220531515392","action":"discord message create","handling_time":132.949853,"event_ids":{"":"$52KXGx4_oQLdnfKNKnOLrghyJKVqDbjHGnST_oppPW0"},"time":"2026-03-06T19:14:25.277154578Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","action":"initial backfill","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:25.277471802Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","transaction_id":"482","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.278359985Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"482","time":"2026-03-06T19:14:25.27845532Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HGm54gbKB_xOWyKOb5v4-PoLqRBmyLjQcqaIYSXt4ZM","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465278,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.278649831Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"483","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.292970072Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"483","time":"2026-03-06T19:14:25.293064778Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$52KXGx4_oQLdnfKNKnOLrghyJKVqDbjHGnST_oppPW0","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465293,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.293283873Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1684,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465258192134_37?ts=1772291503086&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":83.336029,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.341711358Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322381558022337","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":98.232747,"event_ids":{"":"$RkzhSOhWtJp6oOyAwswnAZljh2EmteuNL7QoBjEINVY"},"time":"2026-03-06T19:14:25.341857678Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1685,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":82.346364,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32728 bytes>","time":"2026-03-06T19:14:25.351734277Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1687,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.612805,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.352248176Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1688,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":4.666928,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.356816347Z","message":"Request completed"} +{"level":"debug","transaction_id":"484","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.359832763Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"484","time":"2026-03-06T19:14:25.359935641Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$RkzhSOhWtJp6oOyAwswnAZljh2EmteuNL7QoBjEINVY","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465360,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.360149079Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1686,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":118.681156,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_428589198929297419:matrix.theocloud.dev"},"time":"2026-03-06T19:14:25.392184383Z","message":"Request completed"} +{"level":"debug","transaction_id":"485","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.412002395Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"485","time":"2026-03-06T19:14:25.412211014Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1689,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465352455119_38?ts=1772291503574&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":85.500998,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.438093287Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322383605108846","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":95.879204,"event_ids":{"":"$yhCdyIRgmiz5EgRT0oPBHr_x1lGEIOh7wZVkOy9baRs"},"time":"2026-03-06T19:14:25.438169485Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1690,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465356973352_21?ts=1753515546045&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":92.61827,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 6 day streak!** 🔥 Here are yesterday's results:\n👑 6/6: lagopodus\nX/6: Maja @alexx\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 6 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 6/6: \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\u003cbr\u003e\nX/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e @alexx\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev","@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$vW8VkaKGlodzPSV8-XGp79QpruPOn36sAJj729qaSBA"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.449910802Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1693,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.509231,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.450187447Z","message":"Request completed"} +{"level":"debug","transaction_id":"486","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.456266794Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"486","time":"2026-03-06T19:14:25.456324484Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yhCdyIRgmiz5EgRT0oPBHr_x1lGEIOh7wZVkOy9baRs","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465456,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.45650775Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1694,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":7.351174,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.457620546Z","message":"Request completed"} +{"level":"debug","transaction_id":"487","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.468749137Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"487","time":"2026-03-06T19:14:25.468908028Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$NsstHhlkz2l3j3sGiNlkIs9DOMIE_QoIgMnCMxsB0yU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465469,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.469090596Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1691,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":123.778382,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<5759070 bytes>","time":"2026-03-06T19:14:25.487076227Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1697,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":5.661411,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.493186305Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1692,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/join?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":137.412563,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:25.529947414Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_389451592673263616:matrix.theocloud.dev","req_id":1699,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_389451592673263616%3Amatrix.theocloud.dev","duration":16.028373,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_389451592673263616","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:25.546583414Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1695,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465450368129_39?ts=1772291504068&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":114.299185,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.564816915Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322385677095046","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":126.498876,"event_ids":{"":"$IRPQi2CUCPMK8ep9bqfuZTC2gcKYAsi0KUotx4Xj0eo"},"time":"2026-03-06T19:14:25.564962187Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_389451592673263616:matrix.theocloud.dev","req_id":1700,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_389451592673263616:matrix.theocloud.dev/displayname?user_id=%40discord_389451592673263616%3Amatrix.theocloud.dev","duration":21.322414,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:25.568419308Z","message":"Request completed"} +{"level":"debug","transaction_id":"488","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.570650348Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"488","time":"2026-03-06T19:14:25.570748476Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$IRPQi2CUCPMK8ep9bqfuZTC2gcKYAsi0KUotx4Xj0eo","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465570,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.570952765Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1696,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465457760230_22?ts=1753515546045&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":120.863307,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved and 2 unsolved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":32728,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xdxcTfNITmBLyWnaZNKeYOmX"},"time":"2026-03-06T19:14:25.578815044Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1398570309837127700","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":580.972605,"event_ids":{"":"$NsstHhlkz2l3j3sGiNlkIs9DOMIE_QoIgMnCMxsB0yU","1398570309593993299":"$R9wdBpgj6fO1HYzlJDC1h5p1ABcTfuLKda0h2mrjIkY"},"time":"2026-03-06T19:14:25.578936151Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1702,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.575306,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.580303103Z","message":"Request completed"} +{"level":"debug","transaction_id":"489","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.593460471Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"489","time":"2026-03-06T19:14:25.59365596Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"490","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.602525434Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"490","time":"2026-03-06T19:14:25.602645143Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$R9wdBpgj6fO1HYzlJDC1h5p1ABcTfuLKda0h2mrjIkY","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465602,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:25.602862073Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_389451592673263616:matrix.theocloud.dev","req_id":1703,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_389451592673263616:matrix.theocloud.dev/displayname?user_id=%40discord_389451592673263616%3Amatrix.theocloud.dev","duration":36.895625,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"TheHeroTV"},"time":"2026-03-06T19:14:25.605496872Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1701,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":55.446699,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1825509 bytes>","time":"2026-03-06T19:14:25.616713464Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465493517916_65?ts=1771923865154&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":132.370442,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/jw-jehovahs-witness-jehovah-god-jenny-ann-valenciano-gif-21141809","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":640,"mimetype":"video/mp4","size":5759070,"w":640},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/HsmheheLladsVomjiiqTOGzJ"},"time":"2026-03-06T19:14:25.626164934Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475780396309413999","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":433.682186,"event_ids":{"video_https://tenor.com/view/jw-jehovahs-witness-jehovah-god-jenny-ann-valenciano-gif-21141809":"$teznyMWaqydbeFk7wP-x9M-z4_CFkXj8lScDVrAQKK8"},"time":"2026-03-06T19:14:25.626310834Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1705,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":11.092273,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.628235895Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1706,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":8.894478,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.635950598Z","message":"Request completed"} +{"level":"debug","transaction_id":"491","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.641785358Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"491","time":"2026-03-06T19:14:25.641910725Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$teznyMWaqydbeFk7wP-x9M-z4_CFkXj8lScDVrAQKK8","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465642,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:25.642110124Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1704,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465580566129_40?ts=1772291504524&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":84.803694,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.665554275Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322387589435412","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":100.278426,"event_ids":{"":"$Wy8jEg5xDwcg4l7vakrl0PSX2zFDmjwmJBqJlQZ-uYc"},"time":"2026-03-06T19:14:25.665681179Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1709,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.112878,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.6795589Z","message":"Request completed"} +{"level":"debug","transaction_id":"492","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.684009735Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"492","time":"2026-03-06T19:14:25.684110727Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Wy8jEg5xDwcg4l7vakrl0PSX2zFDmjwmJBqJlQZ-uYc","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465684,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.684288476Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1707,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465628470635_6?ts=1715594967800&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":80.000923,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Rechtsformen_BWL.pdf","info":{"mimetype":"application/pdf","size":1825509},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/mEDgPoSjCDIaLxPwKcXXldJS"},"time":"2026-03-06T19:14:25.708672424Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1239519876822077510","message_type":0,"author_id":"741981427750404108","action":"discord message create","handling_time":501.256989,"event_ids":{"1239519876440264745":"$59AgVE9_rPSmaGXiW--WdPQVbQjHQrLMwZharixf7Dw"},"time":"2026-03-06T19:14:25.708785987Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1708,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465636232901_60?ts=1771924200581&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":87.690832,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://share.google/o1SgqzJmSBr9EiROZ","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.724097779Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475781803192352859","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":97.456102,"event_ids":{"":"$vik9fM8LRYfPia5veAdMEKa-jshL2Dq5CUsI_w8qWVs"},"time":"2026-03-06T19:14:25.724201983Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"493","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.72562879Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"493","time":"2026-03-06T19:14:25.725737465Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$59AgVE9_rPSmaGXiW--WdPQVbQjHQrLMwZharixf7Dw","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465725,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:25.72591682Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1711,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":10.094368,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.734891895Z","message":"Request completed"} +{"level":"debug","transaction_id":"494","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.74137081Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"494","time":"2026-03-06T19:14:25.741458043Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vik9fM8LRYfPia5veAdMEKa-jshL2Dq5CUsI_w8qWVs","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465741,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.741687056Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1710,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465679828700_41?ts=1772291504891&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":90.634682,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.770634425Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322389128740935","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":104.667801,"event_ids":{"":"$GDPzVIUedQNIm8OVeq5lYYrBbuAGSHo97NEFA4vKTp4"},"time":"2026-03-06T19:14:25.77076063Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1713,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.264156,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.783865267Z","message":"Request completed"} +{"level":"debug","transaction_id":"495","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.788286979Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"495","time":"2026-03-06T19:14:25.788409342Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$GDPzVIUedQNIm8OVeq5lYYrBbuAGSHo97NEFA4vKTp4","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465788,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.788606577Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1712,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465735151988_33?ts=1771924302805&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":79.0151,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://share.google/Ve0eKx0jNlCblQ591","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.814363484Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475782231950753847","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":89.94485,"event_ids":{"":"$COXIEXzOhwcj62bZ-zqhdztWJVnMuEPomHHQ1vlunYc"},"time":"2026-03-06T19:14:25.814462171Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1715,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":7.586263,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.822766342Z","message":"Request completed"} +{"level":"debug","transaction_id":"496","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.826630713Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"496","time":"2026-03-06T19:14:25.826709914Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$COXIEXzOhwcj62bZ-zqhdztWJVnMuEPomHHQ1vlunYc","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465826,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.82685756Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1714,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465784063899_42?ts=1772291505338&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":71.241799,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.855461236Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322391003726047","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":84.299292,"event_ids":{"":"$4zgzfotcWljs7tIZ5OWePS2_OacP57od4X3qqf_plsM"},"time":"2026-03-06T19:14:25.855566698Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1719,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.294398,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.869738524Z","message":"Request completed"} +{"level":"debug","transaction_id":"497","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.874363547Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"497","time":"2026-03-06T19:14:25.874495339Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4zgzfotcWljs7tIZ5OWePS2_OacP57od4X3qqf_plsM","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465874,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.874682027Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_389451592673263616:matrix.theocloud.dev","req_id":1718,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_389451592673263616%3Amatrix.theocloud.dev","duration":62.145965,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<12602 bytes>","time":"2026-03-06T19:14:25.897211175Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_389451592673263616:matrix.theocloud.dev","req_id":1721,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_389451592673263616:matrix.theocloud.dev/avatar_url?user_id=%40discord_389451592673263616%3Amatrix.theocloud.dev","duration":3.831684,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:25.901537692Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1716,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465823022034_34?ts=1771924537493&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":89.731691,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wordle 1.711 4/6\n\n⬜⬜⬜🟨🟨\n⬜⬜⬜🟨⬜\n⬜⬜⬜⬜🟨\n🟩🟩🟩🟩🟩","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWordle 1.711 4/6\u003c/p\u003e\n\u003cp\u003e⬜⬜⬜🟨🟨\u003cbr\u003e\n⬜⬜⬜🟨⬜\u003cbr\u003e\n⬜⬜⬜⬜🟨\u003cbr\u003e\n🟩🟩🟩🟩🟩\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.913018567Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475783216303575130","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":98.262431,"event_ids":{"":"$38VOI8FYbA2vel0mZbHTycuZxRRlsoV71ORqSRA9ImQ"},"time":"2026-03-06T19:14:25.913144493Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1717,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":87.434789,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32596 bytes>","time":"2026-03-06T19:14:25.918477436Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_389451592673263616:matrix.theocloud.dev","req_id":1722,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_389451592673263616:matrix.theocloud.dev/avatar_url?user_id=%40discord_389451592673263616%3Amatrix.theocloud.dev","duration":23.368233,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EGXccJBYeViaKiHEkaffLEhv"},"time":"2026-03-06T19:14:25.92507166Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1723,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":8.402649,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.927376663Z","message":"Request completed"} +{"level":"debug","transaction_id":"498","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.931504828Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"498","time":"2026-03-06T19:14:25.931606029Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$38VOI8FYbA2vel0mZbHTycuZxRRlsoV71ORqSRA9ImQ","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465931,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.93180927Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1720,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465869957340_43?ts=1772291505794&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.375007,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:25.959467352Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322392916197610","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":103.463582,"event_ids":{"":"$qbfMOOEYJHj-xC-jQ0w1rk34HCWhT7s-93VJAq4eyw8"},"time":"2026-03-06T19:14:25.959563664Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1726,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.743552,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:25.971875243Z","message":"Request completed"} +{"level":"debug","transaction_id":"499","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:25.977636948Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"499","time":"2026-03-06T19:14:25.977708466Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qbfMOOEYJHj-xC-jQ0w1rk34HCWhT7s-93VJAq4eyw8","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824465977,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:25.977927492Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_389451592673263616:matrix.theocloud.dev","req_id":1724,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/join?user_id=%40discord_389451592673263616%3Amatrix.theocloud.dev","duration":67.769941,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:25.993517185Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1725,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465927586609_23?ts=1753691666513&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":93.404345,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus and 2 others were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus and 2 others were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$NsstHhlkz2l3j3sGiNlkIs9DOMIE_QoIgMnCMxsB0yU"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:26.021351898Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1729,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":10.881769,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.032495505Z","message":"Request completed"} +{"level":"debug","transaction_id":"500","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.038701826Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"500","time":"2026-03-06T19:14:26.038833548Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vKJrpOnl1D_bj9BsFfI_PkttDUmclEtao95orA-Q7Uw","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466038,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:26.039041748Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1727,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824465972119551_44?ts=1772291506212&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":98.708723,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"SAVQL3vG","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:26.071017476Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322394669682809","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":111.291429,"event_ids":{"":"$b6VHshyFtLuBBXUgpWLk9NExtbb6-paGxXU799y2Jvc"},"time":"2026-03-06T19:14:26.071150107Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"501","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.091000316Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"501","time":"2026-03-06T19:14:26.091103194Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$b6VHshyFtLuBBXUgpWLk9NExtbb6-paGxXU799y2Jvc","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466091,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:26.091287996Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1730,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466032734785_24?ts=1753691666513&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":110.895772,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"3 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":32596,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/lULZSqVcNeIqxdIWULVBUNaC"},"time":"2026-03-06T19:14:26.143892606Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399309012620804137","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":564.806224,"event_ids":{"":"$vKJrpOnl1D_bj9BsFfI_PkttDUmclEtao95orA-Q7Uw","1399312769656029194":"$ny6DsKA33oMCZYK23SNW5GwcKo5Na8oQ2nxPMzA5znQ"},"time":"2026-03-06T19:14:26.144046119Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1728,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":166.257055,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_389451592673263616:matrix.theocloud.dev"},"time":"2026-03-06T19:14:26.159923143Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1732,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":17.164007,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.162012334Z","message":"Request completed"} +{"level":"debug","transaction_id":"502","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.165570866Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"502","time":"2026-03-06T19:14:26.16567053Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ny6DsKA33oMCZYK23SNW5GwcKo5Na8oQ2nxPMzA5znQ","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466165,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:26.165883829Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"503","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.17663143Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"503","time":"2026-03-06T19:14:26.176838932Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1731,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":47.201055,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<971878 bytes>","time":"2026-03-06T19:14:26.18500265Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1736,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":4.90907,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.190254576Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1734,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466162195460_70?ts=1753691732504&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":54.616485,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"tot","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:26.216967902Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399309289406857286","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":72.549036,"event_ids":{"":"$mTxSJ7Tk_gZ90eK8t1lUkM4261f3Up_z_xD0gSRoDls"},"time":"2026-03-06T19:14:26.217096342Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1738,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":7.349288,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.225166472Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1735,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":64.879312,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15909 bytes>","time":"2026-03-06T19:14:26.230986146Z","message":"Request completed"} +{"level":"debug","transaction_id":"504","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.232519951Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"504","time":"2026-03-06T19:14:26.232598803Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mTxSJ7Tk_gZ90eK8t1lUkM4261f3Up_z_xD0gSRoDls","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466232,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:26.232800507Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1740,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":4.937566,"status_code":403,"response_length":143,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.236525962Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_389451592673263616:matrix.theocloud.dev","req_id":1733,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/join?user_id=%40discord_389451592673263616%3Amatrix.theocloud.dev","duration":106.97448,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:26.267179018Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1737,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466190458376_7?ts=1715696585114&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":102.561988,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Externes_Rechnungswesen.pdf","info":{"mimetype":"application/pdf","size":971878},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/jjOkaBRyBFGkTaTFWGKocNpl"},"time":"2026-03-06T19:14:26.293200836Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1239946090728652940","message_type":0,"author_id":"741981427750404108","action":"discord message create","handling_time":584.009415,"event_ids":{"1239946090405433487":"$qn1U_61irruOJAo9Mrh9smFCTthVaqsVLiu_NRzDyRg"},"time":"2026-03-06T19:14:26.293290514Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"505","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.294304134Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"505","time":"2026-03-06T19:14:26.294514708Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"506","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.308987695Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"506","time":"2026-03-06T19:14:26.309061658Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qn1U_61irruOJAo9Mrh9smFCTthVaqsVLiu_NRzDyRg","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466309,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:26.309252816Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1741,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":81.597376,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:26.318412555Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1739,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466225357770_61?ts=1753692568435&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":124.986164,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"tot","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:26.350474468Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399312795555594361","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":133.058807,"event_ids":{"":"$Oz_ZHx_iu4pSkl_bPZY7laAlF5_mH3o16kSt3_I7-k4"},"time":"2026-03-06T19:14:26.350558489Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"507","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.378162163Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"507","time":"2026-03-06T19:14:26.378259523Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Oz_ZHx_iu4pSkl_bPZY7laAlF5_mH3o16kSt3_I7-k4","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466378,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:26.378470936Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1742,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":112.014156,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:26.379829367Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1743,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":120.385166,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_1211781489931452447:matrix.theocloud.dev"},"time":"2026-03-06T19:14:26.438965692Z","message":"Request completed"} +{"level":"debug","transaction_id":"508","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.461195426Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"508","time":"2026-03-06T19:14:26.461515652Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1745,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":104.116886,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_316966695430520833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:26.484116179Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1744,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":152.882686,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<141228 bytes>","time":"2026-03-06T19:14:26.493081826Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1748,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":7.173705,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.500580158Z","message":"Request completed"} +{"level":"debug","transaction_id":"509","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.509082332Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"509","time":"2026-03-06T19:14:26.509347244Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1749,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466500745824_68?ts=1772291614075&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":77.663443,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":762,"mimetype":"image/webp","size":141228,"w":727},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/tvYdkIfalwtrXegbAvZVWpNr"},"time":"2026-03-06T19:14:26.578568437Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477322847079628851","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":507.044255,"event_ids":{"1477322846819586068":"$DRvMe4gth30hO5KrmgNDzpY0pfHs5DY1rK9M2ZpOzgE"},"time":"2026-03-06T19:14:26.578658533Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1746,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/join?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":145.495543,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:26.584835031Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1750,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.339869,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.595635154Z","message":"Request completed"} +{"level":"debug","transaction_id":"510","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.604735247Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"510","time":"2026-03-06T19:14:26.604840569Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$DRvMe4gth30hO5KrmgNDzpY0pfHs5DY1rK9M2ZpOzgE","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466604,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:26.605024604Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"511","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.631714044Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"511","time":"2026-03-06T19:14:26.63196359Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1747,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":168.896043,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:26.653400545Z","message":"Request completed"} +{"level":"debug","transaction_id":"512","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.670577054Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"512","time":"2026-03-06T19:14:26.670784695Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1754,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":57.136183,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<962929 bytes>","time":"2026-03-06T19:14:26.686509464Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1756,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":4.554762,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.691438998Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1753,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":99.70991,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32774 bytes>","time":"2026-03-06T19:14:26.716845227Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1752,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466595923742_45?ts=1772291764086&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":126.769375,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2YMdDDWD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:26.722867513Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477323476271628501","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":143.994355,"event_ids":{"":"$pLI_25O2pDg_CJvxHnN4030b19Q4O42tbdrdR5474_8"},"time":"2026-03-06T19:14:26.722973533Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1758,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":10.755774,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.72820779Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1751,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466585151626_25?ts=1771924571335&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":150.396373,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"\u003e alexx used /play\nalexx was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cblockquote\u003e\n\u003ca href=\"https://matrix.to/#/@discord_428870593358594048:matrix.theocloud.dev\"\u003ealexx\u003c/a\u003e used \u003cfont color=\"#3771bb\"\u003e/play\u003c/font\u003e\n\u003c/blockquote\u003e\nalexx was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:26.735810326Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1759,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.538217,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.736160235Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1761,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":5.322118,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.741323741Z","message":"Request completed"} +{"level":"debug","transaction_id":"513","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.743654865Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"513","time":"2026-03-06T19:14:26.743747965Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$pLI_25O2pDg_CJvxHnN4030b19Q4O42tbdrdR5474_8","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466743,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:26.743985918Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"514","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.761942425Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"514","time":"2026-03-06T19:14:26.762026585Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$70fxr1ocx8xH8go_r6ea_bG8sEEtlXZhR_T2XsFIR7w","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466762,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:26.762218651Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1755,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824466653773922_12?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":122.159718,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:26.776018218Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","action":"initial backfill","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:26.776379442Z","message":"Fetching messages for backfill"} +{"level":"debug","transaction_id":"515","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.79912573Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"515","event_id":"$C5BrcPjJXKMcey1C_l7j-IpK0ty_UyizyYLqs-RO5SQ","time":"2026-03-06T19:14:26.799195991Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"515","time":"2026-03-06T19:14:26.799247255Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1757,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466691624848_8?ts=1718191496796&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":128.388457,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"BWL_Zusammenfassung.pdf","info":{"mimetype":"application/pdf","size":962929},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/KMqhMFWpKFQbYDjNcwpLNRYL"},"time":"2026-03-06T19:14:26.820182115Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1250410508775981096","message_type":0,"author_id":"741981427750404108","action":"discord message create","handling_time":526.663916,"event_ids":{"1250410508276994088":"$jOEVgOMBrqh6RmA4yVSp19UFg35k8QclI1v3ToZ0BXI"},"time":"2026-03-06T19:14:26.820276611Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"516","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.840766296Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"516","time":"2026-03-06T19:14:26.84086652Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$jOEVgOMBrqh6RmA4yVSp19UFg35k8QclI1v3ToZ0BXI","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466840,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:26.841026319Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1764,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":81.256825,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:26.857770225Z","message":"Request completed"} +{"level":"info","channel_id":"1175528825136881714","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:26.858488971Z","message":"Creating Matrix room for channel"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"","old_avatar_id":"","new_avatar_id":"","time":"2026-03-06T19:14:26.858543798Z","message":"Updating group DM avatar"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1760,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466728388611_26?ts=1753776837939&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":137.055948,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"alexx and 2 others were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"alexx and 2 others were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$vKJrpOnl1D_bj9BsFfI_PkttDUmclEtao95orA-Q7Uw"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:26.86576716Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1762,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466736321501_46?ts=1772291764901&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":141.76967,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2YMdDDWD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:26.87822904Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477323479689855027","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":155.000163,"event_ids":{"":"$KCTEWpzWqpVPJuCUHB12bXWf5qFzzxwAAcKXopxnQdw"},"time":"2026-03-06T19:14:26.878319765Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1765,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":13.245998,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.879231276Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1763,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466741495553_27?ts=1771924571335&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":150.625036,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":15909,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xFKcUMaWteHmTwruyigTDqsK"},"time":"2026-03-06T19:14:26.892316776Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475783358247207048","message_type":23,"author_id":"1211781489931452447","action":"discord message create","handling_time":978.681642,"event_ids":{"":"$70fxr1ocx8xH8go_r6ea_bG8sEEtlXZhR_T2XsFIR7w","1475783386776735835":"$qDaUxgwZuTewk-eNnoyNFCT_eFIO42mNXm71jz9HmEA"},"time":"2026-03-06T19:14:26.89244801Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1766,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.158629,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.895138752Z","message":"Request completed"} +{"level":"debug","transaction_id":"517","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.897116195Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"517","time":"2026-03-06T19:14:26.897226895Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$m2xZmVDUdBhdBedL41cK4uWGulQY1hxn_1H4912nTzk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466897,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:26.897452904Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1768,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":11.925631,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.905132127Z","message":"Request completed"} +{"level":"debug","transaction_id":"518","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:26.914038478Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"518","time":"2026-03-06T19:14:26.914160283Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qDaUxgwZuTewk-eNnoyNFCT_eFIO42mNXm71jz9HmEA","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466914,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:26.914363035Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$KCTEWpzWqpVPJuCUHB12bXWf5qFzzxwAAcKXopxnQdw","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824466914,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:26.914326368Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1767,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466879402878_28?ts=1753776837939&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":87.810471,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"3 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":32774,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/BtOpISCrOhQtgiNCQbUtDADy"},"time":"2026-03-06T19:14:26.9674212Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399666247473434714","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":616.586345,"event_ids":{"":"$m2xZmVDUdBhdBedL41cK4uWGulQY1hxn_1H4912nTzk","1399667392866422874":"$CRafmDwIoQYQQBcnfh-W0X-bgOEWPh6hnAq4055SaaU"},"time":"2026-03-06T19:14:26.967531341Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":14.587248,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.982776433Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1769,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466895292335_47?ts=1772291765368&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":90.191951,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2YMdDDWD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:26.985641152Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477323481648599162","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":107.002278,"event_ids":{"":"$tp16Q9X_4A7eMHoxexCBwRYpPstYdMJLj31fwpeejVo"},"time":"2026-03-06T19:14:26.985727966Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1773,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.549672,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:26.999802362Z","message":"Request completed"} +{"level":"debug","transaction_id":"519","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.005101991Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"519","time":"2026-03-06T19:14:27.005218348Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$CRafmDwIoQYQQBcnfh-W0X-bgOEWPh6hnAq4055SaaU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467005,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:27.005451621Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1770,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466905292275_35?ts=1771925298576&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":103.687775,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://share.google/Ve0eKx0jNlCblQ591","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.009133983Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1475786408517046304","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":116.294367,"event_ids":{"":"$fmggUqLwnT4MW-G7JTrY-8ic0MIFhdIn7Z5Kj37vKGE"},"time":"2026-03-06T19:14:27.009217444Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"520","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.021650967Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"520","time":"2026-03-06T19:14:27.021734988Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tp16Q9X_4A7eMHoxexCBwRYpPstYdMJLj31fwpeejVo","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467021,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.021921117Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$fmggUqLwnT4MW-G7JTrY-8ic0MIFhdIn7Z5Kj37vKGE","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467021,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.021948635Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","action":"initial backfill","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","limit":100,"count":16,"time":"2026-03-06T19:14:27.027299458Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","action":"initial backfill","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","limit":100,"count":16,"found_all":false,"time":"2026-03-06T19:14:27.027376005Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","action":"initial backfill","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:27.027454158Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"warn","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1455158234129105073","message_type":1,"author_id":"316966695430520833","action":"discord message create","handling_time":0.331541,"time":"2026-03-06T19:14:27.027951854Z","message":"Unhandled message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1775,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":4.517046,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.032883623Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1772,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466982946848_36?ts=1753776855228&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":86.384432,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Zip #134 | 0:14 und fehlerfrei 🏁\nohne Rückzieher 🟢\nlnkd.in/zip.","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Zip #134 | 0:14 und fehlerfrei 🏁\u003cbr\u003e\nohne Rückzieher 🟢\u003cbr\u003e\nlnkd.in/zip.","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.069519295Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399666319988625460","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":101.718434,"event_ids":{"":"$3Qd0066NYRwHubmAhlCfsVsFByI4g2j2OtzQ-vpsfOQ"},"time":"2026-03-06T19:14:27.069607576Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1774,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824466999969285_48?ts=1772397893185&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":84.376049,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:27.084427469Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1777,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":14.283854,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.084504644Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477768613976080605","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":98.501011,"event_ids":{"":"$r1kpElJTZxdfMHeEBTsFApzrNOlw8sF4MDQMTpYbXVA"},"time":"2026-03-06T19:14:27.084527553Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"521","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.093539715Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"521","time":"2026-03-06T19:14:27.09362129Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3Qd0066NYRwHubmAhlCfsVsFByI4g2j2OtzQ-vpsfOQ","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467093,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.093829769Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1779,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":10.51782,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.095671509Z","message":"Request completed"} +{"level":"debug","transaction_id":"522","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.104942716Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"522","time":"2026-03-06T19:14:27.105047968Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$r1kpElJTZxdfMHeEBTsFApzrNOlw8sF4MDQMTpYbXVA","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467105,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:27.105220758Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1776,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467033042375_66?ts=1767007158982&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":106.46526,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:27.139618894Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1455158235945238599","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":111.602227,"event_ids":{"":"$FujTQkP8_DAxCwEYJ9zkQbGavDhHIZoS596Yedmp_ps"},"time":"2026-03-06T19:14:27.139725194Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1782,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.261085,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.154716899Z","message":"Request completed"} +{"level":"debug","transaction_id":"523","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.160325788Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"523","time":"2026-03-06T19:14:27.160408971Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FujTQkP8_DAxCwEYJ9zkQbGavDhHIZoS596Yedmp_ps","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467160,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:27.16062611Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1781,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":67.042045,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<28700 bytes>","time":"2026-03-06T19:14:27.175423583Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"","old_name":"","new_name":"Rentengemeinschaft Berlin e.V.","time":"2026-03-06T19:14:27.17577908Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:27.175829576Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1778,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467084682253_37?ts=1753776930110&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":124.36359,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Queens #455 | 0:51 und fehlerfrei\nErste 👑: 🟫 🟨 ⬜\nlnkd.in/queens.","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Queens #455 | 0:51 und fehlerfrei\u003cbr\u003e\nErste 👑: 🟫 🟨 ⬜\u003cbr\u003e\nlnkd.in/queens.","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.209240842Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399666634066624523","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":139.464388,"event_ids":{"":"$xjXozB_VbHJW1VwmuxK3oHqe82Ez3dPKUEna1YegWjs"},"time":"2026-03-06T19:14:27.209400641Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1785,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":15.850066,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.22605466Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1780,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467095885366_69?ts=1772398020453&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":146.108618,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Nestostraße","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.242159022Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477769147776761856","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":157.386113,"event_ids":{"":"$WrLniZ8oxyRcVHKTow1kFwxIyBL4GgESwEXww1yqagA"},"time":"2026-03-06T19:14:27.24227021Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"524","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.243520177Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"524","time":"2026-03-06T19:14:27.24357626Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xjXozB_VbHJW1VwmuxK3oHqe82Ez3dPKUEna1YegWjs","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467243,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.243771749Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1783,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":103.457924,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:27.258536536Z","message":"Request completed"} +{"level":"debug","transaction_id":"525","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.262252492Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"525","time":"2026-03-06T19:14:27.262376112Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$WrLniZ8oxyRcVHKTow1kFwxIyBL4GgESwEXww1yqagA","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467262,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.262601284Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1788,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.005812,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46409 bytes>","time":"2026-03-06T19:14:27.287916089Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1789,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":6.981988,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.295310565Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1786,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467226236739_38?ts=1753777001508&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":119.251906,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Tango #295 | 0:51 und fehlerfrei\nErste 5 Platzierungen:\n🟨🟨🟨🟨🟨🟨\n1️⃣🟨🟨🟨4️⃣5️⃣\n🟨🟨🟨🟨🟨🟨\n🟨🟨🟨🟨🟨🟨\n2️⃣3️⃣🟨🟨🟨🟨\n🟨🟨🟨🟨🟨🟨\nlnkd.in/tango.","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Tango #295 | 0:51 und fehlerfrei\u003cbr\u003e\nErste 5 Platzierungen:\u003cbr\u003e\n🟨🟨🟨🟨🟨🟨\u003cbr\u003e\n1️⃣🟨🟨🟨4️⃣5️⃣\u003cbr\u003e\n🟨🟨🟨🟨🟨🟨\u003cbr\u003e\n🟨🟨🟨🟨🟨🟨\u003cbr\u003e\n2️⃣3️⃣🟨🟨🟨🟨\u003cbr\u003e\n🟨🟨🟨🟨🟨🟨\u003cbr\u003e\nlnkd.in/tango.","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.34570369Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399666933531676802","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":136.007336,"event_ids":{"":"$ru9WnUX8mGWPeNTw_09UrZtFwgYktN5q-ii3CoxXDp0"},"time":"2026-03-06T19:14:27.345819698Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"526","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.349179598Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"526","time":"2026-03-06T19:14:27.349252164Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1793,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":16.240833,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.36280896Z","message":"Request completed"} +{"level":"debug","transaction_id":"527","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.376342149Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"527","time":"2026-03-06T19:14:27.376467516Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ru9WnUX8mGWPeNTw_09UrZtFwgYktN5q-ii3CoxXDp0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467376,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.376654204Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1787,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":173.482792,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:27.43227928Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1792,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":112.49935,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15899 bytes>","time":"2026-03-06T19:14:27.44494014Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1796,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":9.798376,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.455574737Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1790,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467295603693_67?ts=1772406633642&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":167.220528,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/neuron-activation-neuron-gif-1455356329209493514","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":478,"mimetype":"video/mp4","size":46409,"w":432},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/ZhLfLaSUkfHzoVgkxYxeGkAT"},"time":"2026-03-06T19:14:27.463088434Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1477805274109706395","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":220.491572,"event_ids":{"video_https://tenor.com/view/neuron-activation-neuron-gif-1455356329209493514":"$ZjwuZJQMwcwr0u10IFlxB6jlrD8SB4TD_J7p3nALVug"},"time":"2026-03-06T19:14:27.463204861Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"528","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.466349787Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"528","time":"2026-03-06T19:14:27.466473617Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ZjwuZJQMwcwr0u10IFlxB6jlrD8SB4TD_J7p3nALVug","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467466,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:27.466686566Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1798,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.385541,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.47537899Z","message":"Request completed"} +{"level":"debug","transaction_id":"529","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.48898733Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"529","time":"2026-03-06T19:14:27.489249238Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1794,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467362989851_71?ts=1753777099476&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":157.111983,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Tango #295 | 0:30 und fehlerfrei\nErste 5 Platzierungen:\n🟨🟨2️⃣1️⃣🟨🟨\n🟨🟨4️⃣3️⃣5️⃣🟨\n🟨🟨🟨🟨🟨🟨\n🟨🟨🟨🟨🟨🟨\n🟨🟨🟨🟨🟨🟨\n🟨🟨🟨🟨🟨🟨\nlnkd.in/tango.","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Tango #295 | 0:30 und fehlerfrei\u003cbr\u003e\nErste 5 Platzierungen:\u003cbr\u003e\n🟨🟨2️⃣1️⃣🟨🟨\u003cbr\u003e\n🟨🟨4️⃣3️⃣5️⃣🟨\u003cbr\u003e\n🟨🟨🟨🟨🟨🟨\u003cbr\u003e\n🟨🟨🟨🟨🟨🟨\u003cbr\u003e\n🟨🟨🟨🟨🟨🟨\u003cbr\u003e\n🟨🟨🟨🟨🟨🟨\u003cbr\u003e\nlnkd.in/tango.","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.520314084Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399667344438988842","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":174.276549,"event_ids":{"":"$Vn3F3p30qmw70vrrRAH36QWkNY2ZkLqE5LeN5lmA9qQ"},"time":"2026-03-06T19:14:27.520488969Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1791,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":247.816646,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<58815 bytes>","time":"2026-03-06T19:14:27.545905325Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1800,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":26.716259,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.547916013Z","message":"Request completed"} +{"level":"debug","transaction_id":"530","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.555654183Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"530","time":"2026-03-06T19:14:27.555705726Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Vn3F3p30qmw70vrrRAH36QWkNY2ZkLqE5LeN5lmA9qQ","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467555,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.555850579Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1801,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":11.870385,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.558203983Z","message":"Request completed"} +{"level":"debug","transaction_id":"531","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.588466971Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"531","time":"2026-03-06T19:14:27.588687462Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1603,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1009_906_0_353_369_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":3605.482915,"status_code":200,"response_length":208,"response_mime":"application/json","time":"2026-03-06T19:14:27.610835132Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:27.611198","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:27.61122569Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:27.611198","time":"2026-03-06T19:14:27.611427324Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1797,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467455830499_29?ts=1772011408007&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":190.789417,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"\u003e alexx used /play\n**Your group is on a 1 day streak!** 🔥 Here are yesterday's results:\n👑 1/6: @alexx\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cblockquote\u003e\n\u003ca href=\"https://matrix.to/#/@discord_428870593358594048:matrix.theocloud.dev\"\u003ealexx\u003c/a\u003e used \u003cfont color=\"#3771bb\"\u003e/play\u003c/font\u003e\n\u003c/blockquote\u003e\n\u003cstrong\u003eYour group is on a 1 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 1/6: @alexx\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.646913952Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1805,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":13.710449,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.660861795Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1799,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fMRxPLePwkLANpkhHa:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467475600530_49?ts=1772560251853&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":190.330274,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:27.666070279Z","message":"Request completed"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","message_id":"1478449595586580510","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":202.487781,"event_ids":{"":"$PHRAWwiqMJ9CZnjstaa_pBhzWFLppCO8zyn7kvJJQE8"},"time":"2026-03-06T19:14:27.666200395Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","action":"initial backfill","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:27.66643297Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","transaction_id":"532","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.676291689Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"532","time":"2026-03-06T19:14:27.676418593Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tq52_EzkbnjCiJNnO1U-k8iiTtitqMKQG1O0iNqPBfo","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467676,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.676629027Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"533","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.704794653Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"533","time":"2026-03-06T19:14:27.704871409Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$PHRAWwiqMJ9CZnjstaa_pBhzWFLppCO8zyn7kvJJQE8","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467705,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:27.705085615Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1795,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":289.784911,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:27.72248122Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1802,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467548160740_72?ts=1753777167164&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":190.458993,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Queens #455 | 0:53\nErste 👑: 🟦 🟩 ⬜\nlnkd.in/queens.","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Queens #455 | 0:53\u003cbr\u003e\nErste 👑: 🟦 🟩 ⬜\u003cbr\u003e\nlnkd.in/queens.","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.738847978Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399667628343037994","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":218.088021,"event_ids":{"":"$XkgsVc8IsnlhvSll2DoT4PDf1hvxBpGKKwAZ-2EhJlY"},"time":"2026-03-06T19:14:27.738967688Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1808,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":9.875692,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.749731842Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1803,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467558474272_9?ts=1725519164641&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":193.352696,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Screenshot_20240905_085209_Brave.jpg","info":{"h":905,"mimetype":"image/jpeg","size":58815,"w":1710},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ccfbMwqdcXZRoQUsFPaaMtEi"},"time":"2026-03-06T19:14:27.752086782Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1281144975329071115","message_type":0,"author_id":"741981427750404108","action":"discord message create","handling_time":931.57606,"event_ids":{"1281144974972424282":"$fBDVT2ATy2rY3Rg09haoXzjkd-62ENgH5g_p2T8Yepg"},"time":"2026-03-06T19:14:27.752215013Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"534","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.756559409Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"534","time":"2026-03-06T19:14:27.756626667Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XkgsVc8IsnlhvSll2DoT4PDf1hvxBpGKKwAZ-2EhJlY","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467756,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.756810841Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"535","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.772856954Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"535","time":"2026-03-06T19:14:27.77323047Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fBDVT2ATy2rY3Rg09haoXzjkd-62ENgH5g_p2T8Yepg","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467773,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:27.773194641Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1784,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":640.322087,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Rentengemeinschaft Berlin e.V.","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1175528825136881714","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1175528825136881714","displayname":"Rentengemeinschaft Berlin e.V.","external_url":"https://discord.com/channels/@me/1175528825136881714"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"state_key":"fi.mau.discord://discord/dm/1175528825136881714","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1175528825136881714","displayname":"Rentengemeinschaft Berlin e.V.","external_url":"https://discord.com/channels/@me/1175528825136881714"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"type":"m.room.avatar","content":{"url":"mxc://matrix.theocloud.dev/mWzDLCENhIpCMTBtGscwzeQu"}}],"preset":"private_chat","room_version":"11"},"time":"2026-03-06T19:14:27.816784224Z","message":"Request completed"} +{"level":"info","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","time":"2026-03-06T19:14:27.817455408Z","message":"Matrix room created"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1806,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467661118674_30?ts=1772011408007&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":184.875665,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":15899,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/BZnPhhdTYsxDzNrNuijwfIyM"},"time":"2026-03-06T19:14:27.846271474Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476147577648058381","message_type":23,"author_id":"1211781489931452447","action":"discord message create","handling_time":836.86776,"event_ids":{"":"$tq52_EzkbnjCiJNnO1U-k8iiTtitqMKQG1O0iNqPBfo","1476147577819758643":"$KBeae8dR6iJPamnWsXwHnTa9KYXcCLrLD37KNgkGtlQ"},"time":"2026-03-06T19:14:27.846403057Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1811,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":6.669584,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.85363047Z","message":"Request completed"} +{"level":"debug","transaction_id":"536","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.855429117Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"536","time":"2026-03-06T19:14:27.85572455Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"537","content":{"pdu":8,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.875036765Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"537","time":"2026-03-06T19:14:27.875255581Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KBeae8dR6iJPamnWsXwHnTa9KYXcCLrLD37KNgkGtlQ","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467875,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:27.875470625Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1809,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467749926003_73?ts=1753777188735&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":146.091507,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Pinpoint #455 | 1 Rateversuch\n1️⃣ | 100 % Übereinstimmung 📌\nlnkd.in/pinpoint.","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Pinpoint #455 | 1 Rateversuch\u003cbr\u003e\n1️⃣ | 100 % Übereinstimmung 📌\u003cbr\u003e\nlnkd.in/pinpoint.","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.896227526Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399667718818627694","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":156.922221,"event_ids":{"":"$YpYGscwSqBP3U3GUAcN5ryXXHSRva_6Tf2-MOeZrwWE"},"time":"2026-03-06T19:14:27.896359179Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1807,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467722776024_50?ts=1767008357581&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":176.028122,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"446461793","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:27.898953329Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1455163263234084957","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":758.953654,"event_ids":{"":"$8Dr9S2r7g2TMyzPhG73e0dLX6HNBwgGOysg3K-Hl2fA"},"time":"2026-03-06T19:14:27.899048524Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1813,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":11.22211,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.908259806Z","message":"Request completed"} +{"level":"debug","transaction_id":"538","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.913757996Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"538","time":"2026-03-06T19:14:27.913885039Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YpYGscwSqBP3U3GUAcN5ryXXHSRva_6Tf2-MOeZrwWE","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467914,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.914089397Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"539","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:27.931582501Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"539","time":"2026-03-06T19:14:27.931657372Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8Dr9S2r7g2TMyzPhG73e0dLX6HNBwgGOysg3K-Hl2fA","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824467931,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:27.931828276Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1814,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_428589198929297419:matrix.theocloud.dev?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":39.104525,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:27.938910208Z","message":"Request completed"} +{"level":"debug","transaction_id":"540","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:27.97170351Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"540","time":"2026-03-06T19:14:27.971775866Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1810,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":169.684492,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:27.98743631Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1812,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467853800466_62?ts=1772108063744&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":165.259498,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://share.google/GE6UhK90bOnRaXXOT","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.019203979Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476552981192376341","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":172.585738,"event_ids":{"":"$HCtZgz6AW35HE4R1EyRmwEx3fWN86rNlTeKaCXBiPMM"},"time":"2026-03-06T19:14:28.019302736Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"541","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.02731322Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"541","time":"2026-03-06T19:14:28.027390745Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1819,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":17.108762,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.037109292Z","message":"Request completed"} +{"level":"debug","transaction_id":"542","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.059583543Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"542","time":"2026-03-06T19:14:28.0596603Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HCtZgz6AW35HE4R1EyRmwEx3fWN86rNlTeKaCXBiPMM","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468059,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.059878348Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1815,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467908450754_63?ts=1753777197063&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":178.003888,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Omg","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.087554449Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399667753748795402","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":190.929241,"event_ids":{"":"$UdMytfpV-UZhEIZ5FvLlefbUNqVx5jLd8hzWFb1YYdY"},"time":"2026-03-06T19:14:28.087678908Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1821,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":20.641312,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.108917371Z","message":"Request completed"} +{"level":"debug","transaction_id":"543","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.119147721Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"543","time":"2026-03-06T19:14:28.119229716Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$UdMytfpV-UZhEIZ5FvLlefbUNqVx5jLd8hzWFb1YYdY","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468119,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.119436658Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1816,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824467939197888_1?ts=1767008855178&user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":208.96013,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Er erkennt mein Mikro nicht mehr hahaha","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.148309786Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1455165350307041322","message_type":0,"author_id":"428589198929297419","action":"discord message create","handling_time":248.921619,"event_ids":{"":"$QoZEGFZGQJZFfiou5Y379OsoC2QbBiDGOkGvjDnBrZk"},"time":"2026-03-06T19:14:28.148391222Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1823,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_428589198929297419:matrix.theocloud.dev?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":9.77037,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.158672906Z","message":"Request completed"} +{"level":"debug","transaction_id":"544","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.16306228Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"544","time":"2026-03-06T19:14:28.163196447Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QoZEGFZGQJZFfiou5Y379OsoC2QbBiDGOkGvjDnBrZk","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468163,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.163371542Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1817,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":204.873452,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<4363 bytes>","time":"2026-03-06T19:14:28.17953457Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1820,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468037400743_39?ts=1772207542320&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":153.02698,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hört ihr zu?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.190557141Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970224581611632","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":170.932363,"event_ids":{"":"$FZ_rC_hTg1dVnJgpyEHyJllg2K5ijNwY4LWW7b33Ae8"},"time":"2026-03-06T19:14:28.190614761Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1825,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.50546,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.191320656Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1826,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.456923,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.20555136Z","message":"Request completed"} +{"level":"debug","transaction_id":"545","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.213791765Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"545","time":"2026-03-06T19:14:28.213877182Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FZ_rC_hTg1dVnJgpyEHyJllg2K5ijNwY4LWW7b33Ae8","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468214,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.214063661Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1818,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":244.748337,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:28.232665441Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":1822,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468109134161_74?ts=1753777218520&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":146.241598,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Crossclimb #455 | 0:17 und fehlerfrei\nAusfüllreihenfolge: 1️⃣ 2️⃣ 3️⃣ 🔼 🔽 🪜\nlnkd.in/crossclimb.","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Crossclimb #455 | 0:17 und fehlerfrei\u003cbr\u003e\nAusfüllreihenfolge: 1️⃣ 2️⃣ 3️⃣ 🔼 🔽 🪜\u003cbr\u003e\nlnkd.in/crossclimb.","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.255608683Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399667843745976342","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":167.704045,"event_ids":{"":"$FABRzNLqvR5OYnpps5yN16_tB6gfhtQiP7KjVdJgu18"},"time":"2026-03-06T19:14:28.255724062Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"546","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.261655903Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"546","time":"2026-03-06T19:14:28.26177219Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FABRzNLqvR5OYnpps5yN16_tB6gfhtQiP7KjVdJgu18","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468261,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.261958459Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"547","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.29037405Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"547","time":"2026-03-06T19:14:28.290574916Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1827,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":109.47609,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:28.301157551Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1824,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468158853169_2?ts=1767008863427&user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":154.243422,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"mega hass","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.313230688Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1455165384905855032","message_type":0,"author_id":"428589198929297419","action":"discord message create","handling_time":164.680086,"event_ids":{"":"$aDhfGHed9EQxWRhiNL5TyajsPkr07pXUq4_QdlKKY9M"},"time":"2026-03-06T19:14:28.313350886Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1831,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_428589198929297419:matrix.theocloud.dev?user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":6.685578,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.325772118Z","message":"Request completed"} +{"level":"debug","transaction_id":"548","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.329310325Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"548","time":"2026-03-06T19:14:28.329420815Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$aDhfGHed9EQxWRhiNL5TyajsPkr07pXUq4_QdlKKY9M","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468329,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.329611485Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1829,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/join?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":109.675209,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:28.343010437Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1828,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468205762353_68?ts=1772207551317&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":152.080129,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.35798531Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970262317760675","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":167.217944,"event_ids":{"":"$xOKHy-tDh5Bnjd7Q2thnHj-_DU8bQYS7VVNiC7dvnYw"},"time":"2026-03-06T19:14:28.358074987Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1830,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":57.587223,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:28.358943615Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1285591044402188431","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"1285591043978297344","time":"2026-03-06T19:14:28.359056061Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1285591044402188431","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":606.476472,"time":"2026-03-06T19:14:28.359164316Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1834,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":11.764924,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.371215593Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1835,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":13.374578,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.373252751Z","message":"Request completed"} +{"level":"debug","transaction_id":"549","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.374928685Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"549","time":"2026-03-06T19:14:28.375017734Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xOKHy-tDh5Bnjd7Q2thnHj-_DU8bQYS7VVNiC7dvnYw","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468375,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.375189267Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428589198929297419:matrix.theocloud.dev","req_id":1832,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468325962507_3?ts=1767008875831&user_id=%40discord_428589198929297419%3Amatrix.theocloud.dev","duration":93.001285,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"kann euch aber hören","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.41915544Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1455165436931997777","message_type":0,"author_id":"428589198929297419","action":"discord message create","handling_time":100.472309,"event_ids":{"":"$90hIFkpb_ipXccqpiUx4UAtHVZzIXfoZdo9D_05vQgQ"},"time":"2026-03-06T19:14:28.419308464Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1838,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":10.322402,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.430493418Z","message":"Request completed"} +{"level":"debug","transaction_id":"550","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.435388729Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"550","time":"2026-03-06T19:14:28.435487416Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$90hIFkpb_ipXccqpiUx4UAtHVZzIXfoZdo9D_05vQgQ","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468435,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.435662022Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1837,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468373478900_10?ts=1726580424038&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":93.725828,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://web.goodnotes.com/s/NR15Iri1nhfoSDMs71Hwgi","com.beeper.linkpreviews":[{"og:title":"Goodnotes","og:description":"Goodnotes app","matched_url":"https://web.goodnotes.com/s/NR15Iri1nhfoSDMs71Hwgi"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.467402103Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1285596219862814802","message_type":0,"author_id":"741981427750404108","action":"discord message create","handling_time":108.00598,"event_ids":{"":"$64uV2JSbjIftVOm4QaoCJR_ivOvNbTNS4ARw_7i6iVY"},"time":"2026-03-06T19:14:28.467551495Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1836,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468371581497_64?ts=1772207554225&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":111.314756,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"MAC auf die 2","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.48305675Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970274514538639","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":123.974079,"event_ids":{"":"$lNB8pq58bcbXKYgomPS06z6RirR5oQolnedlK27Wy3E"},"time":"2026-03-06T19:14:28.483143564Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1840,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.405382,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.485625896Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1841,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":12.780919,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.496577926Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1833,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":155.983193,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_122672447207112706:matrix.theocloud.dev"},"time":"2026-03-06T19:14:28.499140368Z","message":"Request completed"} +{"level":"debug","transaction_id":"551","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.500921345Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"551","time":"2026-03-06T19:14:28.501021079Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$64uV2JSbjIftVOm4QaoCJR_ivOvNbTNS4ARw_7i6iVY","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468501,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.501229698Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"552","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.513891466Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"552","time":"2026-03-06T19:14:28.514196746Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lNB8pq58bcbXKYgomPS06z6RirR5oQolnedlK27Wy3E","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468514,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.514232994Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1842,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":60.305623,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:28.546279752Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1839,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468430684506_69?ts=1767015664523&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":128.866947,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"krass","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.559730318Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1455193910769877091","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":140.06538,"event_ids":{"":"$J4wHBdm3rPRQkpAXPpY3qDb41h0kjfbjesX0NoGNab0"},"time":"2026-03-06T19:14:28.559867279Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1847,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.99764,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.57459505Z","message":"Request completed"} +{"level":"debug","transaction_id":"553","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.580349491Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"553","time":"2026-03-06T19:14:28.580450692Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$J4wHBdm3rPRQkpAXPpY3qDb41h0kjfbjesX0NoGNab0","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468580,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.580683756Z","message":"Sent message checkpoint"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:28.607572525Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1843,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468496775929_40?ts=1772207555942&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":114.268942,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wollen wir skribbl io spielen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.611207604Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970281716420741","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":127.904102,"event_ids":{"":"$-GN90QRuPifPCFZv9UJYJUdBSSdNl9py1LAVuC1DPIg"},"time":"2026-03-06T19:14:28.611400159Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1846,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":68.861086,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:28.615367267Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1286709819847344178","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:28.61545457Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1286709819847344178","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":147.574817,"time":"2026-03-06T19:14:28.615523155Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1845,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":91.901968,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32554 bytes>","time":"2026-03-06T19:14:28.625104392Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1849,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":13.542478,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.625829983Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1850,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":5.404252,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.631246527Z","message":"Request completed"} +{"level":"debug","transaction_id":"554","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.632890194Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"554","time":"2026-03-06T19:14:28.632969605Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-GN90QRuPifPCFZv9UJYJUdBSSdNl9py1LAVuC1DPIg","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468633,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.633190585Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1844,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/join?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":169.770607,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:28.669269824Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1853,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":12.201018,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_257943768903188481","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:28.681996336Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1854,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_257943768903188481:matrix.theocloud.dev/displayname?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":6.40565,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:28.688936069Z","message":"Request completed"} +{"level":"debug","transaction_id":"555","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.700311483Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"555","time":"2026-03-06T19:14:28.700583448Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1848,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468574833631_70?ts=1767097981462&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":134.194722,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:28.709179421Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1455539173036658823","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":149.071325,"event_ids":{"":"$aYD-TYTVhHz0heDNyW5eGWsHsn3JeYbsOFzVd2Pg7DQ"},"time":"2026-03-06T19:14:28.709351652Z","message":"Finished handling Discord message"} +{"level":"warn","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1455539199322099854","message_type":1,"author_id":"316966695430520833","action":"discord message create","handling_time":0.516762,"time":"2026-03-06T19:14:28.710270286Z","message":"Unhandled message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1856,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":15.922143,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.726697039Z","message":"Request completed"} +{"level":"debug","transaction_id":"556","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.734674908Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"556","time":"2026-03-06T19:14:28.734765563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$aYD-TYTVhHz0heDNyW5eGWsHsn3JeYbsOFzVd2Pg7DQ","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468734,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:28.73500589Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1855,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_257943768903188481:matrix.theocloud.dev/displayname?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":62.604341,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"im_jug"},"time":"2026-03-06T19:14:28.751702374Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1851,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468625958911_41?ts=1772207557011&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":149.071954,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"oh","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.775196462Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970286200127591","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":163.438711,"event_ids":{"":"$hRWPxZmjPOvj5D850FzL1R1D0vVl4O0741I5o9UKtQg"},"time":"2026-03-06T19:14:28.775310374Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1852,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468631514093_31?ts=1753778304453&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":148.863545,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 1 day streak!** 🔥 Here are yesterday's results:\n👑 5/6: @Maja\nX/6: @lagopodus @alexx\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 1 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 5/6: @Maja\u003cbr\u003e\nX/6: @lagopodus @alexx\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$NsstHhlkz2l3j3sGiNlkIs9DOMIE_QoIgMnCMxsB0yU"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.780698842Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1858,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":13.848806,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.790030951Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":9.166863,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.790183906Z","message":"Request completed"} +{"level":"debug","transaction_id":"557","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.795902378Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"557","time":"2026-03-06T19:14:28.796011611Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hRWPxZmjPOvj5D850FzL1R1D0vVl4O0741I5o9UKtQg","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468796,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.79620689Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"558","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.806519235Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"558","time":"2026-03-06T19:14:28.806602278Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SET7PHDS_4xfqsGLqHasjRwWXn3nkuFTfc7XnU3L2Yo","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468806,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.806775696Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1857,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468726945538_71?ts=1769878397474&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":116.246037,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:28.843315125Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1467201083037323317","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":132.975276,"event_ids":{"":"$f5ZojFz8crvCUUXt9Haf61v65PlBntPz0ZTe-f6eJKE"},"time":"2026-03-06T19:14:28.843448803Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1862,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.657438,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.857831204Z","message":"Request completed"} +{"level":"debug","transaction_id":"559","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.866128601Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"559","time":"2026-03-06T19:14:28.866235529Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$f5ZojFz8crvCUUXt9Haf61v65PlBntPz0ZTe-f6eJKE","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468866,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:28.866449177Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1860,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468790228675_65?ts=1772207557247&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":110.134981,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ping auf die 3","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.90054329Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970287189983323","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":124.867431,"event_ids":{"":"$9C8wtxoNyhkcS5Xhv3K6UYlTfRRNnsPYVi2PUp4W568"},"time":"2026-03-06T19:14:28.900661952Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1861,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468790388474_32?ts=1753778304453&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":114.385998,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved and 2 unsolved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":32554,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/XMwPqGAEsFKcwqKninXDlfet"},"time":"2026-03-06T19:14:28.905035123Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1399672398479097936","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":649.043006,"event_ids":{"":"$SET7PHDS_4xfqsGLqHasjRwWXn3nkuFTfc7XnU3L2Yo","1399672398235570186":"$x1iSZFUHtwgE-pwnA-gid-oV6Q-hAsSYW55VCw3k6Nw"},"time":"2026-03-06T19:14:28.905175366Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1865,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":16.537941,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.918109309Z","message":"Request completed"} +{"level":"debug","transaction_id":"560","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.922233842Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"560","time":"2026-03-06T19:14:28.92232757Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$9C8wtxoNyhkcS5Xhv3K6UYlTfRRNnsPYVi2PUp4W568","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468922,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.922550576Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"561","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.931687407Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"561","time":"2026-03-06T19:14:28.931826952Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$x1iSZFUHtwgE-pwnA-gid-oV6Q-hAsSYW55VCw3k6Nw","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468931,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:28.932039901Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1863,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468858032489_51?ts=1769891307273&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":103.280525,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich höre gornigs","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:28.961475816Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1467255230659035268","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":117.69198,"event_ids":{"":"$dcbTZ20CoEY6POdGFakRRfnwHIbBKe_B7hOACM9s-gs"},"time":"2026-03-06T19:14:28.961587285Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1867,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.364863,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:28.969685282Z","message":"Request completed"} +{"level":"debug","transaction_id":"562","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:28.973175368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"562","time":"2026-03-06T19:14:28.973281109Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$dcbTZ20CoEY6POdGFakRRfnwHIbBKe_B7hOACM9s-gs","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824468973,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:28.973490636Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1866,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468918272670_42?ts=1772207563788&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":91.429276,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"🙁","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.009887866Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970314624667791","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":108.81608,"event_ids":{"":"$LwUx_MTh_1QvkUKiLsZLig32nqZhRoB-HZF18Yuwjsc"},"time":"2026-03-06T19:14:29.009993328Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1870,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":5.718054,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.016533424Z","message":"Request completed"} +{"level":"debug","transaction_id":"563","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.018084969Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"563","time":"2026-03-06T19:14:29.018133929Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LwUx_MTh_1QvkUKiLsZLig32nqZhRoB-HZF18Yuwjsc","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469018,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.018296312Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1869,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":62.417303,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<30022 bytes>","time":"2026-03-06T19:14:29.04299874Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1872,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_257943768903188481:matrix.theocloud.dev/avatar_url?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":4.217353,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:29.047698075Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1868,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824468969919672_52?ts=1769891318819&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.925433,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"stille","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.060020898Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1467255279086473235","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":98.167166,"event_ids":{"":"$lkqHqJoSc_4d0OdxNZBfqBAUfKR1f6HC0nJVb2JwQE4"},"time":"2026-03-06T19:14:29.060135858Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1873,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_257943768903188481:matrix.theocloud.dev/avatar_url?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":23.413071,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AhodtxoLaSTVxzYXWMzrbwNb"},"time":"2026-03-06T19:14:29.071233789Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1874,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":12.715407,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.073682318Z","message":"Request completed"} +{"level":"debug","transaction_id":"564","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.080221017Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"564","time":"2026-03-06T19:14:29.080316422Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lkqHqJoSc_4d0OdxNZBfqBAUfKR1f6HC0nJVb2JwQE4","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469080,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.080524901Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1871,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469016724792_72?ts=1772207566211&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":93.709205,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Browser auf die 7!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.110582273Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970324787728590","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":100.163187,"event_ids":{"":"$nYCaIj_IGlchv2gUobmDiH3X6YEmD8hawU5-9qKw43Q"},"time":"2026-03-06T19:14:29.110683893Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1877,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":11.37262,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.12278839Z","message":"Request completed"} +{"level":"debug","transaction_id":"565","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.13113272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"565","time":"2026-03-06T19:14:29.131215972Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nYCaIj_IGlchv2gUobmDiH3X6YEmD8hawU5-9qKw43Q","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469131,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.131453575Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1875,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/join?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":85.844342,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:29.157641129Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1864,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":314.634707,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<216677 bytes>","time":"2026-03-06T19:14:29.172973035Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1881,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_741981427750404108:matrix.theocloud.dev?user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":3.949648,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.17737575Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1876,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469073812015_73?ts=1769891321648&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":122.778101,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja bei mir steht bei dc RTC verbindet","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.196726936Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1467255290952024118","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":136.118526,"event_ids":{"":"$NWc8HqCLG36niRxQRm6bF8ozCFCevM6iNALimDFoBrQ"},"time":"2026-03-06T19:14:29.19681375Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1883,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.112737,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.208551226Z","message":"Request completed"} +{"level":"debug","transaction_id":"566","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.2144017Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"566","time":"2026-03-06T19:14:29.214480272Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$NWc8HqCLG36niRxQRm6bF8ozCFCevM6iNALimDFoBrQ","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469214,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.214706422Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1879,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":83.67176,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22457 bytes>","time":"2026-03-06T19:14:29.219922588Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1885,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":7.201293,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.227709229Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1878,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469122982272_43?ts=1772207577421&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":131.158539,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"schade","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.254312344Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970371805876315","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":143.391126,"event_ids":{"":"$kqIrKT0Arxa0vxNttH79WP94Ts_ceIbQu7VcfuAZD1M"},"time":"2026-03-06T19:14:29.254469629Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1887,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":11.79747,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.266953508Z","message":"Request completed"} +{"level":"debug","transaction_id":"567","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.273164927Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"567","time":"2026-03-06T19:14:29.273245734Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kqIrKT0Arxa0vxNttH79WP94Ts_ceIbQu7VcfuAZD1M","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469273,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.273466785Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_741981427750404108:matrix.theocloud.dev","req_id":1882,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469177582622_11?ts=1727700990501&user_id=%40discord_741981427750404108%3Amatrix.theocloud.dev","duration":117.118296,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Screenshot_20240930_145556_Brave.jpg","info":{"h":1602,"mimetype":"image/jpeg","size":216677,"w":2515},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/cSfocRmfGAfuBcuJjNCLBBGd"},"time":"2026-03-06T19:14:29.294865327Z","message":"Request completed"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1290296216260710420","message_type":0,"author_id":"741981427750404108","action":"discord message create","handling_time":679.235942,"event_ids":{"1290296215505997916":"$X50Uwom8gQoteRHF9vpyUGWmPr1WTQDr67ejakbK3Mw"},"time":"2026-03-06T19:14:29.294955423Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"568","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.312029613Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"568","time":"2026-03-06T19:14:29.312126485Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$X50Uwom8gQoteRHF9vpyUGWmPr1WTQDr67ejakbK3Mw","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469312,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:29.312260791Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1884,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469208754676_53?ts=1769891328321&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":125.252471,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"omg","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.334137613Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1467255318940750067","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":137.093103,"event_ids":{"":"$2ZaE7VgS6ZarYiJTUSh0DanEXSr3iUkR0VL97F8l-B8"},"time":"2026-03-06T19:14:29.334235951Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1889,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":12.750327,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.347613741Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1880,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":191.483369,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_257943768903188481:matrix.theocloud.dev"},"time":"2026-03-06T19:14:29.349310697Z","message":"Request completed"} +{"level":"debug","transaction_id":"569","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.365828175Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"569","time":"2026-03-06T19:14:29.365925535Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2ZaE7VgS6ZarYiJTUSh0DanEXSr3iUkR0VL97F8l-B8","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469366,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.366165443Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469227892355_33?ts=1753861785057&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":142.099674,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja and alexx are playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja and alexx are playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$SET7PHDS_4xfqsGLqHasjRwWXn3nkuFTfc7XnU3L2Yo"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.370262528Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1892,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":18.156186,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.388668261Z","message":"Request completed"} +{"level":"debug","transaction_id":"570","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.396436253Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"570","time":"2026-03-06T19:14:29.396752289Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1888,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469267134609_66?ts=1772207590785&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":153.017202,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.420352119Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970427858423818","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":165.595229,"event_ids":{"":"$ABnAJISQdHHdMoetks7xNtqH01jSHlBMXAHfVaVbkGA"},"time":"2026-03-06T19:14:29.420451364Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"571","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.426801141Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"571","time":"2026-03-06T19:14:29.4269696Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3KOjMi7Fw04axEBbaD4ZOfmsjk3KqrkO3vvq4_ytfSw","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469427,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.427180104Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1894,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":18.796779,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.439936229Z","message":"Request completed"} +{"level":"debug","transaction_id":"572","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.451238029Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"572","time":"2026-03-06T19:14:29.451354735Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ABnAJISQdHHdMoetks7xNtqH01jSHlBMXAHfVaVbkGA","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469451,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.451554274Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1890,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21cshVmlXZMqDNKkigqw:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469347780105_74?ts=1769956047374&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":140.588428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:29.488510452Z","message":"Request completed"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","message_id":"1467526770323361822","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":154.003375,"event_ids":{"":"$8WLQ88QSXPjzhj_-5sGje_dbb-0i7UfVtexNci7kE78"},"time":"2026-03-06T19:14:29.488618079Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","action":"initial backfill","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:29.488869302Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","transaction_id":"573","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.508590443Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"573","time":"2026-03-06T19:14:29.508692133Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8WLQ88QSXPjzhj_-5sGje_dbb-0i7UfVtexNci7kE78","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469508,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:29.508885736Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1893,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469388935547_34?ts=1753861785057&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":130.786979,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 unfinished and 1 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22457,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/IYqyTqlgHIaOxMotvaDdNpdw"},"time":"2026-03-06T19:14:29.520002942Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1400022541510115328","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":614.433317,"event_ids":{"":"$3KOjMi7Fw04axEBbaD4ZOfmsjk3KqrkO3vvq4_ytfSw","1400030533244686506":"$Q_nl3mdeUZrgt7NU259H_MsaSef3AwiJEgdh6n5SaIc"},"time":"2026-03-06T19:14:29.520138017Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"574","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.551312655Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"574","time":"2026-03-06T19:14:29.551471686Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Q_nl3mdeUZrgt7NU259H_MsaSef3AwiJEgdh6n5SaIc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469551,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:29.551691061Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1895,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469440166708_44?ts=1772207599315&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":132.679983,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"sorry","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.572997411Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970463635706001","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":152.266677,"event_ids":{"":"$HU83_BUQDALYeFkNIzAiRrCGgs2tPPlnDSPTxGydMCg"},"time":"2026-03-06T19:14:29.573101126Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1891,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/join?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":224.290639,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:29.574032822Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1897,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":11.536191,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.585187743Z","message":"Request completed"} +{"level":"debug","transaction_id":"575","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.598131674Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"575","time":"2026-03-06T19:14:29.59824831Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HU83_BUQDALYeFkNIzAiRrCGgs2tPPlnDSPTxGydMCg","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469598,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.598485355Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"576","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.608885142Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"576","time":"2026-03-06T19:14:29.609154733Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1899,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469585409492_67?ts=1772207602194&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":69.213789,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wann erstellst du dir eine Website?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.654759754Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970475711369459","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":81.453221,"event_ids":{"":"$u30iPuZ5CI7BAZZLI9wycX68UzC-lLmsJGYSGYNRFrw"},"time":"2026-03-06T19:14:29.654851247Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1898,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824469574430015_13?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":98.90002,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:29.673431376Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1900,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":18.10101,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.673677011Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","action":"initial backfill","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:29.673810828Z","message":"Fetching messages for backfill"} +{"level":"debug","transaction_id":"577","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.678152082Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"577","time":"2026-03-06T19:14:29.678227721Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$u30iPuZ5CI7BAZZLI9wycX68UzC-lLmsJGYSGYNRFrw","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469678,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.678425444Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"578","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.687160472Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"578","event_id":"$jvc_HFs7D8VuTJu-mjXnit4R2_kt-ThqsYZW6fqDw_s","time":"2026-03-06T19:14:29.687240232Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"578","time":"2026-03-06T19:14:29.687295896Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1901,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":33.064569,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:29.706948313Z","message":"Request completed"} +{"level":"info","channel_id":"1433893113969250476","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:29.707995248Z","message":"Creating Matrix room for channel"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469673886607_68?ts=1772207607497&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":60.320219,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"majadev.dev?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.734396588Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970497953763493","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":79.27582,"event_ids":{"":"$4khqJ-JLPh7zDZlCdUaMBTKKa14rHvoLLia08azwBOA"},"time":"2026-03-06T19:14:29.734498348Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1904,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":12.146682,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.747426285Z","message":"Request completed"} +{"level":"debug","transaction_id":"579","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.752216344Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"579","time":"2026-03-06T19:14:29.752343178Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4khqJ-JLPh7zDZlCdUaMBTKKa14rHvoLLia08azwBOA","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469752,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.752522742Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"580","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.814786951Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"580","time":"2026-03-06T19:14:29.8148804Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1905,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469747692314_45?ts=1772207616331&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":77.763805,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"soll ich heute?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.825622414Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970535005978796","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":90.823813,"event_ids":{"":"$f9vrWFWAymjyvDbs6z_U7bod5ymlzzOGa3RteVB3sbo"},"time":"2026-03-06T19:14:29.825724872Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1906,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":15.295798,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.841814357Z","message":"Request completed"} +{"level":"debug","transaction_id":"581","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.847159942Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"581","time":"2026-03-06T19:14:29.847264775Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$f9vrWFWAymjyvDbs6z_U7bod5ymlzzOGa3RteVB3sbo","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469847,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.847492391Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1896,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":309.905201,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<407543 bytes>","time":"2026-03-06T19:14:29.859246978Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1909,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.980379,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.864667713Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1907,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":72.567334,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32793 bytes>","time":"2026-03-06T19:14:29.904064388Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1911,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":10.302567,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.915093593Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1910,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":53.599791,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:29.91866288Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1908,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469842086951_69?ts=1772207626199&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":112.799811,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Du yappst immer nur","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:29.955059412Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970576395370506","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":128.975551,"event_ids":{"":"$8LTxuXjb4zRyA9mge1jkX6wA0dWb15U6LqW9P3NG5JM"},"time":"2026-03-06T19:14:29.955133445Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"582","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.959649374Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"582","time":"2026-03-06T19:14:29.959742404Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8LTxuXjb4zRyA9mge1jkX6wA0dWb15U6LqW9P3NG5JM","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824469959,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:29.959914705Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1914,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":13.854812,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:29.969608247Z","message":"Request completed"} +{"level":"debug","transaction_id":"583","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:29.987247112Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"583","time":"2026-03-06T19:14:29.987461947Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","action":"initial backfill","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:30.001150954Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","action":"initial backfill","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","limit":100,"before_id":"1438885351631491242","time":"2026-03-06T19:14:30.001226453Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1804,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1095_907_0_353_370_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":2392.68934,"status_code":200,"response_length":208,"response_mime":"application/json","time":"2026-03-06T19:14:30.004300978Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:30.004605","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:30.004627211Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:30.004605","time":"2026-03-06T19:14:30.004752997Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1913,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":95.121345,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:30.013949892Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1303677853136719872","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"1303677852759097445","time":"2026-03-06T19:14:30.014038382Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1303677853136719872","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":718.74136,"time":"2026-03-06T19:14:30.014135113Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1917,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.471511,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.020412114Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1912,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469915320650_35?ts=1753863254206&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":143.393571,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 2 day streak!** 🔥 Here are yesterday's results:\n👑 2/6: @Maja\n4/6: lagopodus\n6/6: @alexx\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 2 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 2/6: @Maja\u003cbr\u003e\n4/6: \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\u003cbr\u003e\n6/6: @alexx\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$vKJrpOnl1D_bj9BsFfI_PkttDUmclEtao95orA-Q7Uw"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:30.0590246Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1919,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":8.980873,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.068266753Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1918,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":51.928396,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.072675823Z","message":"Request completed"} +{"level":"debug","transaction_id":"584","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.080162351Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"584","time":"2026-03-06T19:14:30.080267464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$691WlbVgDWPbCYR4ElSv_-K6T1351VjITxY7Z3l2gIM","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470080,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:30.080494521Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1915,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824469969866105_46?ts=1772207635723&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":116.439289,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yapper yapper","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:30.086513385Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970616341926110","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":131.155396,"event_ids":{"":"$ueF7p2Eb_2QC8HQLZH7xSncZ_m-lqemnj7V8x5aHQ58"},"time":"2026-03-06T19:14:30.086628973Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1922,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":12.168193,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.09953023Z","message":"Request completed"} +{"level":"debug","transaction_id":"585","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.106634931Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"585","time":"2026-03-06T19:14:30.106714831Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ueF7p2Eb_2QC8HQLZH7xSncZ_m-lqemnj7V8x5aHQ58","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470106,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:30.106919398Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1903,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":410.415573,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1433893113969250476","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1433893113969250476","external_url":"https://discord.com/channels/@me/1433893113969250476"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"state_key":"fi.mau.discord://discord/dm/1433893113969250476","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1433893113969250476","external_url":"https://discord.com/channels/@me/1433893113969250476"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}}],"preset":"private_chat","room_version":"11"},"time":"2026-03-06T19:14:30.118831899Z","message":"Request completed"} +{"level":"info","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","time":"2026-03-06T19:14:30.119457056Z","message":"Matrix room created"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1921,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":65.608743,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:30.138444435Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1310023606151151768","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:30.138536417Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1310023606151151768","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":124.217549,"time":"2026-03-06T19:14:30.138629866Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"586","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.142153895Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"586","time":"2026-03-06T19:14:30.142424325Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1925,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.385466,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.145518056Z","message":"Request completed"} +{"level":"debug","transaction_id":"587","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.15999223Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"587","time":"2026-03-06T19:14:30.16016041Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1920,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470068548147_36?ts=1753863254206&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":120.525758,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"3 solved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":32793,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/iZMMODPGcCkshCVNhnperLio"},"time":"2026-03-06T19:14:30.189402164Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1400028703567904801","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":668.951393,"event_ids":{"":"$691WlbVgDWPbCYR4ElSv_-K6T1351VjITxY7Z3l2gIM","1400028703647469620":"$vEn7SDtRJhdVM4gg8vEV2bmFNntQsaIMRnIKBOCBYps"},"time":"2026-03-06T19:14:30.189572439Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1926,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":61.296963,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.20720439Z","message":"Request completed"} +{"level":"debug","transaction_id":"588","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.208934172Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"588","time":"2026-03-06T19:14:30.209067361Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vEn7SDtRJhdVM4gg8vEV2bmFNntQsaIMRnIKBOCBYps","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470209,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:30.209268856Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1923,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470099729211_47?ts=1772207641420&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":118.290598,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"was soll denn auf die website","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:30.218206008Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970640237006949","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":131.309468,"event_ids":{"":"$fZF-cjJP-kzsREUoLXe0ZKFoy_SVyo-quQHRR5DRBjk"},"time":"2026-03-06T19:14:30.218360708Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1928,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":13.177832,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.23232231Z","message":"Request completed"} +{"level":"debug","transaction_id":"589","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.238416812Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"589","time":"2026-03-06T19:14:30.238488331Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fZF-cjJP-kzsREUoLXe0ZKFoy_SVyo-quQHRR5DRBjk","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470238,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:30.238679978Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1924,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":136.172513,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:30.25588624Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1927,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":60.599798,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:30.267986127Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1330195769977995337","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:30.26807336Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1330195769977995337","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":129.328184,"time":"2026-03-06T19:14:30.268145996Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"590","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.272834854Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"590","time":"2026-03-06T19:14:30.272925439Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1931,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.539886,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.275173032Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1932,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":49.959614,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.325414669Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1929,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470232603355_70?ts=1772207685351&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":102.806017,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gib mir eine minute","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:30.335553386Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476970824496971816","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":116.857296,"event_ids":{"":"$paPVVRCP2L7Bw6tkjmPxlRlF4wxTKinh4x6O9iZTDc0"},"time":"2026-03-06T19:14:30.335642155Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"591","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.346467701Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"591","time":"2026-03-06T19:14:30.346514076Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$paPVVRCP2L7Bw6tkjmPxlRlF4wxTKinh4x6O9iZTDc0","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470346,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:30.34668058Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1933,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30.512743,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:30.356108094Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1342951084456411309","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:30.356173257Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1342951084456411309","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":87.909228,"time":"2026-03-06T19:14:30.356225219Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1934,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.407814,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.361970022Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","action":"initial backfill","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:30.363307221Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","action":"initial backfill","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:30.363391661Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","action":"initial backfill","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:30.363452633Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1936,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":4.470881,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.368322732Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1930,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":121.623958,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:30.377886507Z","message":"Request completed"} +{"level":"debug","transaction_id":"592","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.396620428Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"592","time":"2026-03-06T19:14:30.396893372Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1935,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":44.761955,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.406998844Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1938,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/join?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":63.549794,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.44230905Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1940,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":40.601243,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:30.447775532Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1468593107846172743","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:30.447890073Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1468593107846172743","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":91.607513,"time":"2026-03-06T19:14:30.447969553Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1942,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.437497,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.454008741Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1937,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470368493077_70?ts=1756489712426&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":96.00017,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bodenlos","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:30.464675116Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1411044867785887846","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":101.199016,"event_ids":{"":"$5UkxT3eoxczta4mT0YOs43kiZ2I3lbYHGFBDJ80aWfk"},"time":"2026-03-06T19:14:30.46479762Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1944,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":10.025433,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.475653058Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1939,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":82.818707,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24527 bytes>","time":"2026-03-06T19:14:30.479687843Z","message":"Request completed"} +{"level":"debug","transaction_id":"593","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.481403099Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"593","time":"2026-03-06T19:14:30.481483697Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5UkxT3eoxczta4mT0YOs43kiZ2I3lbYHGFBDJ80aWfk","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470481,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:30.481652924Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1946,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":4.494836,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.484735621Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1943,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":50.306381,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.504650155Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1948,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":38.773124,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:30.543560867Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1468597488670736603","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:30.543649777Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1468597488670736603","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":95.524615,"time":"2026-03-06T19:14:30.54373666Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1945,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470475866356_71?ts=1756489714991&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":80.29852,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dann viel erfolg","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:30.556359596Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1411044878544011394","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":91.191673,"event_ids":{"":"$f-JdbMWzVPwanKXY9aI3EC64S8ei1Qnbra4kv--knts"},"time":"2026-03-06T19:14:30.556489293Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1941,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":136.475699,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_122672447207112706:matrix.theocloud.dev"},"time":"2026-03-06T19:14:30.579012294Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1947,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470484949547_37?ts=1753869179083&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":101.228141,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$691WlbVgDWPbCYR4ElSv_-K6T1351VjITxY7Z3l2gIM"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:30.58646027Z","message":"Request completed"} +{"level":"debug","transaction_id":"594","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.589482064Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"594","time":"2026-03-06T19:14:30.589589272Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$f-JdbMWzVPwanKXY9aI3EC64S8ei1Qnbra4kv--knts","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470589,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:30.589781687Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1951,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":12.440507,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.599102342Z","message":"Request completed"} +{"level":"debug","transaction_id":"595","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.610313137Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"595","time":"2026-03-06T19:14:30.610676107Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HiojDPpVNMVTuEEbAYt1MzaIkBk2SF4XAH3hPS2HN00","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470610,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:30.61070614Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1949,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":57.618443,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.614795542Z","message":"Request completed"} +{"level":"debug","transaction_id":"596","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:30.632672429Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"596","time":"2026-03-06T19:14:30.632738709Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1952,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470599271011_38?ts=1753869179083&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":79.885473,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24527,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/jkIrfthWZurUjNeFBHItzaFY"},"time":"2026-03-06T19:14:30.679471053Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1400053554302947464","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":489.647741,"event_ids":{"":"$HiojDPpVNMVTuEEbAYt1MzaIkBk2SF4XAH3hPS2HN00","1400053775766650951":"$l3kv4wd0j2AVNEpcQ4UfNJ6mRiddj2AhM83H9UqTA5g"},"time":"2026-03-06T19:14:30.679663329Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"597","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.699513957Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"597","time":"2026-03-06T19:14:30.699612854Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$l3kv4wd0j2AVNEpcQ4UfNJ6mRiddj2AhM83H9UqTA5g","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470699,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:30.699830273Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1953,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470615003602_1?ts=1756489722058&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":93.615058,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"danke ❤️","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:30.708796618Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1411044908185292982","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":152.050935,"event_ids":{"":"$XAwgiDed8K1tkz10lGQEcD5RsQHVBJ9S_XCIp4WffmU"},"time":"2026-03-06T19:14:30.708930296Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1954,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.183625,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.718822121Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1950,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/join?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":148.11735,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.727461675Z","message":"Request completed"} +{"level":"debug","transaction_id":"598","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.73170012Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"598","time":"2026-03-06T19:14:30.731797411Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XAwgiDed8K1tkz10lGQEcD5RsQHVBJ9S_XCIp4WffmU","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470731,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:30.732006518Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"599","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.746940184Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"599","time":"2026-03-06T19:14:30.747200626Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1956,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":53.330968,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.781600089Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1955,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470719056931_72?ts=1757757426366&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":77.871433,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:30.797057641Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1416362045435154524","message_type":3,"author_id":"122672447207112706","action":"discord message create","handling_time":87.821855,"event_ids":{"":"$G8fAKC_ZCee--aQJvtVEpmTQAoS7vJ4KJLLvI-Unh7E"},"time":"2026-03-06T19:14:30.797131813Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1959,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.534232,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.807284639Z","message":"Request completed"} +{"level":"debug","transaction_id":"600","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.812651944Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"600","time":"2026-03-06T19:14:30.812763692Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$G8fAKC_ZCee--aQJvtVEpmTQAoS7vJ4KJLLvI-Unh7E","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470812,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:30.812964977Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1960,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824470807571132_73?ts=1757760156894&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":57.266787,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"12:55","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:30.865033337Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1416373498099662910","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":67.700797,"event_ids":{"":"$7oW6thBb6aKAY22tI82gtY5Z7LODF5WLfDPlAf7wTJk"},"time":"2026-03-06T19:14:30.865167434Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1958,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":100.933826,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_316966695430520833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:30.882700069Z","message":"Request completed"} +{"level":"debug","transaction_id":"601","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.887176258Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"601","time":"2026-03-06T19:14:30.887252665Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7oW6thBb6aKAY22tI82gtY5Z7LODF5WLfDPlAf7wTJk","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824470887,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:30.88745395Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"602","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.892459194Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"602","time":"2026-03-06T19:14:30.892666346Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1961,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":51.220685,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.934247197Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1957,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":210.035002,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<120752 bytes>","time":"2026-03-06T19:14:30.95112541Z","message":"Request completed"} +{"level":"debug","transaction_id":"603","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:30.95402051Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"603","time":"2026-03-06T19:14:30.954200982Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1964,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.515162,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:30.956995998Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1963,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/join?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":51.823843,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.986776655Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":1965,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":37.021411,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:30.994382823Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1962,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":74.911728,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24682 bytes>","time":"2026-03-06T19:14:31.001233438Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1969,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":9.38966,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.011283386Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1968,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":38.662982,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:31.03321217Z","message":"Request completed"} +{"level":"error","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1468618078957867230","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev.","part_index":0,"attachment_id":"1468618077456437308","time":"2026-03-06T19:14:31.033324686Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","message_id":"1468618078957867230","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":489.524399,"time":"2026-03-06T19:14:31.033466954Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","action":"initial backfill","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:31.033541127Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1967,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":103.557239,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_257943768903188481:matrix.theocloud.dev"},"time":"2026-03-06T19:14:31.090553269Z","message":"Request completed"} +{"level":"debug","transaction_id":"604","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.116319534Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"604","time":"2026-03-06T19:14:31.11660058Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1970,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471011526227_39?ts=1753948212804&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":106.35945,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 3 day streak!** 🔥 Here are yesterday's results:\n👑 5/6: Maja lagopodus\nX/6: @alexx\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 3 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 5/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\u003cbr\u003e\nX/6: @alexx\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev","@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$691WlbVgDWPbCYR4ElSv_-K6T1351VjITxY7Z3l2gIM"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:31.118153172Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1972,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":10.571879,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.128945822Z","message":"Request completed"} +{"level":"debug","transaction_id":"605","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.134761724Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"605","time":"2026-03-06T19:14:31.134882901Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6ciCar1tTmEQIplc4OfTPQoVWMNumrpHIug1r3-P1FE","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824471135,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:31.1350823Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1973,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471129220721_40?ts=1753948212804&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":74.33078,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 solved and 1 unsolved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24682,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/zUtVDQWpTGbyOxTJqYVAGjDG"},"time":"2026-03-06T19:14:31.20381809Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1400385045755334666","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":523.611179,"event_ids":{"":"$6ciCar1tTmEQIplc4OfTPQoVWMNumrpHIug1r3-P1FE","1400385045507739750":"$ACLk1iWjZmtl1LthsNwWUlNe89l-v1Ygp3JzqVFmDTA"},"time":"2026-03-06T19:14:31.203913005Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"606","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.236470659Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"606","time":"2026-03-06T19:14:31.23655887Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ACLk1iWjZmtl1LthsNwWUlNe89l-v1Ygp3JzqVFmDTA","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824471236,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:31.236727539Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1971,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/join?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":152.598218,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:31.243538343Z","message":"Request completed"} +{"level":"debug","transaction_id":"607","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.268662759Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"607","time":"2026-03-06T19:14:31.268858876Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1974,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":84.972222,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<115269 bytes>","time":"2026-03-06T19:14:31.294154125Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1976,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":7.887073,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.302513821Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1975,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824471244048122_14?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":89.107092,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:31.333269056Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","action":"initial backfill","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:31.333571543Z","message":"Fetching messages for backfill"} +{"level":"debug","transaction_id":"608","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.348394858Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"608","event_id":"$sMY_h8JNO8S2xSXuYAbs_PZDG6kqRbvzzUbtNLDdYVU","time":"2026-03-06T19:14:31.348474059Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"608","time":"2026-03-06T19:14:31.348506047Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1977,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471302755405_74?ts=1757765460907&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":71.194306,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"CFCD074C-E33A-4F73-9F29-3E99AD53EC1F.png","info":{"h":207,"mimetype":"image/webp","size":115269,"w":377},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/QcncaFsYICNFdmVQCCHtfHLX"},"time":"2026-03-06T19:14:31.374149809Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1416395744742740050","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":508.61682,"event_ids":{"1416395744499335218":"$2P9kYqYOPg98vtJjw3LtelH69-ZXKMpLW1CJC1ylKrI"},"time":"2026-03-06T19:14:31.374248007Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"609","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.387129638Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"609","time":"2026-03-06T19:14:31.387253608Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2P9kYqYOPg98vtJjw3LtelH69-ZXKMpLW1CJC1ylKrI","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824471387,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:31.387444417Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1966,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":411.34175,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<4007597 bytes>","time":"2026-03-06T19:14:31.391048485Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1978,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":61.097493,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:31.39476507Z","message":"Request completed"} +{"level":"info","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:31.395273521Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"257943768903188481","time":"2026-03-06T19:14:31.395312912Z","message":"Found other user ID"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1979,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":3.916613,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.395305858Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"","old_avatar_id":"","new_avatar_id":"e91f2f757a045f1edb080fae87453016","time":"2026-03-06T19:14:31.395371719Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"","old_name":"","new_name":"Max","time":"2026-03-06T19:14:31.395394628Z","message":"Updating portal name"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:31.395413066Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1980,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471395448406_71?ts=1772207932664&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":41.85582,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"KFWkrT2.png","info":{"h":1000,"mimetype":"image/png","size":4007597,"w":1000},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/rEikBBDUGUqMGfKAKaFtPJJY"},"time":"2026-03-06T19:14:31.437506349Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476971861803008186","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":1101.749443,"event_ids":{"1476971861547024466":"$ZxLDRS-9pb80CZ23ivzZApIIlX5qIHKzGmwliVDEU94"},"time":"2026-03-06T19:14:31.437652739Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1982,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":10.445883,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.448872614Z","message":"Request completed"} +{"level":"debug","transaction_id":"610","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.458961952Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"610","time":"2026-03-06T19:14:31.459059242Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ZxLDRS-9pb80CZ23ivzZApIIlX5qIHKzGmwliVDEU94","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824471459,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:31.459225327Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"611","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.464412649Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"611","time":"2026-03-06T19:14:31.464477323Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":1983,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471449115315_72?ts=1772207938776&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":49.436496,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Das ist meine Vision","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:31.4987158Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476971887438467113","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":60.729216,"event_ids":{"":"$hDJBgKABGrrRv4qPNWKrcWrnJ1FbMoAv2JEyCb072iM"},"time":"2026-03-06T19:14:31.498814837Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"612","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.520883584Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"612","time":"2026-03-06T19:14:31.520986322Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hDJBgKABGrrRv4qPNWKrcWrnJ1FbMoAv2JEyCb072iM","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824471521,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:31.521194452Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":1984,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_285422022190825472:matrix.theocloud.dev?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":52.432378,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.551925103Z","message":"Request completed"} +{"level":"debug","transaction_id":"613","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.564922672Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"613","time":"2026-03-06T19:14:31.565213984Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"614","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:31.578404737Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"614","time":"2026-03-06T19:14:31.578508383Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":1985,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471552162357_1?ts=1772208031351&user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":74.875829,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Sehr starker erster Entwurf","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:31.627220335Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476972275726024787","message_type":0,"author_id":"285422022190825472","action":"discord message create","handling_time":128.192201,"event_ids":{"":"$QhrO4FeXo3XkqgseDhkD0IDhX62x8BR4gHaPNBHEPkU"},"time":"2026-03-06T19:14:31.627375245Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1986,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":9.979338,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.63817006Z","message":"Request completed"} +{"level":"debug","transaction_id":"615","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.644654003Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"615","time":"2026-03-06T19:14:31.644715534Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QhrO4FeXo3XkqgseDhkD0IDhX62x8BR4gHaPNBHEPkU","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824471644,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:31.644892095Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","action":"initial backfill","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:31.654643817Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","action":"initial backfill","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","limit":100,"before_id":"1448696666558562455","time":"2026-03-06T19:14:31.654729234Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1981,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":272.006641,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Max","initial_state":[{"state_key":"fi.mau.discord://discord/dm/994921378350387220","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_257943768903188481:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"994921378350387220","displayname":"Max","external_url":"https://discord.com/channels/@me/994921378350387220"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/994921378350387220","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_257943768903188481:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"994921378350387220","displayname":"Max","external_url":"https://discord.com/channels/@me/994921378350387220"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:31.66777234Z","message":"Request completed"} +{"level":"info","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","time":"2026-03-06T19:14:31.668473556Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"616","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.686928876Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"616","time":"2026-03-06T19:14:31.687207128Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"617","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.700096371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"617","time":"2026-03-06T19:14:31.700228303Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1987,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471638417232_48?ts=1772208065005&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":95.646978,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"mittwoch in funktionale","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:31.734228339Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476972416881135626","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":106.529235,"event_ids":{"":"$CjWZ5YhETylI4C_wq0IWSrQRXbPeIBRb4DqzFaMaXzw"},"time":"2026-03-06T19:14:31.734355592Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1990,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":10.641301,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.74573757Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1988,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":93.41538,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24581 bytes>","time":"2026-03-06T19:14:31.753291496Z","message":"Request completed"} +{"level":"debug","transaction_id":"618","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.755005704Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"618","time":"2026-03-06T19:14:31.755075476Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$CjWZ5YhETylI4C_wq0IWSrQRXbPeIBRb4DqzFaMaXzw","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824471755,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:31.75525546Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1992,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":7.651845,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.761587775Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1989,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":146.714011,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:31.815449265Z","message":"Request completed"} +{"level":"debug","transaction_id":"619","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.837795496Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"619","time":"2026-03-06T19:14:31.837891878Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":1991,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471745904563_49?ts=1772208070879&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":140.247109,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"in den 1,5h pause","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:31.886305325Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1476972441518735451","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":151.61477,"event_ids":{"":"$2uLXXTHEAMHCyfWjRQJNymMo0dOt0gPPCgbeaCPWCBU"},"time":"2026-03-06T19:14:31.886437536Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1993,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471761767270_41?ts=1753949872116&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":164.085519,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$6ciCar1tTmEQIplc4OfTPQoVWMNumrpHIug1r3-P1FE"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:31.926135371Z","message":"Request completed"} +{"level":"debug","transaction_id":"620","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.928839801Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"620","time":"2026-03-06T19:14:31.928936254Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2uLXXTHEAMHCyfWjRQJNymMo0dOt0gPPCgbeaCPWCBU","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824471929,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:31.929173228Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","action":"initial backfill","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:31.939405743Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","action":"initial backfill","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:31.93948718Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","action":"initial backfill","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:31.939575879Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1996,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":22.502049,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.948904566Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1994,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":185.021984,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<156552 bytes>","time":"2026-03-06T19:14:31.954757415Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":1997,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":20.427386,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.960645743Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":1999,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":10.43373,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:31.965611456Z","message":"Request completed"} +{"level":"debug","transaction_id":"621","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.967992936Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"621","time":"2026-03-06T19:14:31.968132062Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5t7zgrsgWGciLVpvpNsmXyOP5bCcbnXHrMWVVi1jQU0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824471968,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:31.968313512Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"622","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:31.980021864Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"622","time":"2026-03-06T19:14:31.980241657Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":1995,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":219.014687,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:32.034928752Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":1998,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471949107667_42?ts=1753949872116&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":117.728856,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24581,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/RHfCZjidtfLHSdytDDBqzrEt"},"time":"2026-03-06T19:14:32.067083276Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1400392005414158452","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":862.914648,"event_ids":{"":"$5t7zgrsgWGciLVpvpNsmXyOP5bCcbnXHrMWVVi1jQU0","1400392330724380733":"$BQHf5n6bGn0IKvp6kpjdMWXWXKUMdiyaAi4K94c6RGw"},"time":"2026-03-06T19:14:32.06720976Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"623","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.069117431Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"623","time":"2026-03-06T19:14:32.069218633Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BQHf5n6bGn0IKvp6kpjdMWXWXKUMdiyaAi4K94c6RGw","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472069,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:32.069445271Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2000,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471960870007_75?ts=1763588768892&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":133.611608,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/2132850/Rabbit_and_Steel/\n\u003e [**Rabbit and Steel**](https://store.steampowered.com/app/2132850/Rabbit_and_Steel/)\n\u003e \n\u003e \n\u003e \n\u003e RABBIT \u0026 STEEL is a co-op action \"raiding\" roguelike focused around fighting challenging bosses alongside your rabbit-eared friends. Fight foes, gather loot, build your character, and work together to overcome obstacles on your way to the Moonlit Pinnacle.\n\u003e \n\u003e Combat is deliberately similar to tab-target MMORPGs, being based around global coold…\n\u003e \n\u003e \n\u003e \n\u003e PriceRecommendations$14.998185","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/2132850/Rabbit_and_Steel/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/2132850/Rabbit_and_Steel/\"\u003e\u003cstrong\u003eRabbit and Steel\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003e\u003cp\u003eRABBIT \u0026amp; STEEL is a co-op action \u0026quot;raiding\u0026quot; roguelike focused around fighting challenging bosses alongside your rabbit-eared friends. Fight foes, gather loot, build your character, and work together to overcome obstacles on your way to the Moonlit Pinnacle.\u003c/p\u003e\n\u003cp\u003eCombat is deliberately similar to tab-target MMORPGs, being based around global coold…\u003c/p\u003e\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$14.99\u003c/td\u003e\u003ctd\u003e8185\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:32.09478473Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1440820468717322310","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":155.171625,"event_ids":{"":"$RtnarV4dV9DeXx9npJdVZbijqz4rUZAFLFGoHfdm4YA"},"time":"2026-03-06T19:14:32.094959475Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"624","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.104721952Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"624","time":"2026-03-06T19:14:32.104987143Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2003,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":11.056933,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.106868274Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2001,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824471965813230_75?ts=1757765514687&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":158.476979,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"B5F2E31E-F04F-4D88-8A93-9D27BCBF4B7D.png","info":{"h":609,"mimetype":"image/webp","size":156552,"w":1160},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/qYOZpXtNjlscaVkBgRrfCBfW"},"time":"2026-03-06T19:14:32.124477246Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1416395970312278038","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":749.895603,"event_ids":{"1416395970027196518":"$tSkS94XqVzAZ0Z9isk8wu5nn5flsP5L9VmbVKZUQ3uo"},"time":"2026-03-06T19:14:32.124562174Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"625","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.12714494Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"625","time":"2026-03-06T19:14:32.127265488Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$RtnarV4dV9DeXx9npJdVZbijqz4rUZAFLFGoHfdm4YA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472127,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:32.127489262Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2005,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":12.648358,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.137883741Z","message":"Request completed"} +{"level":"debug","transaction_id":"626","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.154649369Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"626","time":"2026-03-06T19:14:32.154764888Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tSkS94XqVzAZ0Z9isk8wu5nn5flsP5L9VmbVKZUQ3uo","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472154,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:32.154929436Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2002,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824472035662374_2?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":158.15731,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:32.193934785Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","action":"initial backfill","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:32.194478227Z","message":"Fetching messages for backfill"} +{"level":"debug","transaction_id":"627","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.21457938Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"627","event_id":"$wMoLumZGJ-2mFdw9ACQ2Lm8SM89SJ2Nk7dPApo_u2h0","time":"2026-03-06T19:14:32.214660466Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"627","time":"2026-03-06T19:14:32.214699858Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2004,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472107079197_76?ts=1763588819862&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":117.712233,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/493520/GTFO/\n\u003e [**GTFO**](https://store.steampowered.com/app/493520/GTFO/)\n\u003e \n\u003e Your team of prisoners is dropped into the Rundown when a new Work Order is issued by The Warden, the mysterious entity holding you captive. The Rundown is a series of expeditions, each one taking you deeper into a decayed research facility called The Complex. You descend level by level, scavenging tools and resources that help you survive in a…\n\u003e \n\u003e PriceRecommendationsMetacritic$39.994391678","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/493520/GTFO/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/493520/GTFO/\"\u003e\u003cstrong\u003eGTFO\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003eYour team of prisoners is dropped into the Rundown when a new Work Order is issued by The Warden, the mysterious entity holding you captive. The Rundown is a series of expeditions, each one taking you deeper into a decayed research facility called The Complex. You descend level by level, scavenging tools and resources that help you survive in a…\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003cth\u003eMetacritic\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$39.99\u003c/td\u003e\u003ctd\u003e43916\u003c/td\u003e\u003ctd\u003e78\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:32.225058857Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1440820682500997150","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":129.797803,"event_ids":{"":"$3_eKUqasqTN4v_qikNZJgE3eb5vJdRpZd4snSAcAW4s"},"time":"2026-03-06T19:14:32.225153284Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2008,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.000225,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.240766165Z","message":"Request completed"} +{"level":"debug","transaction_id":"628","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.254407121Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"628","time":"2026-03-06T19:14:32.254586336Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3_eKUqasqTN4v_qikNZJgE3eb5vJdRpZd4snSAcAW4s","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472254,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:32.254804244Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2006,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472138043680_76?ts=1757767865344&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":141.518935,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://www.galaxus.de/de/s14/product/philips-wake-up-light-wecker-13597021?supplier=2705624\u0026campaignid=21728833608\u0026adtype=pla\u0026adgroupid=\u0026adid=\u0026dgCidg=Cj0KCQjwrJTGBhCbARIsANFBfgv6jWJlYUjlXPh2jwPSgZJAYHA3upA9MtV49asOy1zz653G3RA8U_MaAqxqEALw_wcB\u0026gad_campaignid=21735142478","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://www.galaxus.de/de/s14/product/philips-wake-up-light-wecker-13597021?supplier=2705624\u0026amp;campaignid=21728833608\u0026amp;adtype=pla\u0026amp;adgroupid=\u0026amp;adid=\u0026amp;dgCidg=Cj0KCQjwrJTGBhCbARIsANFBfgv6jWJlYUjlXPh2jwPSgZJAYHA3upA9MtV49asOy1zz653G3RA8U_MaAqxqEALw_wcB\u0026amp;gad_campaignid=21735142478","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:32.279749094Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1416405829682331802","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":154.932974,"event_ids":{"":"$9RmujZ1eguTmkQ2l1EkTSZzAPNQxlL9U8IUE0Z1Ssmc"},"time":"2026-03-06T19:14:32.27986636Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2010,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":22.960633,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.3035141Z","message":"Request completed"} +{"level":"debug","transaction_id":"629","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:32.318967043Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"629","time":"2026-03-06T19:14:32.31914535Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2007,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":150.908595,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:32.345460575Z","message":"Request completed"} +{"level":"info","channel_id":"1406965111868100628","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:32.345965116Z","message":"Creating Matrix room for channel"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"","old_name":"","new_name":"MiauWuff United","time":"2026-03-06T19:14:32.346020361Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:32.346054723Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","transaction_id":"630","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.346401001Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"630","time":"2026-03-06T19:14:32.346478177Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2011,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":75.289435,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:32.379220424Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2009,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472240991127_77?ts=1763589688353&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":161.899388,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/784150/Workers__Resources_Soviet_Republic/\n\u003e [**Workers \u0026 Resources: Soviet Republic**](https://store.steampowered.com/app/784150/Workers__Resources_Soviet_Republic/)\n\u003e \n\u003e Manage all aspects of your republic in this soviet-themed city builder game. A planned economy puts you in control of everything from mining resources to manufacturing goods and providing services – use this power to make decisions that impact your citizens’ day-to-day lives and their ultimate loyalty to the nation. Whether it’s constru…\n\u003e \n\u003e PriceRecommendationsMetacritic$39.992161681","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/784150/Workers__Resources_Soviet_Republic/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/784150/Workers__Resources_Soviet_Republic/\"\u003e\u003cstrong\u003eWorkers \u0026amp; Resources: Soviet Republic\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003eManage all aspects of your republic in this soviet-themed city builder game. A planned economy puts you in control of everything from mining resources to manufacturing goods and providing services – use this power to make decisions that impact your citizens’ day-to-day lives and their ultimate loyalty to the nation. Whether it’s constru…\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003cth\u003eMetacritic\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$39.99\u003c/td\u003e\u003ctd\u003e21616\u003c/td\u003e\u003ctd\u003e81\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:32.403259421Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1440824325216403597","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":178.027145,"event_ids":{"":"$5NIDTl5WJdm-gg5Jb14-Ye3ytp5R-hGnCtS_9DzwWVI"},"time":"2026-03-06T19:14:32.403454909Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2015,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":11.772048,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.416196995Z","message":"Request completed"} +{"level":"debug","transaction_id":"631","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.418440258Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"631","time":"2026-03-06T19:14:32.418546278Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$2P9kYqYOPg98vtJjw3LtelH69-ZXKMpLW1CJC1ylKrI","action":"matrix read receipt","discord_thread_id":"","message_id":"1416395744742740050","time":"2026-03-06T19:14:32.457952661Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$9RmujZ1eguTmkQ2l1EkTSZzAPNQxlL9U8IUE0Z1Ssmc","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472458,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:32.458129432Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$5NIDTl5WJdm-gg5Jb14-Ye3ytp5R-hGnCtS_9DzwWVI","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472458,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:32.458180207Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2013,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":88.19572,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22728 bytes>","time":"2026-03-06T19:14:32.458915925Z","message":"Request completed"} +{"level":"debug","transaction_id":"632","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.464377937Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"632","time":"2026-03-06T19:14:32.464464122Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2017,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":8.069082,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.467612191Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","action":"initial backfill","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:32.475034115Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","action":"initial backfill","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","limit":100,"before_id":"1439345834448654517","time":"2026-03-06T19:14:32.475104097Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2014,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":130.647294,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:32.51003045Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2016,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472416382426_77?ts=1763639885971&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":95.989066,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/2747770/Wednesdays/\n\u003e [**Wednesdays**](https://store.steampowered.com/app/2747770/Wednesdays/)\n\u003e \n\u003e \n\u003e \n\u003e Like so many children, Tim was a victim of sexual abuse.\n\u003e \n\u003e Twenty years later, while playing Orco Park, a videogame from his childhood, his memories will come rushing back along with a flood of questions : How could this have happened? Who knew? How has it shaped him? What does “normal” even mean?…\n\u003e \n\u003e \n\u003e \n\u003e PriceRecommendationsMetacritic$9.9915989","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/2747770/Wednesdays/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/2747770/Wednesdays/\"\u003e\u003cstrong\u003eWednesdays\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003e\u003cp\u003eLike so many children, Tim was a victim of sexual abuse.\u003c/p\u003e\n\u003cp\u003eTwenty years later, while playing Orco Park, a videogame from his childhood, his memories will come rushing back along with a flood of questions : How could this have happened? Who knew? How has it shaped him? What does “normal” even mean?…\u003c/p\u003e\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003cth\u003eMetacritic\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$9.99\u003c/td\u003e\u003ctd\u003e159\u003c/td\u003e\u003ctd\u003e89\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:32.512618314Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441034869286244472","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":108.943053,"event_ids":{"":"$gB_Ac0FEksyqIDPOe0ATfHJoUPsVhtY2BIX0vXR1SXg"},"time":"2026-03-06T19:14:32.512813453Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2020,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":10.816885,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.524392597Z","message":"Request completed"} +{"level":"debug","transaction_id":"633","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.532168481Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"633","time":"2026-03-06T19:14:32.532291054Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gB_Ac0FEksyqIDPOe0ATfHJoUPsVhtY2BIX0vXR1SXg","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472532,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:32.532493248Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"634","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.546675131Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"634","time":"2026-03-06T19:14:32.546929427Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2018,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472467834988_43?ts=1753954170414&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":138.586889,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$5t7zgrsgWGciLVpvpNsmXyOP5bCcbnXHrMWVVi1jQU0"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:32.606691747Z","message":"Request completed"} +{"level":"debug","transaction_id":"635","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.62041372Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"635","time":"2026-03-06T19:14:32.620521626Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Lt0LO3xzjCeA-W1AFbbuAwu9bkrwjaf3S_oTmEAuzOc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472620,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:32.620737578Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2023,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":14.574187,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.621533151Z","message":"Request completed"} +{"level":"debug","transaction_id":"636","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.644584299Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"636","time":"2026-03-06T19:14:32.644891605Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":1916,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1155_908_0_353_370_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":2656.990211,"status_code":200,"response_length":208,"response_mime":"application/json","time":"2026-03-06T19:14:32.661902379Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:32.662229","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:32.662256828Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:32.662229","time":"2026-03-06T19:14:32.662450012Z","message":"Finished handling device list changes"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2021,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472524557494_78?ts=1763639894413&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":148.16177,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ist grad free auf steam","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:32.672864117Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441034904694685837","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":159.709135,"event_ids":{"":"$K3rCB1F_m4xDev6MZFVjP0li-zwCCK3aDETm1HQSlZM"},"time":"2026-03-06T19:14:32.672960918Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2026,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":7.752418,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.681422304Z","message":"Request completed"} +{"level":"debug","transaction_id":"637","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.692992577Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"637","time":"2026-03-06T19:14:32.69309329Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$K3rCB1F_m4xDev6MZFVjP0li-zwCCK3aDETm1HQSlZM","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472693,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:32.693309731Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2019,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":233.136017,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:32.743531951Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2022,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":218.943657,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<181288 bytes>","time":"2026-03-06T19:14:32.790901676Z","message":"Request completed"} +{"level":"debug","transaction_id":"638","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.793826808Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"638","time":"2026-03-06T19:14:32.794104501Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2024,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472621717045_44?ts=1753954170414&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":178.711878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22728,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/GjCZebgAMsVpOlueRoMiQlAr"},"time":"2026-03-06T19:14:32.800636914Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1400410033782526025","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":733.112235,"event_ids":{"":"$Lt0LO3xzjCeA-W1AFbbuAwu9bkrwjaf3S_oTmEAuzOc","1400411124498694174":"$YdHHlCqWx6PFJeA_C5bF0eeouU0623VETzyxczuXiC0"},"time":"2026-03-06T19:14:32.800785538Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2029,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":10.706674,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.802001631Z","message":"Request completed"} +{"level":"debug","transaction_id":"639","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:32.817055775Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"639","time":"2026-03-06T19:14:32.817157255Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","action":"initial backfill","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:32.823872586Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","action":"initial backfill","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:32.823955139Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","action":"initial backfill","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:32.824016461Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2031,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.867597,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.841446078Z","message":"Request completed"} +{"level":"debug","transaction_id":"640","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.84860798Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"640","time":"2026-03-06T19:14:32.848699054Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2012,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":517.771878,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"MiauWuff United","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1406965111868100628","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1406965111868100628","displayname":"MiauWuff United","external_url":"https://discord.com/channels/@me/1406965111868100628"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"state_key":"fi.mau.discord://discord/dm/1406965111868100628","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1406965111868100628","displayname":"MiauWuff United","external_url":"https://discord.com/channels/@me/1406965111868100628"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}}],"preset":"private_chat","room_version":"11"},"time":"2026-03-06T19:14:32.86421248Z","message":"Request completed"} +{"level":"info","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","time":"2026-03-06T19:14:32.864643616Z","message":"Matrix room created"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2027,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472681605850_78?ts=1763640757350&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":195.955296,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Tim was a victim of sexual abuse.","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:32.877724088Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441038524114796544","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":204.535135,"event_ids":{"":"$a8xQBNLLdjgIl0BPALcePXkt0qKLK7qUwBlZr5kissw"},"time":"2026-03-06T19:14:32.877859372Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2034,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":12.361097,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:32.890952905Z","message":"Request completed"} +{"level":"debug","transaction_id":"641","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.898151753Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"641","time":"2026-03-06T19:14:32.89845864Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"642","content":{"pdu":7,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:32.925610086Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"642","time":"2026-03-06T19:14:32.925779104Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$9RmujZ1eguTmkQ2l1EkTSZzAPNQxlL9U8IUE0Z1Ssmc","action":"matrix read receipt","discord_thread_id":"","message_id":"1416405829682331802","time":"2026-03-06T19:14:32.959559975Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$YdHHlCqWx6PFJeA_C5bF0eeouU0623VETzyxczuXiC0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472959,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:32.959806727Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$a8xQBNLLdjgIl0BPALcePXkt0qKLK7qUwBlZr5kissw","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824472959,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:32.959819019Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2032,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":137.047636,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:32.97884551Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2030,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824472802164783_73?ts=1772524325166&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":185.47952,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Good Morning","url":"mxc://matrix.theocloud.dev/VdLgVVTKbpkeKnPyyeYMwBDT","info":{"mimetype":"image/png","w":158,"h":160,"size":181288},"m.mentions":{}},"time":"2026-03-06T19:14:32.987779029Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1478298908139720896","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":1101.083495,"event_ids":{"1273903436076683295":"$plStj81zKNUzTtfIU9v57-C-4FFgWU5ecBWg3Vhxdus"},"time":"2026-03-06T19:14:32.987912079Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2037,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":15.028442,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.003578319Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2028,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472743876343_54?ts=1762603491246&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":273.896222,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:33.017919932Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436687914745593918","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":737.84705,"event_ids":{"":"$hjz0c-_JVNnaOjsP4Ec-ghIbXJWw-U65KzWJxzJE0hk"},"time":"2026-03-06T19:14:33.018051934Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"643","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.021556268Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"643","time":"2026-03-06T19:14:33.021656003Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$plStj81zKNUzTtfIU9v57-C-4FFgWU5ecBWg3Vhxdus","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473021,"status":"SUCCESS","event_type":"m.sticker","reported_by":"BRIDGE","retry_num":0},"time":"2026-03-06T19:14:33.021873002Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"644","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.042262743Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"644","time":"2026-03-06T19:14:33.042367087Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hjz0c-_JVNnaOjsP4Ec-ghIbXJWw-U65KzWJxzJE0hk","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473042,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:33.042583109Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2036,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":92.764589,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:33.071844908Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350215908471083019","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:33.071982986Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350215908471083019","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":247.851845,"time":"2026-03-06T19:14:33.072070289Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2040,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.35146,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.086073866Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2033,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":231.42593,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:33.096265104Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2035,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824472891121434_79?ts=1763640780359&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":211.193474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"WAS","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.102439227Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441038620621406258","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":224.274295,"event_ids":{"":"$GItilkFKgZNiLMl1oivhDxIluPB80x-NYGLWbytROB0"},"time":"2026-03-06T19:14:33.102501177Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2043,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.491982,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.116545193Z","message":"Request completed"} +{"level":"debug","transaction_id":"645","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.124296353Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"645","time":"2026-03-06T19:14:33.124409986Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"646","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.142788969Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"646","time":"2026-03-06T19:14:33.142898691Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$GItilkFKgZNiLMl1oivhDxIluPB80x-NYGLWbytROB0","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473143,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.143136225Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2039,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":115.109423,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32733 bytes>","time":"2026-03-06T19:14:33.151518549Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2045,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":4.541072,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.156705732Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2041,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":82.485908,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:33.168915201Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2038,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473003775205_80?ts=1772703714077&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":174.742115,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://drive.google.com/file/d/16UGdDLAQv5kZvBNbunrIBr0vUzTZ4G51/view?usp=sharing","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.178688713Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1479051319766421514","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":190.537634,"event_ids":{"":"$XGkjz2xJALV0qzGmPZlNin3GipYGy05hZtF7AstQonM"},"time":"2026-03-06T19:14:33.178794035Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"647","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.202269755Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"647","time":"2026-03-06T19:14:33.202346791Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XGkjz2xJALV0qzGmPZlNin3GipYGy05hZtF7AstQonM","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473202,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.202500094Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2047,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":81.122309,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:33.250248363Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350215934681419826","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:33.250392029Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350215934681419826","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":178.103343,"time":"2026-03-06T19:14:33.250449928Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2044,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473116723011_81?ts=1763640781578&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":144.918157,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"NEIN","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.261809627Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441038625734131712","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":159.07846,"event_ids":{"":"$kWhw0ltjybDQsXpJ-9JYc0PrduY8dGc29A6NvqTc7y0"},"time":"2026-03-06T19:14:33.261887431Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2050,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":12.151919,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.263035079Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2051,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":11.970889,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.274443248Z","message":"Request completed"} +{"level":"debug","transaction_id":"648","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.284418814Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"648","time":"2026-03-06T19:14:33.284492358Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kWhw0ltjybDQsXpJ-9JYc0PrduY8dGc29A6NvqTc7y0","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473284,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.284672271Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2046,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473156898217_45?ts=1754035638956&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":166.791136,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja and 2 others were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja and 2 others were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$Lt0LO3xzjCeA-W1AFbbuAwu9bkrwjaf3S_oTmEAuzOc"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.323906074Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2054,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":21.462797,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.345609058Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2042,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":253.625142,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:33.350375511Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2048,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":188.543848,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55777 bytes>","time":"2026-03-06T19:14:33.358459749Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2056,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":17.551003,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_657236326822838283","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:33.368455778Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2049,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":155.246007,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<74907 bytes>","time":"2026-03-06T19:14:33.370476524Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.348249,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.374222162Z","message":"Request completed"} +{"level":"debug","transaction_id":"649","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.3761577Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"649","time":"2026-03-06T19:14:33.376279365Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$zpA76Ng7hRQaf_92ExFD0yt158GrE66JP84x_QsFipI","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473376,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.376476879Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2058,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_657236326822838283:matrix.theocloud.dev/displayname?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":11.458945,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:33.380424641Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2059,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":11.329318,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.382197237Z","message":"Request completed"} +{"level":"debug","transaction_id":"650","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.400252571Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"650","time":"2026-03-06T19:14:33.400486263Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"651","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:33.44174549Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"651","time":"2026-03-06T19:14:33.441906267Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_657236326822838283:matrix.theocloud.dev/displayname?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":71.171397,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"laura"},"time":"2026-03-06T19:14:33.451752415Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2052,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473263160376_3?ts=1742115104936&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":203.047635,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"machst du nie einen master oder vorerst nicht?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.466387366Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350753394092019732","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":215.924447,"event_ids":{"":"$hu_6BxOdnVpXl3GDZ8ho01IHfROHCYsev35VpIbTl0w"},"time":"2026-03-06T19:14:33.466552473Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2063,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.123497,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.482631621Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2053,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473274648864_82?ts=1763640789707&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":215.583966,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Böser spoiler du Hu","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.490434395Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441038659829891144","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":228.364047,"event_ids":{"":"$V8EYLfG6MafdtWd1mVbW2Up-FykrwQHWQXrsvTbBzmE"},"time":"2026-03-06T19:14:33.490568771Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"652","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.501773769Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"652","time":"2026-03-06T19:14:33.501842913Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2065,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":12.232587,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.503768184Z","message":"Request completed"} +{"level":"debug","transaction_id":"653","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.521001545Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"653","time":"2026-03-06T19:14:33.521096949Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2055,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473345916853_46?ts=1754035638956&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":199.95118,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"3 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":32733,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/XOciawqJcBqzzrZcIUcrgLPc"},"time":"2026-03-06T19:14:33.546131617Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1400751737614110782","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":744.959152,"event_ids":{"":"$zpA76Ng7hRQaf_92ExFD0yt158GrE66JP84x_QsFipI","1400756362937634816":"$54CYnSJxLUBwFRnUynHbzvjCyGUl030o2qFbV8ph154"},"time":"2026-03-06T19:14:33.546242806Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2062,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473382413119_83?ts=1772705100089&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":187.923021,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Beziehungsdiagramm.drawio.png","info":{"h":892,"mimetype":"image/webp","size":74907,"w":730},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/HNLGjZxewaGjWDYVRkZaNFmQ"},"time":"2026-03-06T19:14:33.570566829Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1479057133122224249","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":391.442649,"event_ids":{"1479057132879089668":"$mra3JK4-WM93OO3vlKoAEaRWeiwL4IO7hc-HDoYrVxE"},"time":"2026-03-06T19:14:33.570700018Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"654","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.579563975Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"654","time":"2026-03-06T19:14:33.57969011Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$hjz0c-_JVNnaOjsP4Ec-ghIbXJWw-U65KzWJxzJE0hk","action":"matrix read receipt","discord_thread_id":"","message_id":"1436687914745593918","time":"2026-03-06T19:14:33.582180684Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$hu_6BxOdnVpXl3GDZ8ho01IHfROHCYsev35VpIbTl0w","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473582,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.582405366Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$V8EYLfG6MafdtWd1mVbW2Up-FykrwQHWQXrsvTbBzmE","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473582,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.582426389Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$54CYnSJxLUBwFRnUynHbzvjCyGUl030o2qFbV8ph154","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473582,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:33.582452999Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2060,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473374513614_79?ts=1762607830719&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":211.188096,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://www.youtube.com/@neokCS","com.beeper.linkpreviews":[{"og:title":"neokCS","og:description":"Chill Dutch guy playing CS2 for a living.","og:image":"mxc://matrix.theocloud.dev/avfHsBdPSTmdgibqOmXARvhI","matrix:image:size":55777,"og:image:width":900,"og:image:height":900,"og:image:type":"image/jpeg","matched_url":"https://www.youtube.com/@neokCS"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.585868633Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436706115814424690","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":567.430681,"event_ids":{"":"$4YyiFSL68Og3tw7UhuoDDj4-tfKfGkD83uSyOK_gzzo"},"time":"2026-03-06T19:14:33.585964177Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":2067,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":18.144103,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.58986745Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2064,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":113.133796,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:33.59619327Z","message":"Request completed"} +{"level":"debug","transaction_id":"655","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.604430463Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"655","time":"2026-03-06T19:14:33.604526775Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mra3JK4-WM93OO3vlKoAEaRWeiwL4IO7hc-HDoYrVxE","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473604,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:33.604736302Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$4YyiFSL68Og3tw7UhuoDDj4-tfKfGkD83uSyOK_gzzo","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473604,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.604760607Z","message":"Sent message checkpoint"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:33.626467013Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2069,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":39.209079,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:33.635562357Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350753627450642463","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:33.635659368Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350753627450642463","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":168.695944,"time":"2026-03-06T19:14:33.63571189Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2066,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473504045597_80?ts=1763640810057&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":142.090943,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"steht doch da","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.64638057Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441038745183850506","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":155.404269,"event_ids":{"":"$OnMr2vewezi3VsRfuVgloFtWhs50-HShOycS_yeu4NI"},"time":"2026-03-06T19:14:33.646525143Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2071,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.825902,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.654145279Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2072,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":23.76333,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.671006171Z","message":"Request completed"} +{"level":"debug","transaction_id":"656","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.682232192Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"656","time":"2026-03-06T19:14:33.682309089Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$OnMr2vewezi3VsRfuVgloFtWhs50-HShOycS_yeu4NI","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473682,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.682468189Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":2068,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473590025573_50?ts=1772705417572&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":126.069485,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Das geben wir in IT Management ab","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.716247733Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1479058464742572185","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":145.104286,"event_ids":{"":"$5l-eH67FHojudtnjo08MN-GJZM3KmDojlAjKqLe6-Kc"},"time":"2026-03-06T19:14:33.716363811Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2076,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":32.023081,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.749080844Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2073,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":103.129106,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:33.757569329Z","message":"Request completed"} +{"level":"debug","transaction_id":"657","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.761502076Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"657","time":"2026-03-06T19:14:33.761598248Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5l-eH67FHojudtnjo08MN-GJZM3KmDojlAjKqLe6-Kc","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473761,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.76183201Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2070,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":194.583804,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<65683 bytes>","time":"2026-03-06T19:14:33.806272411Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2075,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":100.285829,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<10943 bytes>","time":"2026-03-06T19:14:33.815178972Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2080,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":13.139209,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.8197792Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2078,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":63.772241,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:33.821488309Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350753713496526899","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:33.821546488Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350753713496526899","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":185.704133,"time":"2026-03-06T19:14:33.821592235Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2074,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473671183501_81?ts=1763640826211&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":160.476841,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"geh mal Medizinbälle zählen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.831792762Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441038812938506412","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":184.908351,"event_ids":{"":"$N9m1y9Cs_O9qLoO7mENrT0jBES2I2btOv77cUd3fGtA"},"time":"2026-03-06T19:14:33.831865189Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2081,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_657236326822838283:matrix.theocloud.dev/avatar_url?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":16.497503,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:33.83219212Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2083,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.950497,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.835869383Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2085,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.303968,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.846634166Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2084,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_657236326822838283:matrix.theocloud.dev/avatar_url?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":18.131811,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pfTDzzsOxyZphfTbCdrFGIcZ"},"time":"2026-03-06T19:14:33.85043086Z","message":"Request completed"} +{"level":"debug","transaction_id":"658","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.855727415Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"658","time":"2026-03-06T19:14:33.855805359Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$N9m1y9Cs_O9qLoO7mENrT0jBES2I2btOv77cUd3fGtA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473855,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.85599079Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2079,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":98.621419,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24664 bytes>","time":"2026-03-06T19:14:33.873517209Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2089,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":6.534509,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.880522943Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2077,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473749364683_84?ts=1772705423725&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":141.692773,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bitte!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.891233039Z","message":"Request completed"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","message_id":"1479058490550124667","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":174.603479,"event_ids":{"":"$Vg9IB1_qIUYcVEcVq1DkuZmobr2ojigQl8K6tZVrWL0"},"time":"2026-03-06T19:14:33.891351212Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","action":"initial backfill","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:33.891606695Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2086,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":74.338812,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:33.910442446Z","message":"Request completed"} +{"level":"debug","transaction_id":"659","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:33.91372531Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"659","time":"2026-03-06T19:14:33.913835242Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Vg9IB1_qIUYcVEcVq1DkuZmobr2ojigQl8K6tZVrWL0","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824473913,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:33.91401348Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2088,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/join?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":99.211796,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:33.950026019Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2091,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":66.839992,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:33.977439304Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350753778529468468","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:33.977525559Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1350753778529468468","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":155.858174,"time":"2026-03-06T19:14:33.977579547Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2082,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473819889411_4?ts=1762608522759&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":166.650335,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://www.youtube.com/@penguinz0","com.beeper.linkpreviews":[{"og:title":"penguinz0","og:description":"Twitter: https://twitter.com/MoistCr1TiKaL\n\nInstagram: https://www.instagram.com/bigmoistcr1tikal/?hl=en\n\nTwitch: https://www.twitch.tv/moistcr1tikal\n\nTik Tok: Hugecharles\n\nI don't have any other public accounts.","og:image":"mxc://matrix.theocloud.dev/JWDdwYkTuYFdqzoMViEWDfzC","matrix:image:size":65683,"og:image:width":900,"og:image:height":900,"og:image:type":"image/jpeg","matched_url":"https://www.youtube.com/@penguinz0"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:33.986676986Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436709018440700095","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":400.560902,"event_ids":{"":"$-LahzPe_LP784UW5gY6y1T7wL3nSZXSDcqDh1uA7WT4"},"time":"2026-03-06T19:14:33.98675067Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2087,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473846869325_85?ts=1763660431338&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":144.471795,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:33.99144728Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441121042801365042","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":159.394286,"event_ids":{"":"$kFwcZE6wIS9Oq0IEf_5Yr7kOX838loJ7MKxOXCk03ek"},"time":"2026-03-06T19:14:33.991515656Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2093,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":16.871368,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:33.995038428Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2094,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":17.390366,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.004632096Z","message":"Request completed"} +{"level":"debug","transaction_id":"660","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.022192598Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"660","time":"2026-03-06T19:14:34.022323203Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-LahzPe_LP784UW5gY6y1T7wL3nSZXSDcqDh1uA7WT4","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474022,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.022539225Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"661","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.065456786Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"661","time":"2026-03-06T19:14:34.065573213Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kFwcZE6wIS9Oq0IEf_5Yr7kOX838loJ7MKxOXCk03ek","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474065,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:34.065801946Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2090,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473880731003_47?ts=1754036337386&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":191.60622,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 4 day streak!** 🔥 Here are yesterday's results:\n👑 6/6: @lagopodus @Maja\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 4 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 6/6: @lagopodus @Maja\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$5t7zgrsgWGciLVpvpNsmXyOP5bCcbnXHrMWVVi1jQU0"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:34.072593195Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2097,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":13.812488,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.086647128Z","message":"Request completed"} +{"level":"debug","transaction_id":"662","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:34.09718199Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"662","time":"2026-03-06T19:14:34.097302049Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"663","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.107225932Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"663","time":"2026-03-06T19:14:34.107352206Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2095,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824473995203535_5?ts=1742376182361&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":142.78287,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das ist eig voll gut, dass ein Master keine voraussetzung für hohe positionen ist","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:34.138188179Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1351848432180006944","message_type":19,"author_id":"257943768903188481","action":"discord message create","handling_time":160.606258,"event_ids":{"":"$9IFJHjHD9POYDPI3mjSiAIJuE3fXKOIXn4Al53fsDBI"},"time":"2026-03-06T19:14:34.138375287Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2099,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":10.810949,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.150410081Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2096,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824474004872284_82?ts=1762609454064&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":171.795961,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"twitch.tv##+js(twitch-videoad)\ntwitch.tv##+js(vaft-ublock-origin)\ntwitch.tv##+js(no-fetch-if, edge.ads.twitch.tv)","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"twitch.tv##+js(twitch-videoad)\u003cbr\u003e\ntwitch.tv##+js(vaft-ublock-origin)\u003cbr\u003e\ntwitch.tv##+js(no-fetch-if, edge.ads.twitch.tv)","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:34.176876724Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436712924616982651","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":189.97701,"event_ids":{"":"$dZwIvLy0UoPSzspNJ-5ek0rKDLLxBGM06FgUnOw0RbQ"},"time":"2026-03-06T19:14:34.176990148Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"664","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.178398795Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"664","time":"2026-03-06T19:14:34.178526118Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2092,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":256.110967,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_657236326822838283:matrix.theocloud.dev"},"time":"2026-03-06T19:14:34.206372145Z","message":"Request completed"} +{"level":"debug","transaction_id":"665","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.218599913Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"665","time":"2026-03-06T19:14:34.218691965Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2098,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824474086923215_48?ts=1754036337386&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":148.074746,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 solved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24664,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/DXHXZfnwwXgXgTzCvCwmpLmR"},"time":"2026-03-06T19:14:34.235469465Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$4YyiFSL68Og3tw7UhuoDDj4-tfKfGkD83uSyOK_gzzo","action":"matrix read receipt","discord_thread_id":"","message_id":"1436706115814424690","time":"2026-03-06T19:14:34.235612432Z","message":"Marked message as read on Discord"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1400754667041849467","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":689.036269,"event_ids":{"":"$XlPCRoXwWQ4QoRHu4nt95fJH5oJzvGZ5v_9o9ZA0Zw4","1400754666844848128":"$qIKfMsPbepRB2YV5D2-ZHF8wKOPsKrogGdqJP9JyKj8"},"time":"2026-03-06T19:14:34.235622071Z","message":"Finished handling Discord message"} +{"level":"debug","message_checkpoint":{"event_id":"$XlPCRoXwWQ4QoRHu4nt95fJH5oJzvGZ5v_9o9ZA0Zw4","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474235,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.235848918Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$9IFJHjHD9POYDPI3mjSiAIJuE3fXKOIXn4Al53fsDBI","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474235,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.235868823Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$dZwIvLy0UoPSzspNJ-5ek0rKDLLxBGM06FgUnOw0RbQ","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474235,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.235878042Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"666","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.24851781Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"666","time":"2026-03-06T19:14:34.248728524Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"667","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.260829877Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"667","time":"2026-03-06T19:14:34.260972565Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qIKfMsPbepRB2YV5D2-ZHF8wKOPsKrogGdqJP9JyKj8","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474261,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:34.261172733Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2100,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824474150675272_6?ts=1742376216361&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":138.827216,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"im Finance leider genau anders herum...","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:34.289726052Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1351848574786211860","message_type":19,"author_id":"257943768903188481","action":"discord message create","handling_time":150.995758,"event_ids":{"":"$tgAIxKiAyAIj_L4f39KHUchMVkjf8wC8EGhqGe7fi90"},"time":"2026-03-06T19:14:34.289836892Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2102,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":5.493929,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.296205875Z","message":"Request completed"} +{"level":"debug","transaction_id":"668","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.300980918Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"668","time":"2026-03-06T19:14:34.301103002Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tgAIxKiAyAIj_L4f39KHUchMVkjf8wC8EGhqGe7fi90","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474301,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.301306662Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2101,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/join?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":128.51508,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.335326463Z","message":"Request completed"} +{"level":"debug","transaction_id":"669","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.356148248Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"669","time":"2026-03-06T19:14:34.356449687Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2103,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824474296441453_7?ts=1742376242935&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":76.188234,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wenns der arbeitgeber bezahlt, mitnehmen","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:34.372779498Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1351848686245646378","message_type":19,"author_id":"257943768903188481","action":"discord message create","handling_time":82.650666,"event_ids":{"":"$djWTLwjGXCa8L7I15msqLpgbFS01-r-TwugLkYUsDOA"},"time":"2026-03-06T19:14:34.372856185Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"670","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.376729077Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"670","time":"2026-03-06T19:14:34.376810792Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$djWTLwjGXCa8L7I15msqLpgbFS01-r-TwugLkYUsDOA","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474376,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.376995804Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2105,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.208065,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.37868843Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":2104,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/join?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":51.942505,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.387835248Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2106,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":45.153839,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.424048933Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2108,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":29.922925,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:34.454111054Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1351853256208551987","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:34.454163087Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1351853256208551987","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":81.057146,"time":"2026-03-06T19:14:34.454232161Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2109,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":3.230063,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.457845658Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2107,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":100.492283,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_1142482369744482355:matrix.theocloud.dev"},"time":"2026-03-06T19:14:34.488442421Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2110,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":41.40876,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.499561793Z","message":"Request completed"} +{"level":"debug","transaction_id":"671","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.505268602Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"671","time":"2026-03-06T19:14:34.505485881Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2112,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":24.94087,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:34.524644163Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1351853333853376512","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:34.524731745Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1351853333853376512","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":70.407393,"time":"2026-03-06T19:14:34.524812204Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":5.230764,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.530530536Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":2111,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/join?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":99.307758,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.588032622Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2113,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":83.784066,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32878 bytes>","time":"2026-03-06T19:14:34.596874438Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2117,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":10.838466,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.608206759Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824474530701719_8?ts=1742459073508&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":82.754731,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja, würde auch nicht direkt in den master springen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:34.613589779Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352196102849560648","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":88.650952,"event_ids":{"":"$DS04eMeIM89HVwWCZW_W0kBjSURl6i3wm2JyyMMRUD4"},"time":"2026-03-06T19:14:34.613670447Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"672","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.61762205Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"672","time":"2026-03-06T19:14:34.617688051Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$DS04eMeIM89HVwWCZW_W0kBjSURl6i3wm2JyyMMRUD4","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474617,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.617866428Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2119,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":7.107355,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.621386337Z","message":"Request completed"} +{"level":"debug","transaction_id":"673","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.64030108Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"673","time":"2026-03-06T19:14:34.640510886Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"674","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:34.656729299Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"674","time":"2026-03-06T19:14:34.65679956Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2116,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":82.445959,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.671289518Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824474608389397_49?ts=1754122395839&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":89.335406,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 5 day streak!** 🔥 Here are yesterday's results:\n👑 3/6: @alexx\n4/6: Maja\n6/6: lagopodus\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 5 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 3/6: @alexx\u003cbr\u003e\n4/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e\u003cbr\u003e\n6/6: \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev","@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$Lt0LO3xzjCeA-W1AFbbuAwu9bkrwjaf3S_oTmEAuzOc"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:34.698013251Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2120,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824474621557940_9?ts=1742459093641&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":89.350561,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"arbeiten und dann nomma gucken ob du den doch brauchst/ willst","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:34.711024439Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2122,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":12.829389,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.711066763Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352196187293483049","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":97.128751,"event_ids":{"":"$Rj67-XFs3K8Wfdw4939SuTtw_iMkZQBxKSt_DBpIhAw"},"time":"2026-03-06T19:14:34.711110973Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2124,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.45929,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.71927532Z","message":"Request completed"} +{"level":"debug","transaction_id":"675","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.721312339Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"675","time":"2026-03-06T19:14:34.721434772Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"676","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.731703536Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"676","time":"2026-03-06T19:14:34.731770514Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2125,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":28.668559,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.748260125Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2121,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":104.141679,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_316966695430520833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:34.775583034Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2123,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824474711283484_50?ts=1754122395839&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":65.783697,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"3 solved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":32878,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/dWbjPOrGLtxBNAUHPisCGKdC"},"time":"2026-03-06T19:14:34.777278733Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1401115622355767358","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":541.315204,"event_ids":{"":"$ne0Qpr0gsh84cThqskilHEN0ndZbuGGfiF5rT-x8sIM","1401115622095454239":"$d8lkEhrRkeJ6nfywhfYcWBXRUxC3Q7c1iSVmrBGfXO0"},"time":"2026-03-06T19:14:34.777418348Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"677","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.792534581Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"677","time":"2026-03-06T19:14:34.792631313Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2126,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.332013,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:34.798757384Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352204512617828443","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:34.79883449Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352204512617828443","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":87.392534,"time":"2026-03-06T19:14:34.798898815Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"678","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.801786861Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"678","time":"2026-03-06T19:14:34.801975854Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$dZwIvLy0UoPSzspNJ-5ek0rKDLLxBGM06FgUnOw0RbQ","action":"matrix read receipt","discord_thread_id":"","message_id":"1436712924616982651","time":"2026-03-06T19:14:34.805480048Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$ne0Qpr0gsh84cThqskilHEN0ndZbuGGfiF5rT-x8sIM","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474805,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.805701867Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$d8lkEhrRkeJ6nfywhfYcWBXRUxC3Q7c1iSVmrBGfXO0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474805,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:34.805744471Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$Rj67-XFs3K8Wfdw4939SuTtw_iMkZQBxKSt_DBpIhAw","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474805,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.805744471Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2128,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.467042,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.806768567Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2129,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.087813,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.827151254Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2130,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":24.723591,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:34.852054898Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352204601084088341","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:34.852145623Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352204601084088341","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":53.184508,"time":"2026-03-06T19:14:34.852233833Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2127,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":82.130691,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.858026059Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2131,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":7.752348,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.860549598Z","message":"Request completed"} +{"level":"debug","transaction_id":"679","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.874695653Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"679","time":"2026-03-06T19:14:34.87495812Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2133,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824474860707651_10?ts=1742462090237&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":65.032614,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich brauche halt auch Jahre zum antworten...\nVergesse das beim lernen andauernd","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Ich brauche halt auch Jahre zum antworten...\u003cbr\u003e\nVergesse das beim lernen andauernd","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:34.925935964Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352208755927945278","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":73.575926,"event_ids":{"":"$1j7_loxgcGR3V-A3wcQxOTYT2gGjmgyT3bhcwEUtveI"},"time":"2026-03-06T19:14:34.926067616Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2135,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.646677,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:34.935429897Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824474858386794_15?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":82.143332,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.940633283Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","action":"initial backfill","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:34.940945827Z","message":"Fetching messages for backfill"} +{"level":"debug","transaction_id":"680","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.942382063Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"680","time":"2026-03-06T19:14:34.942471391Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1j7_loxgcGR3V-A3wcQxOTYT2gGjmgyT3bhcwEUtveI","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824474942,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:34.942661571Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"681","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:34.959954088Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"681","event_id":"$ekTTHyQnb-XZbt9Wvsr-hSHSk4D9Fxin13Wx_qTOEHk","time":"2026-03-06T19:14:34.960034128Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"681","time":"2026-03-06T19:14:34.960088046Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2136,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":43.965753,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:34.979714341Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2137,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":42.053473,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:34.983098686Z","message":"Request completed"} +{"level":"info","channel_id":"1430926246987960451","channel_receiver":"","room_id":"","time":"2026-03-06T19:14:34.983830632Z","message":"Creating Matrix room for channel"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2138,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":27.765219,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:35.007711576Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352208792682500139","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:35.007840645Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352208792682500139","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":81.486536,"time":"2026-03-06T19:14:35.007950088Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2140,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.023129,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.019637835Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2141,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":39.416021,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:35.059447208Z","message":"Request completed"} +{"level":"debug","transaction_id":"682","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.098259094Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"682","time":"2026-03-06T19:14:35.098383064Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2142,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":43.436838,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:35.103038188Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352208807891173377","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:35.103092106Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1352208807891173377","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":94.95973,"time":"2026-03-06T19:14:35.103154126Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2143,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.008596,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.10862403Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2144,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":26.904065,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:35.13592843Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2145,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":59.217411,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:35.195304313Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364906965700055081","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:35.19542947Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364906965700055081","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":92.202917,"time":"2026-03-06T19:14:35.19553151Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"683","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.200905869Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"683","time":"2026-03-06T19:14:35.201216947Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2146,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":11.068737,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.207121548Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2025,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1215_910_0_354_372_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":2563.980888,"status_code":200,"response_length":208,"response_mime":"application/json","time":"2026-03-06T19:14:35.226605645Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:14:35.226900","changes":["@discordbot:matrix.theocloud.dev"],"time":"2026-03-06T19:14:35.226925732Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:14:35.226900","time":"2026-03-06T19:14:35.227103759Z","message":"Finished handling device list changes"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","action":"initial backfill","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:35.229112492Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","action":"initial backfill","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","limit":100,"before_id":"1418143286366830694","time":"2026-03-06T19:14:35.229190436Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2134,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":371.582871,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<973169 bytes>","time":"2026-03-06T19:14:35.242873925Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2149,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":2.916891,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.2460815Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2147,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475207261582_11?ts=1745489595275&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":65.652814,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja, wenn ich nicht gerade krank bin schon","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:35.273042207Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907032418979900","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":77.315767,"event_ids":{"":"$qYk2RLdJBVQS0rp5uBDNT7Sx3YAfn039R1CXs9wPE_4"},"time":"2026-03-06T19:14:35.27309361Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2152,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.197523,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.282719546Z","message":"Request completed"} +{"level":"debug","transaction_id":"684","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.287639861Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"684","time":"2026-03-06T19:14:35.28770684Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qYk2RLdJBVQS0rp5uBDNT7Sx3YAfn039R1CXs9wPE_4","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475287,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:35.287892271Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2139,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":316.120947,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1430926246987960451","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1430926246987960451","external_url":"https://discord.com/channels/@me/1430926246987960451"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}},{"state_key":"fi.mau.discord://discord/dm/1430926246987960451","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discordbot:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1430926246987960451","external_url":"https://discord.com/channels/@me/1430926246987960451"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"group_dm"}}],"preset":"private_chat","room_version":"11"},"time":"2026-03-06T19:14:35.300312035Z","message":"Request completed"} +{"level":"info","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","time":"2026-03-06T19:14:35.30084577Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"685","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.316327278Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"685","time":"2026-03-06T19:14:35.316593516Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2150,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":85.036965,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22647 bytes>","time":"2026-03-06T19:14:35.331405307Z","message":"Request completed"} +{"level":"debug","transaction_id":"686","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.333765485Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"686","time":"2026-03-06T19:14:35.333875277Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2155,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":11.58033,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.343391211Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2153,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":65.61007,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:35.348617366Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2151,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475246278315_86?ts=1763673414958&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":114.927275,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"flensburg-germany-packed-ripe-mandarines-box-lidl-market-flensburg-germany-packed-ripe-mandarines-box-lidl-market-412380391.png","info":{"h":600,"mimetype":"image/png","size":973169,"w":800},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ruskorSwUIEQcTRNfGeHwCXW"},"time":"2026-03-06T19:14:35.361389065Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441175500050530433","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":1369.688956,"event_ids":{"1441175499371184210":"$aUzG4QPDmTW5zGcgSggtL5YXP4xgMKX-W5oNHj5zYGY"},"time":"2026-03-06T19:14:35.361445358Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2158,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.347893,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.371179898Z","message":"Request completed"} +{"level":"debug","transaction_id":"687","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.377582754Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"687","time":"2026-03-06T19:14:35.377663352Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$aUzG4QPDmTW5zGcgSggtL5YXP4xgMKX-W5oNHj5zYGY","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475377,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:35.377834675Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2157,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":45.407716,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:35.394179992Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907060960956446","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:35.394263942Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907060960956446","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":121.019403,"time":"2026-03-06T19:14:35.394323587Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2160,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":6.114268,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.400956853Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2154,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.273836,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:35.420390174Z","message":"Request completed"} +{"level":"debug","transaction_id":"688","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.444562081Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"688","time":"2026-03-06T19:14:35.444655041Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2156,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475343544026_51?ts=1754298341614&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":120.474703,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$ne0Qpr0gsh84cThqskilHEN0ndZbuGGfiF5rT-x8sIM"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:35.464168331Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2163,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":20.621128,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.484969023Z","message":"Request completed"} +{"level":"debug","transaction_id":"689","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.500495789Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"689","time":"2026-03-06T19:14:35.500615778Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lXlLTbj8OcHqj0tsrNaSiFGHo9kNQuUyvUM0sAVpkQk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475500,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:35.500811127Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","action":"initial backfill","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","limit":100,"count":32,"time":"2026-03-06T19:14:35.5089284Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","action":"initial backfill","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","limit":100,"count":82,"found_all":false,"time":"2026-03-06T19:14:35.50899482Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","action":"initial backfill","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:35.509051113Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"warn","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1406965111868100629","message_type":1,"author_id":"316966695430520833","action":"discord message create","handling_time":0.334544,"time":"2026-03-06T19:14:35.509600352Z","message":"Unhandled message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2159,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475371383698_83?ts=1763838665228&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":143.515725,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:35.514999296Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441868609918996533","message_type":3,"author_id":"122672447207112706","action":"discord message create","handling_time":153.427874,"event_ids":{"":"$6wttrTJ8c8NAM1ahkAc4wdv9lMcD1MbyXZnGhjEPzV8"},"time":"2026-03-06T19:14:35.515083666Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2165,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":12.76248,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.522761981Z","message":"Request completed"} +{"level":"debug","transaction_id":"690","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.534700881Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"690","time":"2026-03-06T19:14:35.534768628Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6wttrTJ8c8NAM1ahkAc4wdv9lMcD1MbyXZnGhjEPzV8","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475534,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:35.534937158Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2161,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475401159535_12?ts=1745489615160&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":150.559383,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bin halt so 1mal/monat krank","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:35.551862933Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907115822710854","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":157.401407,"event_ids":{"":"$aIxi7vfGDqbMxxPSEEZz0UbiEjv4u1v12O8_U9GViZo"},"time":"2026-03-06T19:14:35.551946814Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2167,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.27854,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.561765933Z","message":"Request completed"} +{"level":"debug","transaction_id":"691","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.566538322Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"691","time":"2026-03-06T19:14:35.566642806Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$aIxi7vfGDqbMxxPSEEZz0UbiEjv4u1v12O8_U9GViZo","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475566,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:35.566879013Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2164,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475485223808_52?ts=1754298341614&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":125.406682,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22647,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/lrkNrdFEibqACexSonjtcauT"},"time":"2026-03-06T19:14:35.61094918Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1401853592423366768","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":833.209418,"event_ids":{"":"$lXlLTbj8OcHqj0tsrNaSiFGHo9kNQuUyvUM0sAVpkQk","1401853669959274547":"$JDfRCAn8SgRUV_Bnq0xsZO66vPPNVbt6zIXo6BTNr14"},"time":"2026-03-06T19:14:35.611106046Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"692","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.656464593Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"692","time":"2026-03-06T19:14:35.656582556Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$JDfRCAn8SgRUV_Bnq0xsZO66vPPNVbt6zIXo6BTNr14","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475656,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:35.656812896Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2162,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":244.656701,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"membership":"invite"},"time":"2026-03-06T19:14:35.665595277Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2168,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":107.085179,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:35.669151154Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2166,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475522955723_87?ts=1755517023870&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":165.257122,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:35.688323475Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1406965116284698728","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":178.666481,"event_ids":{"":"$VqICOUNnpzJ0r9x4rCgt-ZfGzIYKdepjNyLT_w6aOuk"},"time":"2026-03-06T19:14:35.6884274Z","message":"Finished handling Discord message"} +{"level":"warn","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1406965956596600873","message_type":1,"author_id":"316966695430520833","action":"discord message create","handling_time":0.310588,"time":"2026-03-06T19:14:35.689095651Z","message":"Unhandled message"} +{"level":"debug","transaction_id":"693","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.697535735Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"693","time":"2026-03-06T19:14:35.697635749Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$VqICOUNnpzJ0r9x4rCgt-ZfGzIYKdepjNyLT_w6aOuk","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475697,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:35.69783431Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"694","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.718072284Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"694","time":"2026-03-06T19:14:35.718284464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2170,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":59.779082,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:35.72916742Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907185137520671","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:35.729244317Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907185137520671","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":177.085183,"time":"2026-03-06T19:14:35.729313391Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":4.285589,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.734035982Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2169,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/join?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":72.917523,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:35.739701794Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475734219458_13?ts=1745489634805&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":44.829143,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"also mache ich so 2-3 wochen/moant sport","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:35.779216502Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907198219812885","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":49.845561,"event_ids":{"":"$KXWbgdHi2uAnAh4lMxAoIaKOY6O3x0G4dFoyXFkBx78"},"time":"2026-03-06T19:14:35.779364986Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2175,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":7.376596,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.787571658Z","message":"Request completed"} +{"level":"debug","transaction_id":"695","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.792855083Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"695","time":"2026-03-06T19:14:35.792971859Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KXWbgdHi2uAnAh4lMxAoIaKOY6O3x0G4dFoyXFkBx78","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475793,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:35.793216307Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2174,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":80.073558,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_428870593358594048:matrix.theocloud.dev"},"time":"2026-03-06T19:14:35.819960363Z","message":"Request completed"} +{"level":"debug","transaction_id":"696","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.83454796Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"696","time":"2026-03-06T19:14:35.834829425Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2171,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":167.828224,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<126830 bytes>","time":"2026-03-06T19:14:35.848611112Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2176,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475787836081_14?ts=1745489639538&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":67.338735,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"legit keine ahnung","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:35.855389021Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907218071322645","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":75.677339,"event_ids":{"":"$NWdSJlGO9oykBbt41xWbEO76pc2xhz53Sd6LW4mZAB0"},"time":"2026-03-06T19:14:35.855503842Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2178,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":6.822538,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.855837478Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2180,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.881484,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.862321072Z","message":"Request completed"} +{"level":"debug","transaction_id":"697","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.86663816Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"697","time":"2026-03-06T19:14:35.866727558Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$NWdSJlGO9oykBbt41xWbEO76pc2xhz53Sd6LW4mZAB0","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475866,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:35.866950425Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2181,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":38.278431,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:35.901054036Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2177,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/join?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":114.952348,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:35.935254309Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2179,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475856075082_84?ts=1762609560806&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":93.391214,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://github.com/dhowe/AdNauseam/wiki/Install-AdNauseam-on-Chromium-based-browsers","com.beeper.linkpreviews":[{"og:title":"Install AdNauseam on Chromium based browsers","og:description":"AdNauseam: Fight back against advertising surveillance - dhowe/AdNauseam","og:image":"mxc://matrix.theocloud.dev/zmebdTTxiCEBpGDHROSJIRut","matrix:image:size":126830,"og:image:width":1200,"og:image:height":600,"og:image:type":"image/png","matched_url":"https://github.com/dhowe/AdNauseam/wiki/Install-AdNauseam-on-Chromium-based-browsers"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:35.949639783Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436713372325380278","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":1772.374248,"event_ids":{"":"$pnowe4slmFfyl_OqRVHIsGMVBVt2hUBqaTCT3xx7CVA"},"time":"2026-03-06T19:14:35.949764731Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2182,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":82.209543,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22673 bytes>","time":"2026-03-06T19:14:35.951065473Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2185,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":10.430239,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.960924821Z","message":"Request completed"} +{"level":"debug","transaction_id":"698","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.963517295Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"698","time":"2026-03-06T19:14:35.963582178Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$pnowe4slmFfyl_OqRVHIsGMVBVt2hUBqaTCT3xx7CVA","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824475963,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:35.963776828Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2186,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":15.280153,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.967060251Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2183,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":68.961519,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:35.970205945Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907264590217276","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:35.970308474Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907264590217276","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":114.365114,"time":"2026-03-06T19:14:35.970430907Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2189,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":7.675452,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:35.978668379Z","message":"Request completed"} +{"level":"debug","transaction_id":"699","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:35.983998109Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"699","time":"2026-03-06T19:14:35.984191782Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2184,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":73.776233,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:36.009783861Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2188,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475967273200_53?ts=1754385129796&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":89.702007,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 1 day streak!** 🔥 Here are yesterday's results:\n👑 4/6: Maja\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 1 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 4/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$ne0Qpr0gsh84cThqskilHEN0ndZbuGGfiF5rT-x8sIM"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.057298856Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2187,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475961082525_85?ts=1762609690827&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":96.737355,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://github.com/gorhill/uBlock/releases/tag/1.67.0","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.057967177Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436713917672980702","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":107.866015,"event_ids":{"":"$XcrUfkfHZAyAOKP6_EvodYHd7kyHEqHObPqop7gc9GU"},"time":"2026-03-06T19:14:36.058046936Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2190,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824475978838096_15?ts=1745489663598&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":82.221625,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ist auch immer grippe o.ä.","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.061198078Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907318986281043","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":90.599829,"event_ids":{"":"$MbEe26TJ7JFEkssg31KP-4gnhGoD_7haW_PcOmqFDNk"},"time":"2026-03-06T19:14:36.061272181Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2193,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.654785,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.072439814Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2192,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":14.976689,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.072562456Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2194,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":13.829809,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.075627553Z","message":"Request completed"} +{"level":"debug","transaction_id":"700","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.077191111Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"700","time":"2026-03-06T19:14:36.07728882Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HPpxuz9aBZCLXftl_tlX2YMLJGETh2EOYYLN6siK0fY","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476077,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.077472924Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"701","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.091480062Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"701","time":"2026-03-06T19:14:36.091573511Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XcrUfkfHZAyAOKP6_EvodYHd7kyHEqHObPqop7gc9GU","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476091,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.091793514Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$MbEe26TJ7JFEkssg31KP-4gnhGoD_7haW_PcOmqFDNk","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476091,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.091804061Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2191,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":154.557152,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_316966695430520833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:36.164564508Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2196,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476072742370_54?ts=1754385129796&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":142.174754,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22673,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/IrApqryIEweTkEfcqkONdbQc"},"time":"2026-03-06T19:14:36.215144949Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1402217608442281996","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":603.658333,"event_ids":{"":"$HPpxuz9aBZCLXftl_tlX2YMLJGETh2EOYYLN6siK0fY","1402217608106741860":"$U7KW-LXQRiqDQIjy_OXPUfcEPuqvEqD9zfDzBVJdmRA"},"time":"2026-03-06T19:14:36.215249922Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2197,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476075863619_16?ts=1745489690944&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":142.789575,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wie läuft deine calisthenics journey?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.218798536Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364907433683714128","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":157.320949,"event_ids":{"":"$9EogCKlhZVrZJO4sSXis9vpCAQAq9KAgFd9JQ08hDFo"},"time":"2026-03-06T19:14:36.218879553Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"702","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.221480128Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"702","time":"2026-03-06T19:14:36.221560237Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$U7KW-LXQRiqDQIjy_OXPUfcEPuqvEqD9zfDzBVJdmRA","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476221,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:36.221674709Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2195,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476072637467_55?ts=1762613940651&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":169.360004,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://drive.theocloud.dev/share/opzFF0O3","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.242142882Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436731742726783149","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":183.703712,"event_ids":{"":"$IMV2FG7D2p2a4p5nKs5txHa2cOX_EGMLVMV4PzuSPl0"},"time":"2026-03-06T19:14:36.242213981Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2199,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":23.510571,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.242904302Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2200,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":9.759823,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.252493849Z","message":"Request completed"} +{"level":"debug","transaction_id":"703","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.26265324Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"703","time":"2026-03-06T19:14:36.262857878Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$9EogCKlhZVrZJO4sSXis9vpCAQAq9KAgFd9JQ08hDFo","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476262,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.262970952Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"704","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.2825339Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"704","time":"2026-03-06T19:14:36.282581952Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$IMV2FG7D2p2a4p5nKs5txHa2cOX_EGMLVMV4PzuSPl0","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476282,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.282786729Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"705","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:36.310694427Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"705","time":"2026-03-06T19:14:36.310820632Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2201,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":82.083407,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:36.32517747Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2203,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":42.234923,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:36.367606974Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364916960789532702","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:36.367717744Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364916960789532702","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":148.629363,"time":"2026-03-06T19:14:36.367807212Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2202,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476252801365_17?ts=1762631265918&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":119.964855,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wie siehts aus jungs?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.372965898Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436804410163597505","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":130.635141,"event_ids":{"":"$NushuIcsN5Ne0FotIpb3eUW1qUuEmBGiIhQ07qpLK5k"},"time":"2026-03-06T19:14:36.373116758Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2204,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.358792,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.380723135Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2205,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.667775,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.387567883Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2198,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/join?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":233.030903,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:36.398024452Z","message":"Request completed"} +{"level":"debug","transaction_id":"706","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.400945184Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"706","time":"2026-03-06T19:14:36.401042195Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"707","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.419295462Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"707","time":"2026-03-06T19:14:36.419591523Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2206,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":58.322592,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:36.439420291Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$pnowe4slmFfyl_OqRVHIsGMVBVt2hUBqaTCT3xx7CVA","action":"matrix read receipt","discord_thread_id":"","message_id":"1436713372325380278","time":"2026-03-06T19:14:36.45181156Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$NushuIcsN5Ne0FotIpb3eUW1qUuEmBGiIhQ07qpLK5k","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476452,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.452049582Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2210,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":38.595165,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:36.478225262Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364932979696078878","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:36.478356286Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364932979696078878","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":110.432299,"time":"2026-03-06T19:14:36.47846084Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2207,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476387791378_56?ts=1762631285945&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":96.047523,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"also ich kann","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.484017488Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436804494162657392","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":110.592865,"event_ids":{"":"$wsCSFZRiB-AC22d_gtMGtOYdjEovSzi0yB6U3uNjqhk"},"time":"2026-03-06T19:14:36.484136778Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2211,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.981012,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.488023638Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2212,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.641306,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.499574914Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2208,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824476398359695_16?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":108.801413,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:36.507267966Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","action":"initial backfill","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:36.507757839Z","message":"Fetching messages for backfill"} +{"level":"debug","transaction_id":"708","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.509920434Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"708","time":"2026-03-06T19:14:36.510011928Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$wsCSFZRiB-AC22d_gtMGtOYdjEovSzi0yB6U3uNjqhk","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476510,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.510178571Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2209,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":86.957557,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24761 bytes>","time":"2026-03-06T19:14:36.525126694Z","message":"Request completed"} +{"level":"debug","transaction_id":"709","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.531218752Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"709","event_id":"$g-JAn8IeEpvJOcJDYS0hAu3tYHImyv3AaTuJR9wm9wg","time":"2026-03-06T19:14:36.53128168Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"709","time":"2026-03-06T19:14:36.531314576Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2216,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":7.043379,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.532842724Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2213,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":70.526614,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:36.558919577Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2215,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":75.425278,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:36.583374834Z","message":"Request completed"} +{"level":"info","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:36.58421343Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"204925152230768641","time":"2026-03-06T19:14:36.584268745Z","message":"Found other user ID"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:36.58459407Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2219,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":7.228042,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_204925152230768641","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:36.592207641Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2218,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.125628,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:36.609201513Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364939152344350742","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:36.609276384Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364939152344350742","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":130.673206,"time":"2026-03-06T19:14:36.609360055Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2222,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.790344,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.619634405Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2214,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476499822156_57?ts=1762631303976&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":128.752404,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"marcys scheint entweder noch zu lernen oder zu essen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.628742041Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436804569790156852","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":144.261639,"event_ids":{"":"$9VTTWmO04V9LuQTMhBDcVg-vTl3V-vvx7Qx6s6GG918"},"time":"2026-03-06T19:14:36.628834792Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2224,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":10.736148,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.640166694Z","message":"Request completed"} +{"level":"debug","transaction_id":"710","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.653491753Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"710","time":"2026-03-06T19:14:36.65356411Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$9VTTWmO04V9LuQTMhBDcVg-vTl3V-vvx7Qx6s6GG918","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476653,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.653766023Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2217,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476533100791_55?ts=1754402524552&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":127.046019,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus and Maja were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus and Maja were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$HPpxuz9aBZCLXftl_tlX2YMLJGETh2EOYYLN6siK0fY"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.660531291Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2226,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":14.181953,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.674996804Z","message":"Request completed"} +{"level":"debug","transaction_id":"711","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.691744272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"711","time":"2026-03-06T19:14:36.691846032Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YogxpOSUvfS8B0KMYhXUY-5hU4LBDw-gwC2QFBsfo5o","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476691,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.692016098Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2223,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":92.772271,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:36.712798562Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2221,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":121.052717,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<101882 bytes>","time":"2026-03-06T19:14:36.720013962Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2229,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":8.411379,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.729017534Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2228,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":54.804988,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:36.76786895Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364959107710324868","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:36.767996622Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1364959107710324868","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":158.5823,"time":"2026-03-06T19:14:36.768124433Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2231,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":14.401607,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.783192475Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","action":"initial backfill","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","limit":100,"count":23,"time":"2026-03-06T19:14:36.798160433Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","action":"initial backfill","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","limit":100,"count":23,"found_all":false,"time":"2026-03-06T19:14:36.79823244Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","action":"initial backfill","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:36.798311711Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2225,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476640432932_18?ts=1762631508243&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":173.855678,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hab ihm geschrieben","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.814466428Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436805426548047992","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":185.44858,"event_ids":{"":"$20tCSFzDbilW6t7AIIkJbbAY3CKFmg-p9_YHlaqPvKg"},"time":"2026-03-06T19:14:36.814590468Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2233,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":22.202985,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.821153682Z","message":"Request completed"} +{"level":"debug","transaction_id":"712","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.832122963Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"712","time":"2026-03-06T19:14:36.832209148Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$20tCSFzDbilW6t7AIIkJbbAY3CKFmg-p9_YHlaqPvKg","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476832,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.832452129Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2234,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.379472,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.833858752Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2227,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476675281411_56?ts=1754402524552&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":172.873416,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24761,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/sFKArkKwYiKrInXEjvHBHfwc"},"time":"2026-03-06T19:14:36.848447816Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1402290567337082880","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":633.009669,"event_ids":{"":"$YogxpOSUvfS8B0KMYhXUY-5hU4LBDw-gwC2QFBsfo5o","1402292580993208421":"$3syjRNfKCQenASPedlKb6mqaTCmR5weYrkDy7Lbqen4"},"time":"2026-03-06T19:14:36.848590573Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":2237,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":28.116386,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.877437789Z","message":"Request completed"} +{"level":"debug","transaction_id":"713","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.891230372Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"713","time":"2026-03-06T19:14:36.89132438Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"714","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.925188362Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"714","time":"2026-03-06T19:14:36.925327279Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3syjRNfKCQenASPedlKb6mqaTCmR5weYrkDy7Lbqen4","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476925,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:36.925545116Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2230,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476729228527_86?ts=1763841236385&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":217.327088,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://fitgirl-repacks.site/orcs-must-die-3/","com.beeper.linkpreviews":[{"og:title":"Orcs Must Die! 3: Complete Bundle - v1.2.0.0 + 3 DLCs + Multiplayer...","og:description":"#1994 Updated Orcs Must Die! 3: Complete Bundle v1.2.0.0 + 3 DLCs + Multiplayer Genres/Tags: Action, Tower defense, Third-person, 3D Company: Robot Entertainment Languages: RUS/ENG/MULTI19 Original Size: 11.1 GB Repack Size: 6.9 GB Download Mirrors 1337x | [magnet] [.torrent file only] RuTor [magnet] Tapochek.net Filehoster: MultiUpload (10+ hos...","og:image":"mxc://matrix.theocloud.dev/EyCyknuglNRLXcMsvWpblqNp","matrix:image:size":101882,"og:image:width":375,"og:image:height":500,"og:image:type":"image/jpeg","matched_url":"https://fitgirl-repacks.site/orcs-must-die-3/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:36.946784069Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441879394133217341","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":1431.493391,"event_ids":{"":"$U2Qe0DL7GSljAvZ7Gi949R63uoC5o0cvBGFLy_M7Pms"},"time":"2026-03-06T19:14:36.946922985Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2239,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.726591,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:36.969413859Z","message":"Request completed"} +{"level":"debug","transaction_id":"715","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:36.985076887Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"715","time":"2026-03-06T19:14:36.985166145Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$U2Qe0DL7GSljAvZ7Gi949R63uoC5o0cvBGFLy_M7Pms","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824476985,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:36.985375462Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"716","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:37.010257176Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"716","time":"2026-03-06T19:14:37.010381635Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2232,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476783394808_19?ts=1745514350703&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":237.331858,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Sehr geil","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.020869214Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1365010864209526785","message_type":19,"author_id":"257943768903188481","action":"discord message create","handling_time":252.586938,"event_ids":{"":"$4zQ6QRuiNu6Y5RYFvWwJlQqI1AyOWqoupPe6R_97u8w"},"time":"2026-03-06T19:14:37.02098138Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2241,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":11.693195,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.033425519Z","message":"Request completed"} +{"level":"debug","transaction_id":"717","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.052627034Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"717","time":"2026-03-06T19:14:37.052699041Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2235,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476821418105_74?ts=1761229809909&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":252.852826,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/3949040/RV_There_Yet/\n\u003e [**RV There Yet?**](https://store.steampowered.com/app/3949040/RV_There_Yet/)\n\u003e \n\u003e \n\u003e \n\u003e **DRIVE HOME**\n\u003e \n\u003e You and your buddies are on your way home from a relaxing vacation but are forced to take an alternate route. Get your RV through the back country and find the exit to Route 65.…\n\u003e \n\u003e \n\u003e \n\u003e PriceRecommendations$7.192200","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/3949040/RV_There_Yet/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/3949040/RV_There_Yet/\"\u003e\u003cstrong\u003eRV There Yet?\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003e\u003cp\u003e\u003cstrong\u003eDRIVE HOME\u003c/strong\u003e\u003c/p\u003e\n\u003cp\u003eYou and your buddies are on your way home from a relaxing vacation but are forced to take an alternate route. Get your RV through the back country and find the exit to Route 65.…\u003c/p\u003e\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$7.19\u003c/td\u003e\u003ctd\u003e2200\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.074537589Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1430926277619089428","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":276.163439,"event_ids":{"":"$crT1ptRkxweSXjRFYdc4CVrSyvIjVihJJPMv9wpqM4M"},"time":"2026-03-06T19:14:37.074682023Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2236,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476834099708_58?ts=1762631591116&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":253.59057,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"same","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.087828984Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436805774142865428","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":272.813805,"event_ids":{"":"$42N1IbQxHxwpcSTW_figa3ZPmrn5qdmeuQIWjXBmj9A"},"time":"2026-03-06T19:14:37.087915379Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2240,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":144.856625,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:37.114705322Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2243,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":27.28275,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.115849477Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":2238,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824476877669176_75?ts=1754402554105&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":246.074778,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Tolles Wort!!!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.123880146Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1402290691291217942","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":274.948603,"event_ids":{"":"$TEzxoFfeGMt7Kc116Tk1AFAyIGL4hEf0W2XPJOkUn7M"},"time":"2026-03-06T19:14:37.123965074Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"718","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.134934984Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"718","time":"2026-03-06T19:14:37.135032414Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":2246,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":19.273382,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.14400735Z","message":"Request completed"} +{"level":"debug","transaction_id":"719","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.159507506Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"719","time":"2026-03-06T19:14:37.159741337Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$9VTTWmO04V9LuQTMhBDcVg-vTl3V-vvx7Qx6s6GG918","action":"matrix read receipt","discord_thread_id":"","message_id":"1436804569790156852","time":"2026-03-06T19:14:37.161257123Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$4zQ6QRuiNu6Y5RYFvWwJlQqI1AyOWqoupPe6R_97u8w","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477161,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.161482365Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$TEzxoFfeGMt7Kc116Tk1AFAyIGL4hEf0W2XPJOkUn7M","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477161,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.161530486Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$42N1IbQxHxwpcSTW_figa3ZPmrn5qdmeuQIWjXBmj9A","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477161,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.161522943Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$crT1ptRkxweSXjRFYdc4CVrSyvIjVihJJPMv9wpqM4M","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477161,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.161528111Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2242,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477033621217_20?ts=1745514378695&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":175.823342,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"50kg bei pulls ist insane","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.20959053Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1365010981616619594","message_type":19,"author_id":"257943768903188481","action":"discord message create","handling_time":188.373503,"event_ids":{"":"$m0-cvgXwbq0JxAbJXxYoHmyTxVjW9IzPOIdC9fVip74"},"time":"2026-03-06T19:14:37.209684119Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2248,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":12.801313,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.223217168Z","message":"Request completed"} +{"level":"debug","transaction_id":"720","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.241009825Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"720","time":"2026-03-06T19:14:37.241076106Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$m0-cvgXwbq0JxAbJXxYoHmyTxVjW9IzPOIdC9fVip74","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477241,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.241261956Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2245,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477116054674_87?ts=1762632728362&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":162.236934,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gleich da mädels","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.278456575Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436810544098050201","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":190.262944,"event_ids":{"":"$vK6r4dSEVn7mPk2gL9UixAoY-60w01TBolal41RTJgM"},"time":"2026-03-06T19:14:37.278558125Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":2247,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477144208775_51?ts=1754403001381&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":143.785455,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Bomben Wort","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.288128257Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1402292567303000065","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":163.808594,"event_ids":{"":"$Makn5RBpSQzj7iwvoSo-_uAfq_P5vrSazOWIYW7C_Lk"},"time":"2026-03-06T19:14:37.288226455Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2250,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":24.258861,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.303516106Z","message":"Request completed"} +{"level":"debug","transaction_id":"721","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.318731166Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"721","time":"2026-03-06T19:14:37.318815606Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vK6r4dSEVn7mPk2gL9UixAoY-60w01TBolal41RTJgM","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477318,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.319045037Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2220,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":757.355866,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"state_key":"fi.mau.discord://discord/dm/711638031899033640","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_204925152230768641:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"711638031899033640","external_url":"https://discord.com/channels/@me/711638031899033640"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/711638031899033640","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_204925152230768641:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"711638031899033640","external_url":"https://discord.com/channels/@me/711638031899033640"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:37.350097521Z","message":"Request completed"} +{"level":"info","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","time":"2026-03-06T19:14:37.350741816Z","message":"Matrix room created"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2244,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":246.181147,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:37.361071062Z","message":"Request completed"} +{"level":"debug","transaction_id":"722","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.364844708Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"722","time":"2026-03-06T19:14:37.364926772Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Makn5RBpSQzj7iwvoSo-_uAfq_P5vrSazOWIYW7C_Lk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477365,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.365147544Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"723","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.396837408Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"723","time":"2026-03-06T19:14:37.397197305Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"724","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.424182875Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"724","time":"2026-03-06T19:14:37.424515744Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2249,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477223460359_21?ts=1745514516004&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":219.501556,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Dauert das so lange, bis man den kann?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.44312346Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1365011557532176446","message_type":19,"author_id":"257943768903188481","action":"discord message create","handling_time":233.180715,"event_ids":{"":"$9sj7iNZWEyr8QzKk6Mj69XucMRz8UJb1dQ1Y5hHcDsM"},"time":"2026-03-06T19:14:37.443231994Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2254,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.74201,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.450875109Z","message":"Request completed"} +{"level":"debug","transaction_id":"725","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.458077309Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"725","time":"2026-03-06T19:14:37.458168593Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$9sj7iNZWEyr8QzKk6Mj69XucMRz8UJb1dQ1Y5hHcDsM","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477458,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.458436089Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2251,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477303795336_22?ts=1762632746610&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":205.76296,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:37.509721448Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436810620635975750","message_type":3,"author_id":"257943768903188481","action":"discord message create","handling_time":230.954634,"event_ids":{"":"$EQ77Y2VlHTYNef3o2hVDj3ruOOh_q0HVAO0CwbvBwC0"},"time":"2026-03-06T19:14:37.509860294Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"726","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.536114686Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"726","time":"2026-03-06T19:14:37.536198986Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$EQ77Y2VlHTYNef3o2hVDj3ruOOh_q0HVAO0CwbvBwC0","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477536,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:37.536381274Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2252,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":200.455999,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:37.551517552Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2255,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":105.289745,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:37.556500516Z","message":"Request completed"} +{"level":"debug","transaction_id":"727","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.576248057Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"727","time":"2026-03-06T19:14:37.576372795Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2253,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":254.091968,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:37.615493663Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2257,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":75.779727,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:37.632455686Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1365011867000639548","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:37.632536913Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1365011867000639548","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":188.833762,"time":"2026-03-06T19:14:37.632588107Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"728","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.637117655Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"728","time":"2026-03-06T19:14:37.637619192Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2258,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":91.968248,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24586 bytes>","time":"2026-03-06T19:14:37.675834904Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2256,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":131.059362,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:37.682979276Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2259,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477615858728_59?ts=1763841253856&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":71.301932,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://dodi-repacks.site/battlefield-6/","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.68738192Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441879467411767327","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":740.230482,"event_ids":{"":"$LFZ_711tLu20HgUrTZHHDqHXMGABr4hpLxMvlPgzNMU"},"time":"2026-03-06T19:14:37.687530195Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2262,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":12.46139,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.688937097Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2263,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_204925152230768641:matrix.theocloud.dev/displayname?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":15.17958,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:37.69870125Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2264,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.887569,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.70245995Z","message":"Request completed"} +{"level":"debug","transaction_id":"729","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.705419933Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"729","time":"2026-03-06T19:14:37.705494944Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LFZ_711tLu20HgUrTZHHDqHXMGABr4hpLxMvlPgzNMU","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477705,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.705691899Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"730","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.718284383Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"730","time":"2026-03-06T19:14:37.718549015Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2265,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477689098433_57?ts=1754476104257&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":103.788976,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$YogxpOSUvfS8B0KMYhXUY-5hU4LBDw-gwC2QFBsfo5o"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.793137373Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2268,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":12.171335,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.805498121Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2267,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477702697693_88?ts=1763841758094&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":115.926298,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/63200/Monday_Night_Combat/\n\u003e [**Monday Night Combat**](https://store.steampowered.com/app/63200/Monday_Night_Combat/)\n\u003e \n\u003e Monday Night Combat is a class-based, third-person shooter… and the most popular lethal sport of the future! It blends intense combat, finishing moves, and gameshow-like challenges and rewards to produce an action experience unlike any other. Why fight for “honor” or “duty” when you can fight for the real American dream: cash, fame…\n\u003e \n\u003e PriceRecommendationsMetacritic$4.9989582","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/63200/Monday_Night_Combat/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/63200/Monday_Night_Combat/\"\u003e\u003cstrong\u003eMonday Night Combat\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003eMonday Night Combat is a class-based, third-person shooter… and the most popular lethal sport of the future! It blends intense combat, finishing moves, and gameshow-like challenges and rewards to produce an action experience unlike any other. Why fight for “honor” or “duty” when you can fight for the real American dream: cash, fame…\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003cth\u003eMetacritic\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$4.99\u003c/td\u003e\u003ctd\u003e895\u003c/td\u003e\u003ctd\u003e82\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:37.8189915Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441881582339231775","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":131.137866,"event_ids":{"":"$SYJ3JfYNXyLIxOEl_NEudcHeQXfQ4t3BLSYjsM1Ipfo"},"time":"2026-03-06T19:14:37.819169877Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"731","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.822757393Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"731","time":"2026-03-06T19:14:37.822920894Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QS7Mp3zxJ8LoH9OW-0afHZNayCUMEfhb5pSgqKjbO4Q","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477823,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.823149697Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"732","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.836876419Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"732","time":"2026-03-06T19:14:37.83698195Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SYJ3JfYNXyLIxOEl_NEudcHeQXfQ4t3BLSYjsM1Ipfo","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477837,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:37.837150829Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2266,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_204925152230768641:matrix.theocloud.dev/displayname?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":163.125117,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Inkompetenz2_0"},"time":"2026-03-06T19:14:37.861996783Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2270,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_204925152230768641:matrix.theocloud.dev/avatar_url?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":7.154358,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:37.869489317Z","message":"Request completed"} +{"level":"debug","transaction_id":"733","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.874591223Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"733","time":"2026-03-06T19:14:37.874861931Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2269,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477805758074_58?ts=1754476104257&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":109.196579,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24586,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/lDqaWIZPoIhzileVrpwXXBmZ"},"time":"2026-03-06T19:14:37.915218098Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1402599182988214302","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":626.75425,"event_ids":{"":"$QS7Mp3zxJ8LoH9OW-0afHZNayCUMEfhb5pSgqKjbO4Q","1402600024122069163":"$xfA1JnHaQ3mrqKLnpxLecVUuhwDZA2MRYlbZuNhu9SU"},"time":"2026-03-06T19:14:37.915409885Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"734","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.927924635Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"734","time":"2026-03-06T19:14:37.928063062Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xfA1JnHaQ3mrqKLnpxLecVUuhwDZA2MRYlbZuNhu9SU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824477928,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:37.928277966Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2272,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":55.776074,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<4925 bytes>","time":"2026-03-06T19:14:37.937765964Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2273,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":2.032339,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.940251998Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2260,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":304.4281,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<10528717 bytes>","time":"2026-03-06T19:14:37.950924589Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2275,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":5.894265,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:37.957252085Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2271,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824477869947203_1?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":91.093543,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:37.961155777Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","action":"initial backfill","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:37.961493394Z","message":"Fetching messages for backfill"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","old_name":"","new_name":"Inkompetenz2_0","time":"2026-03-06T19:14:37.961583491Z","message":"Updating portal name"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","time":"2026-03-06T19:14:37.961863628Z","message":"Updating bridge info..."} +{"level":"debug","transaction_id":"735","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:37.972959323Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"735","event_id":"$48g1k803LpEqmqKXKJXq9TB2MpMA54xNuEdlVyhBio0","time":"2026-03-06T19:14:37.973044112Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"735","time":"2026-03-06T19:14:37.973096563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2277,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":53.467649,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:38.015120772Z","message":"Request completed"} +{"level":"info","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:38.01608676Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"395335060477313025","time":"2026-03-06T19:14:38.016152621Z","message":"Found other user ID"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:38.016461464Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2274,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477940509576_89?ts=1762634952225&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":88.80621,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hab lags","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.029490951Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2279,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":14.70996,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_395335060477313025","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:38.031560097Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2280,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.929615,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.044609558Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2261,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":401.168667,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1952270 bytes>","time":"2026-03-06T19:14:38.053002359Z","message":"Request completed"} +{"level":"debug","transaction_id":"736","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.060182699Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"736","time":"2026-03-06T19:14:38.060282155Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$19NqPqiqMs8gZRGFpGCxMHv8Ad7OT6eeHukooCdoMws","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478060,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.060463116Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2283,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":15.864453,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.06931045Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2276,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824477957508267_88?ts=1755517303424&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":117.499493,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://cdn.discordapp.com/attachments/984511814148718602/1270857643291967530/1CFC6F34-BB31-40F6-AA72-DE250F097A90-1.gif","info":{"h":388,"mimetype":"image/gif","size":10528717,"w":498},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/gSVCHNkUOmMXqRqnkBudfDps"},"time":"2026-03-06T19:14:38.075171051Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1406966288819027999","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":2386.033006,"event_ids":{"video_https://cdn.discordapp.com/attachments/984511814148718602/1270857643291967530/1CFC6F34-BB31-40F6-AA72-DE250F097A90-1.gif":"$VHj1NUdi5bOltecV9vfp7BHk5hCHslgbZgCGJtsfxqc"},"time":"2026-03-06T19:14:38.075236354Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2285,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.516987,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.090225963Z","message":"Request completed"} +{"level":"debug","transaction_id":"737","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.10327305Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"737","time":"2026-03-06T19:14:38.103376626Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$VHj1NUdi5bOltecV9vfp7BHk5hCHslgbZgCGJtsfxqc","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478103,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:38.103595721Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2278,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F711638031899033640?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":148.116023,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_204925152230768641:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"711638031899033640","displayname":"Inkompetenz2_0","external_url":"https://discord.com/channels/@me/711638031899033640"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:38.110230174Z","message":"Request completed"} +{"level":"debug","transaction_id":"738","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.125264343Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"738","time":"2026-03-06T19:14:38.12541597Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","action":"initial backfill","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:38.207376804Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","action":"initial backfill","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","limit":100,"before_id":"1273655694352056422","time":"2026-03-06T19:14:38.20746271Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2282,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478044832704_90?ts=1762634952225&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":162.661365,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":105,"mimetype":"image/webp","size":4925,"w":367},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/QOBZenTluOzxsRJYXLIyiaHa"},"time":"2026-03-06T19:14:38.207684529Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436819871655792861","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":697.370191,"event_ids":{"":"$19NqPqiqMs8gZRGFpGCxMHv8Ad7OT6eeHukooCdoMws","1436819871202672750":"$0NRerJcW7qKAq4B6F8NiRjNZWOsAS2XZUGttX7YHoFI"},"time":"2026-03-06T19:14:38.207769946Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2284,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478069562301_75?ts=1761229822512&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":151.807044,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://cdn.discordapp.com/attachments/1277595299824533565/1412510332970209310/gayyyyyyyyyyy.gif","info":{"h":1149,"mimetype":"image/gif","size":1952270,"w":800},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/yAPlBUteZncDpExajtZcnJaU"},"time":"2026-03-06T19:14:38.221568745Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1430926330479906947","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":1146.67503,"event_ids":{"video_https://cdn.discordapp.com/attachments/1277595299824533565/1412510332970209310/gayyyyyyyyyyy.gif":"$bcqTfGYROYBZFyE4YvVRoY2fwD93otNIpbsj2gd2R6U"},"time":"2026-03-06T19:14:38.221694252Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2288,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.29978,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.224870816Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2289,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.928218,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.237218643Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2286,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478090471249_89?ts=1755517316680&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":154.848814,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"MiauWuff United","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.245473994Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1406966344418594847","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":170.086153,"event_ids":{"":"$sN1arwRndo-SGYXDVqBdWNpahTgedL37mmFWcEB6Re0"},"time":"2026-03-06T19:14:38.245568002Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"739","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.251417428Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"739","time":"2026-03-06T19:14:38.251536858Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0NRerJcW7qKAq4B6F8NiRjNZWOsAS2XZUGttX7YHoFI","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478251,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:38.251731788Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"740","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.275772322Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"740","time":"2026-03-06T19:14:38.275926324Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bcqTfGYROYBZFyE4YvVRoY2fwD93otNIpbsj2gd2R6U","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478276,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:38.276129215Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$sN1arwRndo-SGYXDVqBdWNpahTgedL37mmFWcEB6Re0","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478276,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.276160714Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"741","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.305914901Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"741","time":"2026-03-06T19:14:38.305993054Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:38.318424831Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2287,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F711638031899033640?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":219.595214,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_204925152230768641:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"711638031899033640","displayname":"Inkompetenz2_0","external_url":"https://discord.com/channels/@me/711638031899033640"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:38.330207076Z","message":"Request completed"} +{"level":"debug","transaction_id":"742","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:38.343603584Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"742","time":"2026-03-06T19:14:38.34368481Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"743","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.355890508Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"743","time":"2026-03-06T19:14:38.355970966Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2290,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478225139848_60?ts=1762634971873&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":160.996326,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"?????","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.38628878Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436819954065342526","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":178.124016,"event_ids":{"":"$fH11M1bgqdt_cnZMfECwk1b0J7QjNonJDrMMtY9L27U"},"time":"2026-03-06T19:14:38.38636812Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2292,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":87.578524,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24787 bytes>","time":"2026-03-06T19:14:38.388562563Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2291,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478237400372_90?ts=1761238188024&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":153.476622,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Nicht vor Schedule 1!!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.39103875Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1430961417980350614","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":169.146146,"event_ids":{"":"$pQsVC8xeMOANHacTobZM8UaNJxakSxnEpdqK7kIqZSg"},"time":"2026-03-06T19:14:38.391164396Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2295,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":11.970329,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.40398708Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2293,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.515314,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.405385531Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2294,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":17.338753,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.406297251Z","message":"Request completed"} +{"level":"debug","transaction_id":"744","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.410656873Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"744","time":"2026-03-06T19:14:38.410782379Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"745","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.430802166Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"745","time":"2026-03-06T19:14:38.430865652Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"746","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.464393764Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"746","time":"2026-03-06T19:14:38.464661888Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$19NqPqiqMs8gZRGFpGCxMHv8Ad7OT6eeHukooCdoMws","action":"matrix read receipt","discord_thread_id":"","message_id":"1436819871655792861","time":"2026-03-06T19:14:38.494842671Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$pQsVC8xeMOANHacTobZM8UaNJxakSxnEpdqK7kIqZSg","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478495,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.495082579Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$fH11M1bgqdt_cnZMfECwk1b0J7QjNonJDrMMtY9L27U","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478495,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.495082579Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","action":"initial backfill","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:38.506739876Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","action":"initial backfill","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:38.506841915Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","action":"initial backfill","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:38.506941231Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2296,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478404208130_91?ts=1761299669824&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":136.080949,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/1943950/Escape_the_Backrooms/?snr=1_4_4__118\n\u003e [**Escape the Backrooms**](https://store.steampowered.com/app/1943950/Escape_the_Backrooms/?snr=1_4_4__118)\n\u003e \n\u003e Explore the seemingly infinite expanse of eerily familiar levels in backrooms based on the popular creepypasta lore. Each level features different ways to escape with dangers along the way.…\n\u003e \n\u003e PriceRecommendations$8.9992800","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/1943950/Escape_the_Backrooms/?snr=1_4_4__118\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/1943950/Escape_the_Backrooms/?snr=1_4_4__118\"\u003e\u003cstrong\u003eEscape the Backrooms\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003eExplore the seemingly infinite expanse of eerily familiar levels in backrooms based on the popular creepypasta lore. Each level features different ways to escape with dangers along the way.…\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$8.99\u003c/td\u003e\u003ctd\u003e92800\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.540561953Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1431219291340013619","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":149.115115,"event_ids":{"":"$uYlNytky_o0Q9T6U_onzNDCEB0CVR5G2Y-fxOmZMlUM"},"time":"2026-03-06T19:14:38.540676913Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2298,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478406422758_59?ts=1754489593504&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":141.548269,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 2 day streak!** 🔥 Here are yesterday's results:\n👑 2/6: Maja\n3/6: @lagopodus\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 2 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 2/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e\u003cbr\u003e\n3/6: @lagopodus\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$HPpxuz9aBZCLXftl_tlX2YMLJGETh2EOYYLN6siK0fY"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.548185861Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2297,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478405553711_61?ts=1762634987104&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":155.144665,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"omg","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.56083352Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436820017948655718","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":174.339684,"event_ids":{"":"$mTDtvMHeLi5H1ap4RksdfMm9CUMfgQ7Hu87sVo1ssKU"},"time":"2026-03-06T19:14:38.560960214Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2302,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":20.043393,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.561282466Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2303,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":18.570769,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.567012462Z","message":"Request completed"} +{"level":"debug","transaction_id":"747","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.589525407Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"747","time":"2026-03-06T19:14:38.589617878Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uYlNytky_o0Q9T6U_onzNDCEB0CVR5G2Y-fxOmZMlUM","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478589,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.589825379Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2305,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":31.041309,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.592756937Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2299,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":94.317112,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.60184837Z","message":"Request completed"} +{"level":"debug","transaction_id":"748","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.615977802Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"748","time":"2026-03-06T19:14:38.616114064Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ABe9mw1U64hSOZ18UF6h-VleFNB8ZwdSYKn4KVTJhww","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478616,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.616358861Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$mTDtvMHeLi5H1ap4RksdfMm9CUMfgQ7Hu87sVo1ssKU","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478616,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.616372131Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"749","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:38.646515409Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"749","time":"2026-03-06T19:14:38.646587416Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2281,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":639.506532,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1126124397879631883","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_395335060477313025:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1126124397879631883","external_url":"https://discord.com/channels/@me/1126124397879631883"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/1126124397879631883","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_395335060477313025:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1126124397879631883","external_url":"https://discord.com/channels/@me/1126124397879631883"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:38.671546305Z","message":"Request completed"} +{"level":"info","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","time":"2026-03-06T19:14:38.672229082Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"750","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.712018829Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"750","time":"2026-03-06T19:14:38.712278083Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2300,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":210.858439,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<54860 bytes>","time":"2026-03-06T19:14:38.729500199Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2310,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.388339,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.745497353Z","message":"Request completed"} +{"level":"debug","transaction_id":"751","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.756666033Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"751","time":"2026-03-06T19:14:38.756807394Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2304,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478561561905_92?ts=1761299675308&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":218.78637,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hat jetzt auch 1.0","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.780582596Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1431219314341576825","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":239.762367,"event_ids":{"":"$jmEfqJ4-KKCcwAKDZXuY3tPwbHsc-ry_6P7GW3lGTCQ"},"time":"2026-03-06T19:14:38.780731779Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2306,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478567200408_60?ts=1754489593504&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":229.303283,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 solved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24787,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/UHRzyQYbJlrSVNKbArdYIyix"},"time":"2026-03-06T19:14:38.796752609Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1402655760990736409","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":880.961735,"event_ids":{"":"$ABe9mw1U64hSOZ18UF6h-VleFNB8ZwdSYKn4KVTJhww","1402655760961241158":"$dOQHwVValS6zuCcGywtiwSmL2l4kUp8lwA--CVrFkXk"},"time":"2026-03-06T19:14:38.796934059Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2312,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":39.632252,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.821275194Z","message":"Request completed"} +{"level":"debug","transaction_id":"752","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.850322437Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"752","time":"2026-03-06T19:14:38.850434115Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$jmEfqJ4-KKCcwAKDZXuY3tPwbHsc-ry_6P7GW3lGTCQ","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478850,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.850673674Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2307,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478592928050_91?ts=1762635133486&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":272.424156,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"glaub ihr müsst ohne mich zocken, hab rubberbanding wenn nen time out kommt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.865501388Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436820631919263917","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":304.254891,"event_ids":{"":"$0q4WFnNwqIX_ArPlRRpnCT4XQxva_J1_m66ombheLTc"},"time":"2026-03-06T19:14:38.865604057Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2301,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":337.056364,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<74022 bytes>","time":"2026-03-06T19:14:38.873803115Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2315,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.064556,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.887365987Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2316,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.414954,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.895650463Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2308,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478602008518_2?ts=1723380487408&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":295.38416,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Satisfactory IP 😉","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:38.897524889Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272174712855855134","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":390.412894,"event_ids":{"":"$MduYmgO6ZoFsQGqbHVeQWesrZ-vFWPLBCP26VB4A5Ho"},"time":"2026-03-06T19:14:38.897601226Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"753","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.906658576Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"753","time":"2026-03-06T19:14:38.906806153Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$dOQHwVValS6zuCcGywtiwSmL2l4kUp8lwA--CVrFkXk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478906,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:38.907007019Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$0q4WFnNwqIX_ArPlRRpnCT4XQxva_J1_m66ombheLTc","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478907,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.907069528Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2319,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":16.138933,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:38.91422214Z","message":"Request completed"} +{"level":"debug","transaction_id":"754","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:38.935990147Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"754","time":"2026-03-06T19:14:38.936143661Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MduYmgO6ZoFsQGqbHVeQWesrZ-vFWPLBCP26VB4A5Ho","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824478936,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:38.936413671Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"755","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:38.977738619Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"755","time":"2026-03-06T19:14:38.977853021Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2309,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":327.42973,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:38.999955991Z","message":"Request completed"} +{"level":"debug","transaction_id":"756","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.03620348Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"756","time":"2026-03-06T19:14:39.036310548Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2311,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478745682085_92?ts=1763842345358&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":300.06778,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://www.reddit.com/r/linux_gaming/comments/1luqggx/rockstar_games_launcher_works_well_if_installed/?tl=de","com.beeper.linkpreviews":[{"og:title":"From the linux_gaming community on Reddit","og:description":"Explore this post and more from the linux_gaming community","og:image":"mxc://matrix.theocloud.dev/fGVKCvCAFUSWHCNyCrzwpskk","matrix:image:size":54860,"og:image:width":1120,"og:image:height":584,"og:image:type":"image/jpeg","matched_url":"https://www.reddit.com/r/linux_gaming/comments/1luqggx/rockstar_games_launcher_works_well_if_installed/?tl=de"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.04596023Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1441884045503107134","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":1226.509796,"event_ids":{"":"$bUP5MsNDjSfQ8Ln3EGQ2ERf6O-lzGz0a8YKoGLoducY"},"time":"2026-03-06T19:14:39.046076098Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2322,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":18.984794,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.06600481Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2318,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":172.08399,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:39.068150782Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2313,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":270.40313,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<21480 bytes>","time":"2026-03-06T19:14:39.070494128Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2326,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.095417,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.082971163Z","message":"Request completed"} +{"level":"debug","transaction_id":"757","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.092115886Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"757","time":"2026-03-06T19:14:39.092192642Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2314,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478821540105_76?ts=1762854765661&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":274.369401,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wollen wir das spielen?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.096069445Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437741836029394944","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":314.965266,"event_ids":{"":"$y0R0C07kFohoh1lpvVQgk44_xSHFcxcwZ-Vre8ka3qM"},"time":"2026-03-06T19:14:39.096170157Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2328,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":16.583408,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.113423074Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$mTDtvMHeLi5H1ap4RksdfMm9CUMfgQ7Hu87sVo1ssKU","action":"matrix read receipt","discord_thread_id":"","message_id":"1436820017948655718","time":"2026-03-06T19:14:39.119541742Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$bUP5MsNDjSfQ8Ln3EGQ2ERf6O-lzGz0a8YKoGLoducY","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479119,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.119699516Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"758","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.133001387Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"758","time":"2026-03-06T19:14:39.13307102Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$y0R0C07kFohoh1lpvVQgk44_xSHFcxcwZ-Vre8ka3qM","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479133,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.133248908Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2317,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478887631388_93?ts=1762635136329&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":273.353756,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich restart mal router","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.161144313Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436820643843805356","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":295.288476,"event_ids":{"":"$CKu_VN2l6h_7R7ciC3xu-H3qbNS7Khn5CL0dT1OtV7s"},"time":"2026-03-06T19:14:39.161248867Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2320,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824478914497458_3?ts=1723381194777&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":255.539656,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ts?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.170208438Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272177679776354344","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":272.467527,"event_ids":{"":"$aDj6ceGKaRC5rkJ_OjjA3U3EMixq0Q4XrHkbYY1hvD4"},"time":"2026-03-06T19:14:39.170316344Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2330,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":23.305584,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.185219489Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2331,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.336451,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.191324468Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2323,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":143.140881,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24609 bytes>","time":"2026-03-06T19:14:39.197211609Z","message":"Request completed"} +{"level":"debug","transaction_id":"759","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.203491403Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"759","time":"2026-03-06T19:14:39.203587785Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$CKu_VN2l6h_7R7ciC3xu-H3qbNS7Khn5CL0dT1OtV7s","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479203,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.203805763Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2334,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":11.253678,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.209056222Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2327,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":138.05455,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:39.221362772Z","message":"Request completed"} +{"level":"debug","transaction_id":"760","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.228577614Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"760","time":"2026-03-06T19:14:39.228661076Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$aDj6ceGKaRC5rkJ_OjjA3U3EMixq0Q4XrHkbYY1hvD4","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479228,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.228844901Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2324,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479066292979_94?ts=1763913217923&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":210.319537,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://store.steampowered.com/app/552500/Warhammer_Vermintide_2/\n\u003e [**Warhammer: Vermintide 2**](https://store.steampowered.com/app/552500/Warhammer_Vermintide_2/)\n\u003e \n\u003e Warhammer: Vermintide 2 is a 4-player co-op action game set in the Warhammer Fantasy Battles world. Sequel to the critically acclaimed Vermintide, Vermintide 2 is the latest installment in a franchise best known for its intense and bloody first-person melee combat.…\n\u003e \n\u003e PriceRecommendationsMetacritic$29.998722982","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"https://store.steampowered.com/app/552500/Warhammer_Vermintide_2/\n\u003cblockquote class=\"discord-embed\"\u003e\u003cp class=\"discord-embed-title\"\u003e\u003ca href=\"https://store.steampowered.com/app/552500/Warhammer_Vermintide_2/\"\u003e\u003cstrong\u003eWarhammer: Vermintide 2\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u003cp class=\"discord-embed-description\"\u003eWarhammer: Vermintide 2 is a 4-player co-op action game set in the Warhammer Fantasy Battles world. Sequel to the critically acclaimed Vermintide, Vermintide 2 is the latest installment in a franchise best known for its intense and bloody first-person melee combat.…\u003c/p\u003e\u003ctable class=\"discord-embed-fields\"\u003e\u003ctr\u003e\u003cth\u003ePrice\u003c/th\u003e\u003cth\u003eRecommendations\u003c/th\u003e\u003cth\u003eMetacritic\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003e$29.99\u003c/td\u003e\u003ctd\u003e87229\u003c/td\u003e\u003ctd\u003e82\u003c/td\u003e\u003c/tr\u003e\u003c/table\u003e\u003c/blockquote\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.276940914Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442181306585714838","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":230.492278,"event_ids":{"":"$_fuMdQ7WyJ71MawgkGLqcLItBrIVzryulvrOoxri454"},"time":"2026-03-06T19:14:39.277082833Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2337,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.865228,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.299636425Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2336,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":82.929616,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:39.304451069Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1377749082071629829","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:39.304529851Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1377749082071629829","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1671.325527,"time":"2026-03-06T19:14:39.304601719Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2333,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":116.486991,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:39.308136085Z","message":"Request completed"} +{"level":"debug","transaction_id":"761","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.319376424Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"761","time":"2026-03-06T19:14:39.319486425Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_fuMdQ7WyJ71MawgkGLqcLItBrIVzryulvrOoxri454","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479319,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.319677304Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2339,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.245026,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.324292548Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2329,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479113579031_77?ts=1762854766625&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":219.696554,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wann","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.333421836Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437741840072704151","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":236.971402,"event_ids":{"":"$PaBP_xN44wp7-qMWbmjsDNDExxV6t58nLm7eFNrAVos"},"time":"2026-03-06T19:14:39.333501386Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"762","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.383198323Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"762","time":"2026-03-06T19:14:39.383293448Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$PaBP_xN44wp7-qMWbmjsDNDExxV6t58nLm7eFNrAVos","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479383,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.383482441Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2321,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":397.233616,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:39.397748065Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2325,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":337.953278,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:39.406343968Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2342,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":39.449615,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<86610 bytes>","time":"2026-03-06T19:14:39.40936618Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2343,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_395335060477313025:matrix.theocloud.dev/displayname?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":24.043397,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:39.422312066Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2345,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":21.990664,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.431661217Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2332,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479185406945_23?ts=1762635146373&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":262.584781,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"uff","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.448121005Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436820685971263579","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":286.557009,"event_ids":{"":"$ezynl5PxeMWNyEpWJdhirJ2jdH0UNdrcX5SZXVMIX-0"},"time":"2026-03-06T19:14:39.448206282Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"763","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.45506905Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"763","time":"2026-03-06T19:14:39.455160124Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ezynl5PxeMWNyEpWJdhirJ2jdH0UNdrcX5SZXVMIX-0","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479455,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.455379149Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2348,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":24.730924,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.473552097Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2335,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479209219234_61?ts=1754562915473&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":267.379381,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 3 day streak!** 🔥 Here are yesterday's results:\n👑 5/6: lagopodus\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 3 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 5/6: \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$YogxpOSUvfS8B0KMYhXUY-5hU4LBDw-gwC2QFBsfo5o"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.476833076Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2340,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":174.130017,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:39.482451045Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272184170478567484","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:39.482566424Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272184170478567484","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":312.014991,"time":"2026-03-06T19:14:39.482697169Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2350,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":11.378556,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.488405444Z","message":"Request completed"} +{"level":"debug","transaction_id":"764","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.496264581Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"764","time":"2026-03-06T19:14:39.496695298Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2341,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":182.89403,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:39.507528875Z","message":"Request completed"} +{"level":"debug","transaction_id":"765","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.519122476Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"765","time":"2026-03-06T19:14:39.519256503Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FuzD_V2dfQNyb4xDw9YS0c0EbxEAoO2yhqVBW-vIZAo","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479519,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.51946589Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2338,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479299876403_95?ts=1763913221793&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":267.473598,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Jungs das gibt es for free?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.567514061Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442181322817802375","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":290.150113,"event_ids":{"":"$-zdzWAphNhZNsL3XZh4YaWu6BJV4BODtYINBqX9Dxjw"},"time":"2026-03-06T19:14:39.567609396Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2353,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.300755,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.582524832Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2352,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":96.244338,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:39.603952358Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386417360088338443","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:39.604036169Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386417360088338443","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":299.342118,"time":"2026-03-06T19:14:39.604107827Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"766","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.604803595Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"766","time":"2026-03-06T19:14:39.60487665Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-zdzWAphNhZNsL3XZh4YaWu6BJV4BODtYINBqX9Dxjw","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479605,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.605145194Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2355,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":14.517266,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.619125373Z","message":"Request completed"} +{"level":"debug","transaction_id":"767","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:39.633488078Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"767","time":"2026-03-06T19:14:39.63361135Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2347,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479431825835_78?ts=1762854781006&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":220.380799,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/your-suggestion-will-be-considered-printer-shredder-suggestion-shredder-suggestion-printer-shredder-no-suggestion-shredded-suggestion-gif-5960810054433229927","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":498,"mimetype":"video/mp4","size":86610,"w":332},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/cLmSQcczbqcBQNqlWEMcMrkV"},"time":"2026-03-06T19:14:39.652453526Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437741900391125012","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":318.767477,"event_ids":{"video_https://tenor.com/view/your-suggestion-will-be-considered-printer-shredder-suggestion-shredder-suggestion-printer-shredder-no-suggestion-shredded-suggestion-gif-5960810054433229927":"$T_R0YzlDDA-eiFkrWHCFH17A-g8tkJVhwpnhsUMDHpk"},"time":"2026-03-06T19:14:39.652573864Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2357,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.560708,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.667777749Z","message":"Request completed"} +{"level":"debug","transaction_id":"768","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.689851037Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"768","time":"2026-03-06T19:14:39.689956918Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2349,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479473778735_96?ts=1762635228707&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":223.928854,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wow merkt man kein timeout","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.697854956Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436821031305089206","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":249.373425,"event_ids":{"":"$xyJ0brtIYDCrL0mshIRsKGgJbTpMmQ1S6fcTl3xxu8U"},"time":"2026-03-06T19:14:39.697937161Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2351,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479488588640_62?ts=1754562915473&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":212.148635,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24609,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/dBgrIERIuLImDinxFhubFyZi"},"time":"2026-03-06T19:14:39.700959653Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1402963295618469938","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":903.607099,"event_ids":{"":"$FuzD_V2dfQNyb4xDw9YS0c0EbxEAoO2yhqVBW-vIZAo","1402963295182393404":"$yQasEfI6YTTCjGIysQ8oeRv5OQ49mLVdnDXXhTAsR3M"},"time":"2026-03-06T19:14:39.701073985Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2359,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.48989,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.715016449Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":17.556381,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.719247841Z","message":"Request completed"} +{"level":"debug","transaction_id":"769","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.73126259Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"769","time":"2026-03-06T19:14:39.731343677Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2344,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":338.880573,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:39.745612304Z","message":"Request completed"} +{"level":"debug","transaction_id":"770","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.770583695Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"770","time":"2026-03-06T19:14:39.770680007Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$CKu_VN2l6h_7R7ciC3xu-H3qbNS7Khn5CL0dT1OtV7s","action":"matrix read receipt","discord_thread_id":"","message_id":"1436820643843805356","time":"2026-03-06T19:14:39.782538939Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$xyJ0brtIYDCrL0mshIRsKGgJbTpMmQ1S6fcTl3xxu8U","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479782,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.782763132Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$T_R0YzlDDA-eiFkrWHCFH17A-g8tkJVhwpnhsUMDHpk","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479782,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:39.782765577Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$yQasEfI6YTTCjGIysQ8oeRv5OQ49mLVdnDXXhTAsR3M","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479782,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:39.782829971Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2346,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_395335060477313025:matrix.theocloud.dev/displayname?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":360.485848,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"STM_SRB"},"time":"2026-03-06T19:14:39.782948074Z","message":"Request completed"} +{"level":"debug","transaction_id":"771","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.800689747Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"771","time":"2026-03-06T19:14:39.800978125Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2354,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479582705165_97?ts=1763913309836&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":229.853431,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich hols mal","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.812693531Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442181692096774164","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":244.836964,"event_ids":{"":"$E-Mfsj9HlVwwykiqUmmlUP7jB3WbwxldSg9TZr5WFTA"},"time":"2026-03-06T19:14:39.812789913Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2356,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479619287826_24?ts=1750620239136&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":211.118113,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ne warr am putzen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.830561268Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386426512487743679","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":226.333243,"event_ids":{"":"$LOv0_IQaOj07asjfarq1l8wStvTNRCrNFt3HhbXsBVw"},"time":"2026-03-06T19:14:39.830647663Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2365,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.517689,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.831041224Z","message":"Request completed"} +{"level":"debug","transaction_id":"772","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.844751323Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"772","time":"2026-03-06T19:14:39.844990882Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$E-Mfsj9HlVwwykiqUmmlUP7jB3WbwxldSg9TZr5WFTA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479844,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.845034603Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2366,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.248654,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.846506249Z","message":"Request completed"} +{"level":"debug","transaction_id":"773","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.871518428Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"773","time":"2026-03-06T19:14:39.871621375Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LOv0_IQaOj07asjfarq1l8wStvTNRCrNFt3HhbXsBVw","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479871,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.871782501Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2358,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479667937409_93?ts=1762854814290&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":225.958399,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"nur Looser antworten 20 Tage zu spät","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.894032629Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437742039994466334","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":241.159979,"event_ids":{"":"$egZC3aLl4J4a8kI0E4b9c7Fu3ArpUC_ijARNugPzzwQ"},"time":"2026-03-06T19:14:39.894119652Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2369,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":27.861742,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:39.922672622Z","message":"Request completed"} +{"level":"debug","transaction_id":"774","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.9447237Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"774","time":"2026-03-06T19:14:39.944826997Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$egZC3aLl4J4a8kI0E4b9c7Fu3ArpUC_ijARNugPzzwQ","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479945,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.945051749Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2362,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479719429011_79?ts=1754568571424&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":242.586647,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"schön gemalt josh!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.9621742Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1402987018396499999","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":260.845081,"event_ids":{"":"$aAb-szLU1Dg4zzLVjHAf2xKkofSsybcdklfW6607aBI"},"time":"2026-03-06T19:14:39.962290487Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2361,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479715165423_98?ts=1762635232465&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":249.931465,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"da merkste nicht mal high ping","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:39.965230915Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436821047067410694","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":267.129136,"event_ids":{"":"$mhSfMoi7ORcL5cKi3ib37kyOhogZ8WX3Nm2V1DtuwOE"},"time":"2026-03-06T19:14:39.965359704Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"775","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:39.990768936Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"775","time":"2026-03-06T19:14:39.990875794Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$aAb-szLU1Dg4zzLVjHAf2xKkofSsybcdklfW6607aBI","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824479991,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:39.991109347Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2368,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":157.520278,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:40.004352481Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2363,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479745844250_62?ts=1755517473238&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":268.106509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://excalidraw.com/#room=0eff37637a547d4a5c4a,WTdUSEImQ0tbXuHFuaNKMA","com.beeper.linkpreviews":[{"og:title":"Excalidraw — Collaborative whiteboarding made easy","og:description":"Excalidraw is a virtual collaborative whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them.","og:image":"mxc://matrix.theocloud.dev/pExrAXaGGbdpubvOsXjVSbPm","matrix:image:size":74022,"og:image:width":1200,"og:image:height":675,"og:image:type":"image/png","matched_url":"https://excalidraw.com/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.014101548Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1406967001070698606","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1768.335125,"event_ids":{"":"$64ojwEiwZpNPjyfSgSpvqEXCQ5V7gqw9yedYdXTcZFc"},"time":"2026-03-06T19:14:40.014208197Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"776","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.020081649Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"776","time":"2026-03-06T19:14:40.020176565Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mhSfMoi7ORcL5cKi3ib37kyOhogZ8WX3Nm2V1DtuwOE","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480020,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.020403273Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2372,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":18.640472,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.033625245Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2364,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":236.991167,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<16473 bytes>","time":"2026-03-06T19:14:40.042019932Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2374,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":10.400835,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.052687354Z","message":"Request completed"} +{"level":"debug","transaction_id":"777","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.060315174Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"777","time":"2026-03-06T19:14:40.060431042Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$64ojwEiwZpNPjyfSgSpvqEXCQ5V7gqw9yedYdXTcZFc","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480060,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.060586999Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2367,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479831199975_63?ts=1763913498405&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":249.344442,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gabs vor jahren auch schonmal gratis also domi müsste es sich noch holen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.080670412Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442182483012485222","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":267.59701,"event_ids":{"":"$TRpMnUIgoyhyVFTbfmKuY3eeXPbDal4SdZEXnLH2DUc"},"time":"2026-03-06T19:14:40.080751778Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.406852,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.101745863Z","message":"Request completed"} +{"level":"debug","transaction_id":"778","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.112801469Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"778","time":"2026-03-06T19:14:40.112882626Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$TRpMnUIgoyhyVFTbfmKuY3eeXPbDal4SdZEXnLH2DUc","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480113,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.113086775Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2371,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":122.836068,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:40.127384876Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386426610114101290","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:40.127461702Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386426610114101290","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":296.583839,"time":"2026-03-06T19:14:40.127543767Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2379,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":5.318626,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.133387606Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2370,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824479922882987_80?ts=1762854829495&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":236.767112,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"also willst du garnicht mit uns spielen? 🙁","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.159848592Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437742103768858674","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":265.438675,"event_ids":{"":"$EwqIQhqogRiNdEyAa-mAPx1Klt3KZruFucglX7i42R8"},"time":"2026-03-06T19:14:40.159950002Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2376,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":96.943319,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26246 bytes>","time":"2026-03-06T19:14:40.171124689Z","message":"Request completed"} +{"level":"debug","transaction_id":"779","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.180247202Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"779","time":"2026-03-06T19:14:40.180377877Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$EwqIQhqogRiNdEyAa-mAPx1Klt3KZruFucglX7i42R8","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480180,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.180604026Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2381,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_395335060477313025:matrix.theocloud.dev/avatar_url?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":12.505601,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:40.184002968Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2373,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480033821292_94?ts=1755519340182&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":206.746967,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://geotastic.net/join/iho9qWXCVA","com.beeper.linkpreviews":[{"og:title":"Geotastic - the free crowdfunded multiplayer geo quiz app","og:description":"Geotastic is a free to play multiplayer focused geo quiz app that can be played with friends simultaneously. A free alternative to geoguessr.","matched_url":"https://geotastic.net/join/iho9qWXCVA"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.240780998Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1406974831601254481","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":226.21514,"event_ids":{"":"$yYVHgdrOzNW3BOzXAzDyA6MHYPl5K8UX6AU6ym5yPkw"},"time":"2026-03-06T19:14:40.240900219Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2375,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480052810416_4?ts=1723450405635&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":191.193801,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hast du ernsthaft bis 4 Uhr gezockt?😂","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.244124905Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2385,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.045628,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.261664733Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2386,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":18.18978,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.262468757Z","message":"Request completed"} +{"level":"debug","transaction_id":"780","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.282974994Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"780","time":"2026-03-06T19:14:40.283088348Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yYVHgdrOzNW3BOzXAzDyA6MHYPl5K8UX6AU6ym5yPkw","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480283,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.283303113Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2378,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480101965517_64?ts=1763913510852&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":196.597634,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich habs schon","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.298727629Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442182535219118211","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":217.75948,"event_ids":{"":"$2jLUhqCSljC3TUzrr5I1PqvNTM1kaH-ZAp-PtpmpMSE"},"time":"2026-03-06T19:14:40.298828901Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2382,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":136.606861,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22590 bytes>","time":"2026-03-06T19:14:40.311322279Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2389,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.334285,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.320155644Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2390,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":16.152273,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.328110604Z","message":"Request completed"} +{"level":"debug","transaction_id":"781","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.335245058Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"781","time":"2026-03-06T19:14:40.335353453Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8FCse8kLB6k_4CFQeh2mnCwWhvf7ynAc_-Aqw0svrYE","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480335,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.33558959Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2380,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480133552503_25?ts=1750620274023&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":205.544074,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"im bad","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.33924604Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386426658814165223","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":211.613573,"event_ids":{"":"$R-sxA9qMA5zWdhCVCmpOWw8yFn7OZIXJmP0XxUqCKxU"},"time":"2026-03-06T19:14:40.339372454Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2393,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.497423,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.347591977Z","message":"Request completed"} +{"level":"debug","transaction_id":"782","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:40.356594361Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"782","time":"2026-03-06T19:14:40.356722172Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2394,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":71.813876,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:40.419701913Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2387,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480261905130_65?ts=1756272986920&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":176.610604,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Also ich würd eine Mulltüte mitnehmen, aber hab leider nichts wirklich gefunden, was man als Schale verwenden kann, um die Tüte dadran zu befestigen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.438666383Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410135855128907857","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":197.460325,"event_ids":{"":"$8q56wTa_yj9eeVYcRfug_EGoYP2jXumcCP4rHi71DeI"},"time":"2026-03-06T19:14:40.438743629Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2388,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480262631070_5?ts=1723450405635&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":178.473645,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":431,"mimetype":"image/png","size":16473,"w":749},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/YVPTRNtSGOwZfdZZAMLnMATX"},"time":"2026-03-06T19:14:40.441246355Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272467971155034152","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":958.373533,"event_ids":{"":"$8FCse8kLB6k_4CFQeh2mnCwWhvf7ynAc_-Aqw0svrYE","1272467970697859112":"$8b61udkPssZXSzzeIqlp8owf6X3PkokNUcCVebydu0Y"},"time":"2026-03-06T19:14:40.441325836Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2397,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.044295,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.456947238Z","message":"Request completed"} +{"level":"debug","transaction_id":"783","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.480060825Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"783","time":"2026-03-06T19:14:40.480131156Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2391,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480320382003_99?ts=1763913520322&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":168.567852,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Domı","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003ca href=\"https://matrix.to/#/@discord_316966695430520833:matrix.theocloud.dev\"\u003eDomı\u003c/a\u003e","m.mentions":{"user_ids":["@discord_316966695430520833:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.489140035Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442182574939308202","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":190.029601,"event_ids":{"":"$ZgWZ1dQmW74WIb8Vd_1mqOSwMOgaQBAKwLLsxuKIqzo"},"time":"2026-03-06T19:14:40.489225941Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2383,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_395335060477313025:matrix.theocloud.dev/avatar_url?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":309.024067,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OREIiJkqoLflZAUngSqnStaJ"},"time":"2026-03-06T19:14:40.493171818Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2392,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480328304207_63?ts=1754580144123&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":166.590339,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$FuzD_V2dfQNyb4xDw9YS0c0EbxEAoO2yhqVBW-vIZAo"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.495093527Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$mhSfMoi7ORcL5cKi3ib37kyOhogZ8WX3Nm2V1DtuwOE","action":"matrix read receipt","discord_thread_id":"","message_id":"1436821047067410694","time":"2026-03-06T19:14:40.497944836Z","message":"Marked message as read on Discord"} +{"level":"debug","message_checkpoint":{"event_id":"$R-sxA9qMA5zWdhCVCmpOWw8yFn7OZIXJmP0XxUqCKxU","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480498,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.498131803Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$8q56wTa_yj9eeVYcRfug_EGoYP2jXumcCP4rHi71DeI","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480498,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.498131803Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$2jLUhqCSljC3TUzrr5I1PqvNTM1kaH-ZAp-PtpmpMSE","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480498,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.498152407Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2399,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.696274,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.507650321Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2401,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":17.90671,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.513156613Z","message":"Request completed"} +{"level":"debug","transaction_id":"784","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.521256705Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"784","time":"2026-03-06T19:14:40.521391291Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8b61udkPssZXSzzeIqlp8owf6X3PkokNUcCVebydu0Y","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480521,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:40.521597745Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2396,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":93.660036,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.532993273Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2395,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":130.592606,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:40.550467659Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386426720189415486","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:40.550558314Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386426720189415486","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":210.886656,"time":"2026-03-06T19:14:40.55065302Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"785","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.557646392Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"785","time":"2026-03-06T19:14:40.557910745Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ZgWZ1dQmW74WIb8Vd_1mqOSwMOgaQBAKwLLsxuKIqzo","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480557,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.557948041Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$tR-hj4cM3O4FbHziVKZZPJsM0Dj38iLlGY4Xoqwnbwo","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480557,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.558013413Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2405,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.928566,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.56511546Z","message":"Request completed"} +{"level":"debug","transaction_id":"786","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:40.576401336Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"786","time":"2026-03-06T19:14:40.576511896Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2398,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":121.065637,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:40.57830733Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2384,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":405.387974,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<157880 bytes>","time":"2026-03-06T19:14:40.601172977Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2408,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.435402,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.608091409Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2406,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":60.237106,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:40.625681035Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2407,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":57.261968,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:40.635785739Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272475554909650946","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:40.635893366Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272475554909650946","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":194.321895,"time":"2026-03-06T19:14:40.635999177Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2411,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.319398,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.645897357Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2402,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480507916979_66?ts=1763913540516&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":157.901267,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber pitah ich code erstmal noch mit domi","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"aber \u003ca href=\"https://matrix.to/#/@discord_122672447207112706:matrix.theocloud.dev\"\u003epitah\u003c/a\u003e ich code erstmal noch mit domi","m.mentions":{"user_ids":["@discord_122672447207112706:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.666006122Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442182659639087254","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":176.61682,"event_ids":{"":"$YAWK0EKuRaj4kzOhq2D8eH7vSnjxWACdjQMS4VUDyxg"},"time":"2026-03-06T19:14:40.666119685Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2403,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480513290012_64?ts=1754580144123&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":161.554854,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 unfinished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22590,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/CubxixpsWGCUfmJElbdAinDR"},"time":"2026-03-06T19:14:40.675103142Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1403035557814210630","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":712.522182,"event_ids":{"":"$tR-hj4cM3O4FbHziVKZZPJsM0Dj38iLlGY4Xoqwnbwo","1403035629616496750":"$QCrZHyM6cLT2hAuIFdKTvDl_yuQBs399eKA8-Li8MZc"},"time":"2026-03-06T19:14:40.675242268Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2400,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824480493503010_1?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":199.168316,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:40.692758559Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2413,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":25.71975,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.692881621Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","old_name":"","new_name":"STM_SRB","time":"2026-03-06T19:14:40.693159314Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","action":"initial backfill","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:40.69313878Z","message":"Fetching messages for backfill"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","time":"2026-03-06T19:14:40.699963693Z","message":"Updating bridge info..."} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2414,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":23.925294,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.700499872Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2404,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480533234997_1?ts=1756273364689&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":178.776621,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich hab ne kleine \"Papp-Geschenk-Tüte\", die bringe ich mal mit. ^^","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Ich hab ne kleine \u0026quot;Papp-Geschenk-Tüte\u0026quot;, die bringe ich mal mit. ^^","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.712193906Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410137439607197768","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":273.216305,"event_ids":{"":"$C-AWj_C2dhzaJ3pfDhnvKlAju1jOel__CFbhW_eNqfE"},"time":"2026-03-06T19:14:40.712292453Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"787","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.713191113Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"787","time":"2026-03-06T19:14:40.713275622Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YAWK0EKuRaj4kzOhq2D8eH7vSnjxWACdjQMS4VUDyxg","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480713,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.71348927Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2419,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":13.320659,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.727210264Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2410,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":116.229622,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:40.742056487Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386426757149753465","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:40.742137434Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1386426757149753465","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":191.356393,"time":"2026-03-06T19:14:40.742240103Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"788","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.744115227Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"788","event_id":"$KJo0-EyNDIN7Dmjqpmo4ass0MVBvowQU_oKbDqDelFg","time":"2026-03-06T19:14:40.74420232Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"788","time":"2026-03-06T19:14:40.744250441Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$C-AWj_C2dhzaJ3pfDhnvKlAju1jOel__CFbhW_eNqfE","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480744,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.744401999Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$QCrZHyM6cLT2hAuIFdKTvDl_yuQBs399eKA8-Li8MZc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480744,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:40.744424767Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2421,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.491488,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.751200162Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2412,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":114.753576,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:40.760937216Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2415,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":109.399261,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:40.802709993Z","message":"Request completed"} +{"level":"info","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:40.803500188Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"248879308200869889","time":"2026-03-06T19:14:40.803553129Z","message":"Found other user ID"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"","old_name":"","new_name":"Mojoooo","time":"2026-03-06T19:14:40.803832358Z","message":"Updating portal name"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:40.803882016Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2409,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480608324193_67?ts=1762641380934&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":203.130746,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://arc.net/","com.beeper.linkpreviews":[{"og:title":"Arc from The Browser Company","og:description":"Experience a calmer, more personal internet in this browser designed for you. Let go of the clicks, the clutter, the distractions.","og:image":"mxc://matrix.theocloud.dev/JxcRYbbgrUncNiihJlwGSkWn","matrix:image:size":157880,"og:image:width":1024,"og:image:height":512,"og:image:type":"image/png","matched_url":"https://arc.net/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.811641138Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1436846835615404072","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":845.914413,"event_ids":{"":"$M1feyr8IaP1xG_jfiVJrr5sE3YDn_8XdpzzFyXP_hvo"},"time":"2026-03-06T19:14:40.811738987Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2424,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":15.984512,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"discord_248879308200869889","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:14:40.820229218Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2425,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":17.398468,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.829819115Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2422,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":83.362148,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:40.834875413Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2423,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":83.977109,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:40.845092842Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272475655207911434","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:40.84520005Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272475655207911434","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":209.079906,"time":"2026-03-06T19:14:40.845320668Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"789","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.8512428Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"789","time":"2026-03-06T19:14:40.851358808Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$M1feyr8IaP1xG_jfiVJrr5sE3YDn_8XdpzzFyXP_hvo","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480851,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.851591103Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2429,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.14983,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.864108716Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2418,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480700691379_65?ts=1754666708642&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":190.569202,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Nobody got yesterday's Wordle... but today is a new day Maja 🌞\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Nobody got yesterday's Wordle... but today is a new day \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e 🌞\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$FuzD_V2dfQNyb4xDw9YS0c0EbxEAoO2yhqVBW-vIZAo"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.891541626Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1403398635722637443","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":215.998409,"event_ids":{"":"$fK-GMX9qA1WVVz6234RmOu2T0juJ-e9aGD90oUpK9RU"},"time":"2026-03-06T19:14:40.891698073Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2416,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480693242147_95?ts=1763913545492&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":211.617066,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo ich auch","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$2jLUhqCSljC3TUzrr5I1PqvNTM1kaH-ZAp-PtpmpMSE"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.905115743Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442182680509681695","message_type":19,"author_id":"316966695430520833","action":"discord message create","handling_time":238.701882,"event_ids":{"":"$3-Dq3eHxasP6JTPnXHsA89kq2H6nFs_DD4y0MCbuIUI"},"time":"2026-03-06T19:14:40.905215059Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2431,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":18.085366,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.924039635Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2420,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480727401911_2?ts=1756273396696&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":206.370796,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich bringe auch noch Band mit, zum festmachen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:40.933907713Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410137573854281728","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":220.416558,"event_ids":{"":"$S8Jwtt7T6uer09ROppHy95-dHKJE-3jXrbzDkw7ZFag"},"time":"2026-03-06T19:14:40.934000114Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2417,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1126124397879631883?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":238.918393,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_395335060477313025:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1126124397879631883","displayname":"STM_SRB","external_url":"https://discord.com/channels/@me/1126124397879631883"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:40.939228364Z","message":"Request completed"} +{"level":"debug","transaction_id":"790","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.941777186Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"790","time":"2026-03-06T19:14:40.941898083Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fK-GMX9qA1WVVz6234RmOu2T0juJ-e9aGD90oUpK9RU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480942,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.942088264Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2433,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.045417,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.953662937Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2428,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":139.692491,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:40.974736433Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680100052729866","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:40.974825202Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680100052729866","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":232.471676,"time":"2026-03-06T19:14:40.974917743Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"791","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:40.980287493Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"791","time":"2026-03-06T19:14:40.980431368Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3-Dq3eHxasP6JTPnXHsA89kq2H6nFs_DD4y0MCbuIUI","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480980,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.980609326Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$S8Jwtt7T6uer09ROppHy95-dHKJE-3jXrbzDkw7ZFag","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824480980,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:40.980635447Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2436,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":9.951889,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:40.985403366Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2430,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":135.714626,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:41.000203843Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","action":"initial backfill","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:41.069171368Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","action":"initial backfill","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","limit":100,"before_id":"1281222830914142310","time":"2026-03-06T19:14:41.069258671Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2427,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480830000914_100?ts=1762682024806&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":252.822723,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.082971075Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437017308370440203","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":270.946293,"event_ids":{"":"$tNI-mY2AmKE7VdBPG7kbm9u8nCWIl732vF94O-QO9Ps"},"time":"2026-03-06T19:14:41.083071787Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2439,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.066934,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.107831905Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2438,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":114.89333,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:41.115279741Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272476039574192210","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:41.115411533Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272476039574192210","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":269.904247,"time":"2026-03-06T19:14:41.115519789Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2441,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.800411,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.13592692Z","message":"Request completed"} +{"level":"debug","transaction_id":"792","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.136053264Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"792","time":"2026-03-06T19:14:41.13611717Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tNI-mY2AmKE7VdBPG7kbm9u8nCWIl732vF94O-QO9Ps","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481136,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.136323414Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2432,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480924288692_96?ts=1763913558700&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":239.955201,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber kuss fürs reinhämmern","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.164459915Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442182735908307096","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":258.943557,"event_ids":{"":"$uZ1donAm2tXpNSsGrAOGk9Jiwe0wakntRCVDJEjtv9E"},"time":"2026-03-06T19:14:41.164595758Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2445,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.922426,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.185251178Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2435,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480953823225_68?ts=1756273429516&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":237.841635,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Top danke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.191818862Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410137711511076906","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":257.535537,"event_ids":{"":"$ipBVId5oU9OURoHSRHR40zJqFyFv5WaubJBn9fkbsQc"},"time":"2026-03-06T19:14:41.191891917Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"793","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.210853384Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"793","time":"2026-03-06T19:14:41.2110055Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uZ1donAm2tXpNSsGrAOGk9Jiwe0wakntRCVDJEjtv9E","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481211,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.211249878Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2447,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.903158,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.220367432Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2437,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824480985595153_26?ts=1762601632897&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":256.337324,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"moin","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.242115185Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680120264953876","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":267.103853,"event_ids":{"":"$JP2XxIK83ypCFMLkyW6utFVpSMktFGz_iykK39pKZwo"},"time":"2026-03-06T19:14:41.242239643Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2449,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.214503,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.260239103Z","message":"Request completed"} +{"level":"debug","transaction_id":"794","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.261948003Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"794","time":"2026-03-06T19:14:41.262045293Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ipBVId5oU9OURoHSRHR40zJqFyFv5WaubJBn9fkbsQc","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481262,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.26227682Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2434,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1126124397879631883?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":325.975194,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_395335060477313025:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1126124397879631883","displayname":"STM_SRB","external_url":"https://discord.com/channels/@me/1126124397879631883"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:41.265561919Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","old_avatar_id":"","new_avatar_id":"f6879063695b8a2ab6f8da35e4e1502d","time":"2026-03-06T19:14:41.265779338Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","time":"2026-03-06T19:14:41.266146359Z","message":"Updating bridge info..."} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2442,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":151.899026,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:41.288243742Z","message":"Request completed"} +{"level":"debug","transaction_id":"795","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.294724612Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"795","time":"2026-03-06T19:14:41.294844112Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$JP2XxIK83ypCFMLkyW6utFVpSMktFGz_iykK39pKZwo","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481295,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.295056991Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2443,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":150.513566,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24154 bytes>","time":"2026-03-06T19:14:41.309218201Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2453,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":11.141023,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.321010084Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2440,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481108152970_69?ts=1762682144924&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":266.636538,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"moin","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.374978292Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437017812181979166","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":291.649834,"event_ids":{"":"$YXRzODQm18rqocdKcM03ifzbW5sQe4GxVtn41RYdE-Y"},"time":"2026-03-06T19:14:41.375079982Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2450,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":119.641625,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:41.380315076Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2452,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":110.903872,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:41.39940624Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272476105504325675","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:41.39949473Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272476105504325675","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":283.805226,"time":"2026-03-06T19:14:41.399558706Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2455,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.398894,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.400162352Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","action":"initial backfill","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:41.40039332Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","action":"initial backfill","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:41.400493544Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","action":"initial backfill","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:41.400572117Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2457,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.767374,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.416848778Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2444,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":259.737733,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<4217341 bytes>","time":"2026-03-06T19:14:41.423748213Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2451,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1126124397879631883?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":160.745243,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_395335060477313025:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1126124397879631883","displayname":"STM_SRB","external_url":"https://discord.com/channels/@me/1126124397879631883"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:41.427157212Z","message":"Request completed"} +{"level":"debug","transaction_id":"796","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.431407321Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"796","time":"2026-03-06T19:14:41.431508313Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YXRzODQm18rqocdKcM03ifzbW5sQe4GxVtn41RYdE-Y","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481431,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.431730202Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2461,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":23.056317,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.447205005Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2446,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481185493181_70?ts=1763913568259&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":261.542735,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"true","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.447224072Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1442182776001532037","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":282.307668,"event_ids":{"":"$3rBY_HpGwh8_TX_yBA6phc9_3RCmQf7qCMrGiJYQGUQ"},"time":"2026-03-06T19:14:41.447352372Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2448,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481221663913_71?ts=1756273433929&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":263.701978,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dann klappt das","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.485621723Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410137730020671518","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":293.567214,"event_ids":{"":"$Dhmt8iuzvvpza1TWWLG9Lg51Fual4Su97Duvcd97uIk"},"time":"2026-03-06T19:14:41.485735147Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2464,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":16.763182,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.503266245Z","message":"Request completed"} +{"level":"debug","transaction_id":"797","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.508893642Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"797","time":"2026-03-06T19:14:41.508956012Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3rBY_HpGwh8_TX_yBA6phc9_3RCmQf7qCMrGiJYQGUQ","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481509,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.509166167Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2459,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":144.555535,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.545722567Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2456,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":179.146644,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:41.559719299Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680240708718723","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:41.55983419Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680240708718723","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":317.272155,"time":"2026-03-06T19:14:41.559928337Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"798","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.562624946Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"798","time":"2026-03-06T19:14:41.562788586Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Dhmt8iuzvvpza1TWWLG9Lg51Fual4Su97Duvcd97uIk","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481562,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.562933648Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2467,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.976759,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.576555258Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2460,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":177.580014,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:41.594809711Z","message":"Request completed"} +{"level":"debug","transaction_id":"799","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:41.601699368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"799","time":"2026-03-06T19:14:41.601790931Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2462,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F1126124397879631883?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":178.074986,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_395335060477313025:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1126124397879631883","displayname":"STM_SRB","external_url":"https://discord.com/channels/@me/1126124397879631883"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:41.605664381Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2454,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481321188391_66?ts=1755008947806&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":311.690643,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$fK-GMX9qA1WVVz6234RmOu2T0juJ-e9aGD90oUpK9RU"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.633230061Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2470,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":21.305512,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.654830377Z","message":"Request completed"} +{"level":"debug","transaction_id":"800","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.677577921Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"800","time":"2026-03-06T19:14:41.67769805Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HW-Tr7nA8yU2KDs-GE1EANK7CrZfK5Yq3pwWMb8SX5M","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481677,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.677903316Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2468,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":145.105473,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:41.722058342Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2458,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481400301268_72?ts=1762682160970&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":334.859267,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"warum das fragezeichen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.735377045Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437017879483519139","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":360.041301,"event_ids":{"":"$3qey6XvmXWHrU-iyjsdgq3ng4bTXVg2-CuQKB2ktPU0"},"time":"2026-03-06T19:14:41.735522666Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2469,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":143.545756,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:41.738551165Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272476227046871040","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:41.738655021Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272476227046871040","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":338.975418,"time":"2026-03-06T19:14:41.738754616Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":29.108635,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.765767564Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2474,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":29.212001,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.768615521Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2463,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481447383801_97?ts=1762854830133&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":329.037916,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExejltN3kyZmNqcGM5dGs1dXkwMG1sM3g3eHp3cHZndGR3bDZqcnF4aSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/iD6IDcXwzOLGUopZGt/giphy.gif","info":{"h":480,"mimetype":"image/gif","size":4217341,"w":478},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/olMszePHviEbKSivjKlnXgrG"},"time":"2026-03-06T19:14:41.776600094Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437742106444562525","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":1616.361225,"event_ids":{"video_https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExejltN3kyZmNqcGM5dGs1dXkwMG1sM3g3eHp3cHZndGR3bDZqcnF4aSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/iD6IDcXwzOLGUopZGt/giphy.gif":"$IuQ80FgXnP926sD93dvVtZdJz6xcsy0I4QYJsTCZuT0"},"time":"2026-03-06T19:14:41.776675314Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2477,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":15.550652,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.792750551Z","message":"Request completed"} +{"level":"debug","transaction_id":"801","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.797405116Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"801","time":"2026-03-06T19:14:41.797470349Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3qey6XvmXWHrU-iyjsdgq3ng4bTXVg2-CuQKB2ktPU0","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481797,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.797634059Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2465,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481503540655_98?ts=1756279453904&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":317.591683,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich würde nochmal in zwischen den vorlesungen zum edeka laufen dann können wir vlt noch frischhaltefolie oder so kaufen um das ei einzuwickeln","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.82128599Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410162979626025052","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":335.266796,"event_ids":{"":"$K_NLEd6ATQHQCPnSTPCWmoCovI3uuPEVJoBBXUe4jWk"},"time":"2026-03-06T19:14:41.821387681Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2466,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481545971206_2?ts=1701344340289&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":285.24642,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wie kannst du um die Uhrzeit schon zocken? Hast du keine Vorlesung oder so?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:41.831372256Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1179748412850184284","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":430.65382,"event_ids":{"":"$GvjSkLIGbeSw-22MCM2qH17ggYZF9pbr60vIXOwx-Xk"},"time":"2026-03-06T19:14:41.831440492Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2479,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":18.694599,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.8405959Z","message":"Request completed"} +{"level":"debug","transaction_id":"802","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.854840572Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"802","time":"2026-03-06T19:14:41.855002536Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$IuQ80FgXnP926sD93dvVtZdJz6xcsy0I4QYJsTCZuT0","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481855,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:41.855172392Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$K_NLEd6ATQHQCPnSTPCWmoCovI3uuPEVJoBBXUe4jWk","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481855,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.855223936Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2480,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.074968,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.85899835Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2472,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":168.782547,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:41.891104613Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680306898768065","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:41.89124325Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680306898768065","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":331.147291,"time":"2026-03-06T19:14:41.891319378Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"803","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:41.897684589Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"803","time":"2026-03-06T19:14:41.897767003Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$GvjSkLIGbeSw-22MCM2qH17ggYZF9pbr60vIXOwx-Xk","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824481897,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:41.897999927Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2483,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":14.203534,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:41.906083466Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2476,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":167.90002,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:41.93691001Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2471,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481655032570_67?ts=1755008947806&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":317.101251,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24154,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/GEeENCXUqGXsOpidEqRzJlzz"},"time":"2026-03-06T19:14:41.972411095Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1404834090817159272","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":1080.420522,"event_ids":{"":"$HW-Tr7nA8yU2KDs-GE1EANK7CrZfK5Yq3pwWMb8SX5M","1404834401069699082":"$rRvW7nc_okCl-MyguZwJ8iWMg2HmbuSNAokPqrlF82E"},"time":"2026-03-06T19:14:41.972562583Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2426,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":1157.831205,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"Mojoooo","initial_state":[{"state_key":"fi.mau.discord://discord/dm/918855935571660820","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_248879308200869889:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"918855935571660820","displayname":"Mojoooo","external_url":"https://discord.com/channels/@me/918855935571660820"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/918855935571660820","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_248879308200869889:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"918855935571660820","displayname":"Mojoooo","external_url":"https://discord.com/channels/@me/918855935571660820"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:41.978584449Z","message":"Request completed"} +{"level":"info","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","time":"2026-03-06T19:14:41.979204648Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"804","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.020283752Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"804","time":"2026-03-06T19:14:42.020399271Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$rRvW7nc_okCl-MyguZwJ8iWMg2HmbuSNAokPqrlF82E","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482020,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:42.020613757Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2482,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":184.39466,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:42.043746551Z","message":"Request completed"} +{"level":"debug","transaction_id":"805","content":{"pdu":7,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.05897516Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"805","time":"2026-03-06T19:14:42.059415306Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2485,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":134.006634,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:42.071122889Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272476632497524776","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:42.071245392Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272476632497524776","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":332.333631,"time":"2026-03-06T19:14:42.071324034Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2475,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481766079550_101?ts=1762682213374&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":328.020944,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wegen dem","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$M1feyr8IaP1xG_jfiVJrr5sE3YDn_8XdpzzFyXP_hvo"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.09440277Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437018099281821848","message_type":19,"author_id":"122672447207112706","action":"discord message create","handling_time":358.570703,"event_ids":{"":"$41K36mwEgFTEtnbDWEagVWjTDhIcFILGh4LcsXxFeFM"},"time":"2026-03-06T19:14:42.094552931Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2478,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481792926274_81?ts=1762854833484&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":308.014567,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das ist voll gemein","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.101091072Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437742120499937402","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":324.242689,"event_ids":{"":"$4BEsbEe7pYY_zk2vnefDQwY6dQ71ly5xOBF6kGddSbg"},"time":"2026-03-06T19:14:42.101191365Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2488,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":25.497582,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.121089905Z","message":"Request completed"} +{"level":"debug","transaction_id":"806","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.15360684Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"806","time":"2026-03-06T19:14:42.153758398Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$41K36mwEgFTEtnbDWEagVWjTDhIcFILGh4LcsXxFeFM","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482153,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.153931048Z","message":"Sent message checkpoint"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:42.153995932Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2481,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481840778538_3?ts=1756280588988&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":320.606213,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich hab zu Hause auch noch ein kleines bisschen watte gefunden, die hab ich auch noch mitgebracht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.161519267Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410167740513128448","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":339.908091,"event_ids":{"":"$mBWcDsDsoQgzg39tfZytKGF9EsjWzZrp2gBpzK-H-u4"},"time":"2026-03-06T19:14:42.161589668Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2490,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.013489,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.171307166Z","message":"Request completed"} +{"level":"debug","transaction_id":"807","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.18239008Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"807","time":"2026-03-06T19:14:42.182494564Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4BEsbEe7pYY_zk2vnefDQwY6dQ71ly5xOBF6kGddSbg","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482182,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.182693265Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$mBWcDsDsoQgzg39tfZytKGF9EsjWzZrp2gBpzK-H-u4","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482182,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.182709958Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2487,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":142.267993,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:42.186179231Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1179750001467981834","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:42.186238387Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1179750001467981834","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":354.620147,"time":"2026-03-06T19:14:42.186317029Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2484,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824481906295018_27?ts=1762601687190&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":281.763597,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"kurz call?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.188236154Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680347986301078","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":296.790222,"event_ids":{"":"$SXl93WkMU_Mk_3jlt6A3J7ChakONYM93lcGXNsRG5y8"},"time":"2026-03-06T19:14:42.188354188Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2492,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.266809,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.199051223Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2493,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.537517,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.200665487Z","message":"Request completed"} +{"level":"debug","transaction_id":"808","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.208935365Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"808","time":"2026-03-06T19:14:42.209007443Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SXl93WkMU_Mk_3jlt6A3J7ChakONYM93lcGXNsRG5y8","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482209,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.209217877Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2486,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":270.266658,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:42.249751932Z","message":"Request completed"} +{"level":"debug","transaction_id":"809","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.272320192Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"809","time":"2026-03-06T19:14:42.272424536Z","message":"Finished dispatching events from transaction"} +{"level":"warn","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1444653823120506891","message_type":0,"author_id":"122672447207112706","action":"discord message create","embed_type":"link","embed_index":0,"computed_embed_type":"link preview","error":"unexpected status 404 downloading https://images-ext-1.discordapp.net/external/csR312Z0nFWXWl6OyWPCUZyP7NFVMwarzqD3rgiEFRE/https/www.ram-koenig.de/media/image/product/548/lg/fujitsu-esprimo-q556-2-mini-pc-i5-7500t-16gb-1012v300-poc08.png: {\"message\":\"Invalid resource \\\"https://images-ext-1.discordapp.net/external/csR312Z0nFWXWl6OyWPCUZyP7NFVMwarzqD3rgiEFRE/https/www.ram-koenig.de/media/image/product/548/lg/fujitsu-esprimo-q556-2-mini-pc-i5-7500t-16gb-1012v300-poc08.png\\\"\"}","time":"2026-03-06T19:14:42.274114927Z","message":"Failed to reupload image in URL preview"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2498,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.585222,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.287945574Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2495,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":92.515322,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:42.291996773Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2494,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":101.077839,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24191 bytes>","time":"2026-03-06T19:14:42.296302127Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2496,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":100.2053,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:42.301259948Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2501,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":11.3106,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.308154563Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2489,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482121351045_73?ts=1762682267024&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":202.283001,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"achso ja wollte max nur zeigen von welchem browser zen inspiriert ist","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"achso ja wollte max nur zeigen von welchem browser zen inspiriert ist","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.323802994Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437018324306366516","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":228.793225,"event_ids":{"":"$F1BQVPa68D33nnnTJnfeXNH2_6lEOMsO-sS8BHNBD2c"},"time":"2026-03-06T19:14:42.323922005Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2504,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.744394,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.340297982Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2491,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482171497975_74?ts=1756298431443&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":191.905493,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://excalidraw.com/#room=048ab42a5552f5ed7586,WVZXVO1gZbkkP38c9xZV4w","com.beeper.linkpreviews":[{"og:title":"Excalidraw — Collaborative whiteboarding made easy","og:description":"Excalidraw is a virtual collaborative whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them.","og:image":"mxc://matrix.theocloud.dev/pExrAXaGGbdpubvOsXjVSbPm","matrix:image:size":74022,"og:image:width":1200,"og:image:height":675,"og:image:type":"image/png","matched_url":"https://excalidraw.com/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.363603985Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410242577193631864","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":201.861363,"event_ids":{"":"$uf7rw3KVbzgH1GCIk06UocLg4IpY1wOYqWTmmxrPaHM"},"time":"2026-03-06T19:14:42.363761898Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"810","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.367451174Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"810","time":"2026-03-06T19:14:42.367537988Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$F1BQVPa68D33nnnTJnfeXNH2_6lEOMsO-sS8BHNBD2c","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482367,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.367692479Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"811","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.406822147Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"811","time":"2026-03-06T19:14:42.406933056Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uf7rw3KVbzgH1GCIk06UocLg4IpY1wOYqWTmmxrPaHM","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482407,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.407147891Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2500,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":117.663762,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:42.409829134Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1179750012721311814","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:42.409927332Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1179750012721311814","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":223.564696,"time":"2026-03-06T19:14:42.410067715Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2506,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":7.868774,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.418565838Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2502,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":120.151263,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:42.42163708Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680427711762442","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:42.421763495Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680427711762442","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":233.064775,"time":"2026-03-06T19:14:42.421865953Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2508,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.108403,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.430585686Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2499,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482288179476_102?ts=1764502711802&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":194.896207,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://www.ram-koenig.de/fujitsu-esprimo-q556-2-mini-pc-i5-7500t-16gb-1012v300-poc08","com.beeper.linkpreviews":[{"og:title":"Fujitsu Esprimo Q556/2 - Intel i5 7500T, 16GB RAM, DVD","og:description":"Fujitsu Esprimo Q556/2 Mini PC mit DVD-Laufwerk gebraucht kaufen: Intel i5 7500t, 16GB RAM, 256GB SSD, Gigabit-LAN, 1012V300-POC08","matched_url":"https://www.ram-koenig.de/fujitsu-esprimo-q556-2-mini-pc-i5-7500t-16gb-1012v300-poc08"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.483259298Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1444653823120506891","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":1035.60849,"event_ids":{"":"$quRoNu2uAto2bPMhjmUzP76iZol7TwH54t1V5NFZeto"},"time":"2026-03-06T19:14:42.48336923Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2511,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.42661,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.497297027Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2503,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482308381271_68?ts=1755095722387&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":208.878901,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 1 day streak!** 🔥 Here are yesterday's results:\n👑 4/6: lagopodus\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 1 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 4/6: \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$fK-GMX9qA1WVVz6234RmOu2T0juJ-e9aGD90oUpK9RU"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.517498753Z","message":"Request completed"} +{"level":"debug","transaction_id":"812","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.528816197Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"812","time":"2026-03-06T19:14:42.528913487Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$quRoNu2uAto2bPMhjmUzP76iZol7TwH54t1V5NFZeto","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482529,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.529131535Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2513,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":19.62832,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.537361114Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2509,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":108.886759,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:42.5398776Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2505,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482340481318_75?ts=1762682312581&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":259.199878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"und es kommen auch noch sicherheitsupdates und fehlerbehebungen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.599838061Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437018515386142770","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":275.684599,"event_ids":{"":"$PLr0aygJIHzqXX1o-LkRIPZ0sYN5kwDRHWNV3BzCjEM"},"time":"2026-03-06T19:14:42.599943244Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"813","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.605688745Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"813","time":"2026-03-06T19:14:42.605789876Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Gw-JZzo00bRQNVtq1OX4AxuLdXWP6Qxz-1xOrMC5FOA","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482605,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.605961129Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2516,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.34567,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.621103972Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2497,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":373.799521,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:42.624003961Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2518,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_248879308200869889:matrix.theocloud.dev/displayname?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":13.792094,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:14:42.63831652Z","message":"Request completed"} +{"level":"debug","transaction_id":"814","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.64918446Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"814","time":"2026-03-06T19:14:42.64929062Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$PLr0aygJIHzqXX1o-LkRIPZ0sYN5kwDRHWNV3BzCjEM","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482649,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.649490927Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2507,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482418798902_3?ts=1701446473819&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":233.401625,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wo bleiben wir denn?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.652379532Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180176791923605594","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":242.172621,"event_ids":{"":"$ElBFMSh78cDTZekhq97bTXx3gKwRIX8Bw99dpzjnK0g"},"time":"2026-03-06T19:14:42.652482479Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2520,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.85503,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.675219338Z","message":"Request completed"} +{"level":"debug","transaction_id":"815","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.69718856Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"815","time":"2026-03-06T19:14:42.697518076Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2515,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":160.633426,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:42.70071238Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680444958474291","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:42.70077007Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1436680444958474291","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":278.715962,"time":"2026-03-06T19:14:42.700835861Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2522,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.014815,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.709279717Z","message":"Request completed"} +{"level":"debug","transaction_id":"816","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.718143953Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"816","time":"2026-03-06T19:14:42.718237891Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ElBFMSh78cDTZekhq97bTXx3gKwRIX8Bw99dpzjnK0g","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482718,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.718472072Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2512,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482497632829_103?ts=1764502717804&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":269.763445,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das ist nen krasser deal für 90€","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.76757954Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1444653848294588557","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":284.347899,"event_ids":{"":"$iAeedQd3QKctSmMoJLYxhpsB6PugKfeK0rDaBBKNs9g"},"time":"2026-03-06T19:14:42.767980993Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2524,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":22.16052,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.791349434Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2521,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":118.336832,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:42.793962232Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2514,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482537606400_69?ts=1755095722387&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":270.905156,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":24191,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/LxyqZQNAqyuipgBTBfNjgZqW"},"time":"2026-03-06T19:14:42.808795115Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1405198049789083659","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":835.867327,"event_ids":{"":"$Gw-JZzo00bRQNVtq1OX4AxuLdXWP6Qxz-1xOrMC5FOA","1405198049491550379":"$v8HrJgbW5T8Jvt89AgiiWFPh1H4hHpguxwacU1Lg1vE"},"time":"2026-03-06T19:14:42.808953517Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"817","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.819553752Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"817","time":"2026-03-06T19:14:42.81965195Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$iAeedQd3QKctSmMoJLYxhpsB6PugKfeK0rDaBBKNs9g","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482819,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.819902963Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2523,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":124.189471,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:42.833899904Z","message":"Request completed"} +{"level":"debug","transaction_id":"818","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.848490994Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"818","time":"2026-03-06T19:14:42.848628234Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$v8HrJgbW5T8Jvt89AgiiWFPh1H4hHpguxwacU1Lg1vE","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482848,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:42.848802071Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2517,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482621293384_76?ts=1762682331852&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":241.624569,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"also kann man in der theorie noch nutzen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:42.863118331Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437018596214837361","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":262.795495,"event_ids":{"":"$E3P_5-gjG98PPlvj3D3CgohyMXUb-a5guHujG2PNQIs"},"time":"2026-03-06T19:14:42.863195786Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2528,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.417048,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.883481601Z","message":"Request completed"} +{"level":"debug","transaction_id":"819","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:42.892651537Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"819","time":"2026-03-06T19:14:42.892715861Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$E3P_5-gjG98PPlvj3D3CgohyMXUb-a5guHujG2PNQIs","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824482892,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:42.892955211Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2526,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":109.313356,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:42.903445653Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180176972865863770","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:42.903510956Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180176972865863770","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":250.624928,"time":"2026-03-06T19:14:42.90357109Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2531,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":8.432472,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.912397821Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2527,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":79.891269,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:42.913986941Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439345834448654517","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:42.914052593Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439345834448654517","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":213.102539,"time":"2026-03-06T19:14:42.914095895Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2533,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":5.236142,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:42.919685159Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2519,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_248879308200869889:matrix.theocloud.dev/displayname?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":502.732956,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Swipsi"},"time":"2026-03-06T19:14:43.141273878Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2525,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482791710938_104?ts=1764502738086&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":388.786057,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"die cpu verbraucht auch nur 7W im idle","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.180705963Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1444653933363724319","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":412.138156,"event_ids":{"":"$SDt_vXod33yOjMXiWlLuwPQPL48Tbwm2WnWFK7Jw2bM"},"time":"2026-03-06T19:14:43.180838034Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"820","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.185101553Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"820","time":"2026-03-06T19:14:43.185183757Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SDt_vXod33yOjMXiWlLuwPQPL48Tbwm2WnWFK7Jw2bM","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483185,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.185392236Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2536,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.007977,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.196752704Z","message":"Request completed"} +{"level":"debug","transaction_id":"821","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.206471948Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"821","time":"2026-03-06T19:14:43.206718421Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2530,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482883786882_77?ts=1762682352136&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":359.329608,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber kommen halt keine neuen features","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.243320778Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437018681292095669","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":379.740371,"event_ids":{"":"$fWRCufDJXLuRflSM7OplrlFmGsM0CN30S2_p1xfCVYc"},"time":"2026-03-06T19:14:43.243501041Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2538,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.716456,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.259074252Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2532,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482912558318_4?ts=1701446558409&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":350.447912,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Also bist du ungefähr wann da?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.263139488Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180177146719784960","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":359.495483,"event_ids":{"":"$WPny5HePD7FyCOMesPmLp-meZf3J6Ho0dyDsid2JjB8"},"time":"2026-03-06T19:14:43.26321848Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"822","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.275158987Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"822","time":"2026-03-06T19:14:43.27524147Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fWRCufDJXLuRflSM7OplrlFmGsM0CN30S2_p1xfCVYc","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483275,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.275445619Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2540,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.76723,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.27656987Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2534,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824482919949023_28?ts=1763243313940&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":359.852447,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yo, sorry","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.279915592Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439371525630464113","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":365.765989,"event_ids":{"":"$KZ5xqNSl-eeA7HK62QObHGI_ge6WJk5SRsqsWrxMtx0"},"time":"2026-03-06T19:14:43.279975097Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2542,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":8.850198,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.289306927Z","message":"Request completed"} +{"level":"debug","transaction_id":"823","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.29931909Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"823","time":"2026-03-06T19:14:43.299463594Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$WPny5HePD7FyCOMesPmLp-meZf3J6Ho0dyDsid2JjB8","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483299,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.299686111Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$KZ5xqNSl-eeA7HK62QObHGI_ge6WJk5SRsqsWrxMtx0","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483299,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.299693584Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2537,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483197049603_105?ts=1764502744006&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":141.770156,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"perfekt für server","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.338988708Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1444653958194004099","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":157.759487,"event_ids":{"":"$d74vCqXfAjrmPpPu9W-tkdSuF0kQDln3j0QLqNk7n-w"},"time":"2026-03-06T19:14:43.339085719Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2544,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.021038,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.354666402Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2541,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":81.306482,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:43.35820021Z","message":"Request completed"} +{"level":"debug","transaction_id":"824","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.363259371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"824","time":"2026-03-06T19:14:43.363323626Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$d74vCqXfAjrmPpPu9W-tkdSuF0kQDln3j0QLqNk7n-w","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483363,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.363513178Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2539,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483259299493_106?ts=1762683983728&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":142.886305,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ah","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.402358169Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437025524684685323","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":158.457002,"event_ids":{"":"$Rqr3sSxundENQQpLRv_pe9yXQnWY8SxBWkgEC6usSAo"},"time":"2026-03-06T19:14:43.402431223Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2510,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":949.202128,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1970719 bytes>","time":"2026-03-06T19:14:43.405044929Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2547,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.87004,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.421203348Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2546,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":65.86206,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:43.424206284Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180178424531263658","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:43.424269212Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180178424531263658","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":160.820882,"time":"2026-03-06T19:14:43.424358052Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2543,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483289581197_29?ts=1763243321067&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":138.394472,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ne heute nur noch arc","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.428113398Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439371555523137568","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":147.980318,"event_ids":{"":"$wcpEasn0lG0fxLbUkcTIW__cKfJlV2RVSKMvmVLOQoY"},"time":"2026-03-06T19:14:43.428173882Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"825","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.431896961Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"825","time":"2026-03-06T19:14:43.43196841Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Rqr3sSxundENQQpLRv_pe9yXQnWY8SxBWkgEC6usSAo","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483432,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.432143155Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2549,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.886307,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.434631983Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2550,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.120487,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.436739682Z","message":"Request completed"} +{"level":"debug","transaction_id":"826","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.445550349Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"826","time":"2026-03-06T19:14:43.445665379Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$wcpEasn0lG0fxLbUkcTIW__cKfJlV2RVSKMvmVLOQoY","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483445,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.445848436Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2545,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483354868875_78?ts=1764502765493&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":119.844167,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"für max pc upgrade kappa","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.474877799Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1444654048317014027","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":135.600713,"event_ids":{"":"$JeHm3XKYGxMM-X8cc9r2W5Zs8RrsBE_Omnk7qNJbBTA"},"time":"2026-03-06T19:14:43.474991083Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2548,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":54.550133,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:43.476078038Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2553,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":12.758709,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.4885344Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2551,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":62.870787,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:43.497758742Z","message":"Request completed"} +{"level":"debug","transaction_id":"827","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.502877549Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"827","time":"2026-03-06T19:14:43.502972325Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$JeHm3XKYGxMM-X8cc9r2W5Zs8RrsBE_Omnk7qNJbBTA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483503,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.503138619Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2552,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":78.825407,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:43.515823574Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2535,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":469.222375,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<446975 bytes>","time":"2026-03-06T19:14:43.524496163Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2558,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":5.083607,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.530006715Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2554,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":64.590443,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:43.54085028Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272480735642779731","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:43.540922637Z","message":"Failed to send part of message to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2560,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.23859,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.54932319Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2556,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":55.448375,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:43.553418668Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180178438842232852","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:43.553558632Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180178438842232852","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":129.120471,"time":"2026-03-06T19:14:43.553642652Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2562,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.705133,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.560943121Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2557,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":47.365602,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:43.563367694Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439373772825034922","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:43.563465752Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439373772825034922","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":135.140313,"time":"2026-03-06T19:14:43.563558782Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2564,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":3.317785,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.567412816Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2555,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483488744904_107?ts=1764502836510&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":107.876072,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"glaub die cpu verbraucht sogar noch weniger weils die T version ist","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.596797467Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1444654346183770263","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":121.463738,"event_ids":{"":"$lhDOBqShkuQ1QVjzaehFAKfmrleKyr07_mzB5uSZZ70"},"time":"2026-03-06T19:14:43.596909215Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2566,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":11.999733,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.609637891Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2561,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":62.097424,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:43.611865998Z","message":"Request completed"} +{"level":"debug","transaction_id":"828","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.627402961Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"828","time":"2026-03-06T19:14:43.627494524Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lhDOBqShkuQ1QVjzaehFAKfmrleKyr07_mzB5uSZZ70","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483627,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.627717809Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2563,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":73.080394,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:43.634395565Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2559,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824483530292021_82?ts=1762854956779&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":123.872387,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"homophobic slur/gg.pilk","url":"mxc://matrix.theocloud.dev/EAALXpmsdqIVgBYNEIVrQZMA","info":{"mimetype":"image/png","w":160,"h":147,"size":446975},"m.mentions":{}},"time":"2026-03-06T19:14:43.65434928Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437742637636391044","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":1552.777275,"event_ids":{"1041503155227209798":"$eCc-f2eQJShNjU-JV_kgoydoQOgTQFOo91QXPvziAJA"},"time":"2026-03-06T19:14:43.654434627Z","message":"Finished handling Discord message"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:43.672874512Z","message":"Unhandled event"} +{"level":"debug","transaction_id":"829","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.674392533Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"829","time":"2026-03-06T19:14:43.674491709Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eCc-f2eQJShNjU-JV_kgoydoQOgTQFOo91QXPvziAJA","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483674,"status":"SUCCESS","event_type":"m.sticker","reported_by":"BRIDGE","retry_num":0},"time":"2026-03-06T19:14:43.67469509Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2568,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":81.203535,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:43.693307345Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272480735642779731","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":1,"attachment_id":"1272480735089135637","time":"2026-03-06T19:14:43.693442979Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272480735642779731","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1621.937285,"time":"2026-03-06T19:14:43.69353985Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2571,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":5.947205,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.700032593Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2569,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":71.215956,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:43.705800374Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180178468756004874","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:43.705909048Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180178468756004874","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":152.12748,"time":"2026-03-06T19:14:43.706012415Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2565,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483567648464_30?ts=1763288989233&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":141.057276,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo willste gleich noch n stündchen mitlernen?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.708867705Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439563101694332950","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":145.204508,"event_ids":{"":"$PhAttc3Oj1D-UAdTmP_h1S84owTNm3Rj9tjXWWf056E"},"time":"2026-03-06T19:14:43.708973656Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2573,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":6.339439,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.712937761Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2574,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.323167,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.716001669Z","message":"Request completed"} +{"level":"debug","transaction_id":"830","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.719473317Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"830","time":"2026-03-06T19:14:43.719572912Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$PhAttc3Oj1D-UAdTmP_h1S84owTNm3Rj9tjXWWf056E","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483719,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.719784464Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2567,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483609875076_108?ts=1764502846617&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":142.84866,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hab ja nur die normale und die verbraucht nur 7W","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.752902602Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1444654388575604817","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":155.743211,"event_ids":{"":"$FQqktK7EWW_qUMTuQ2YlRRr1Xana4FI4eww4PmvOZ-I"},"time":"2026-03-06T19:14:43.753019448Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2570,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":118.491252,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22516 bytes>","time":"2026-03-06T19:14:43.763477902Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2577,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":18.636351,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.772441314Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2579,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":14.686145,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.778892711Z","message":"Request completed"} +{"level":"debug","transaction_id":"831","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.781036239Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"831","time":"2026-03-06T19:14:43.781122494Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FQqktK7EWW_qUMTuQ2YlRRr1Xana4FI4eww4PmvOZ-I","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483781,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.781287112Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2576,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.042277,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:43.805440371Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2578,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":89.552195,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15927 bytes>","time":"2026-03-06T19:14:43.844027434Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2583,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_248879308200869889:matrix.theocloud.dev/avatar_url?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":11.388823,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:14:43.855790681Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2572,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483700276971_6?ts=1723453475236&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":161.641598,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ja das klingt ja wirklich alles sehr nice","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.862092965Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272480845994790913","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":168.415805,"event_ids":{"":"$wpUf2Hky-MK1eFIMLqMlThVMldbi_iSXSNe0IibY24w"},"time":"2026-03-06T19:14:43.86217482Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2585,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":10.369825,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.873290211Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2575,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483713173897_5?ts=1701450282826&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":173.770539,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Weißt du schon, was di essen willst und hast du Bargeld?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.887109683Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180192768056893550","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":180.964777,"event_ids":{"":"$nNiFv66COmQAJAk8S_boGaN1YI8NFvyjfnUwcKB4oe8"},"time":"2026-03-06T19:14:43.887233932Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"832","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.895644333Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"832","time":"2026-03-06T19:14:43.895726468Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$wpUf2Hky-MK1eFIMLqMlThVMldbi_iSXSNe0IibY24w","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483895,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.895971614Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2588,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.135506,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.8990944Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2586,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":28.276464,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23962 bytes>","time":"2026-03-06T19:14:43.90120168Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2590,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.725947,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.908351778Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2582,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":104.889827,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:43.910526316Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439563439633727588","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:43.910606774Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439563439633727588","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":201.302485,"time":"2026-03-06T19:14:43.910661879Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"833","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:43.917196947Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"833","time":"2026-03-06T19:14:43.917294097Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nNiFv66COmQAJAk8S_boGaN1YI8NFvyjfnUwcKB4oe8","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824483917,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:43.917455992Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2592,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":8.60596,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:43.919673203Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2580,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483772687788_109?ts=1765462754540&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":209.199336,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"habt ihr lust auf eu5","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.982055304Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448680534216544377","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":228.685109,"event_ids":{"":"$W9RpJbh-px7t3orjtP_34E-aSO7Ym76zGSGqRMhhpmA"},"time":"2026-03-06T19:14:43.982160068Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2581,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483779103774_70?ts=1755590884251&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":212.276027,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$Gw-JZzo00bRQNVtq1OX4AxuLdXWP6Qxz-1xOrMC5FOA"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:43.991605181Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2594,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.02258,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.003912989Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2595,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":13.731052,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.0055811Z","message":"Request completed"} +{"level":"debug","transaction_id":"834","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.01117651Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"834","time":"2026-03-06T19:14:44.011251242Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$W9RpJbh-px7t3orjtP_34E-aSO7Ym76zGSGqRMhhpmA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484011,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.011479765Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2589,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":123.755471,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.023141113Z","message":"Request completed"} +{"level":"debug","transaction_id":"835","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.039047192Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"835","time":"2026-03-06T19:14:44.03917626Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$WKYdG7WeOpM5fx2w278QEa6g3aPazbSBEUjYtxEHbKo","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484039,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.039405063Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2591,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":138.97975,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.047691914Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2587,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483873586830_7?ts=1723453494604&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":202.926107,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"haha ich kann es halt einfach","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.076700185Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272480927230201891","message_type":19,"author_id":"204925152230768641","action":"discord message create","handling_time":214.328131,"event_ids":{"":"$ycs1LM4AzgEkcbbAJlGGbQsxkIwEDpPHm--VHh_vyNE"},"time":"2026-03-06T19:14:44.076819475Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2600,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.960348,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.095566596Z","message":"Request completed"} +{"level":"debug","transaction_id":"836","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.108940755Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"836","time":"2026-03-06T19:14:44.109025124Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ycs1LM4AzgEkcbbAJlGGbQsxkIwEDpPHm--VHh_vyNE","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484109,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.109222149Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2598,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":89.192857,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:44.112533299Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180193627918577674","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:44.112629542Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180193627918577674","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":225.082926,"time":"2026-03-06T19:14:44.112722991Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2603,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.149122,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.122463747Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2593,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824483919831466_31?ts=1763289090289&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":204.978841,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ah schade","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.12495446Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439563525554049065","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":214.234193,"event_ids":{"":"$PNfWD8ieVsE6SLz1ws0fmEI9xL06kXpLB-Xevz03F18"},"time":"2026-03-06T19:14:44.125043858Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2605,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":14.924167,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.140625031Z","message":"Request completed"} +{"level":"debug","transaction_id":"837","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.165952128Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"837","time":"2026-03-06T19:14:44.166040828Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$PNfWD8ieVsE6SLz1ws0fmEI9xL06kXpLB-Xevz03F18","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484166,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.166221719Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2584,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@discord_248879308200869889:matrix.theocloud.dev/avatar_url?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":327.828806,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iQovgpTQPXTDrzhnkTDvIJKB"},"time":"2026-03-06T19:14:44.183806456Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2596,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484004119582_110?ts=1765462762376&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":203.306189,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bzw. domi hast du mal bock auf neh runde eu5?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.207581169Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448680567083110494","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":225.112259,"event_ids":{"":"$5KdDn7rqD2jJIcPVVmN77hq6oi_jDrpjijesZUJ8Qyg"},"time":"2026-03-06T19:14:44.207670358Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2597,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484005813815_71?ts=1755590884251&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":205.46131,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22516,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/oCRKXXGmTORRqFvuGUtEJkmh"},"time":"2026-03-06T19:14:44.211553795Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1407274909175910421","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":1402.299049,"event_ids":{"":"$WKYdG7WeOpM5fx2w278QEa6g3aPazbSBEUjYtxEHbKo","1407274980902961182":"$uUdbhPo30hqp1ZsHAHJV5mqPZG7jomuY3GPQVeua6a4"},"time":"2026-03-06T19:14:44.21171562Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2608,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":17.695856,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.225888284Z","message":"Request completed"} +{"level":"debug","transaction_id":"838","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.229720388Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"838","time":"2026-03-06T19:14:44.229824662Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5KdDn7rqD2jJIcPVVmN77hq6oi_jDrpjijesZUJ8Qyg","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484229,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.230032932Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2601,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":137.28433,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.233292818Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2604,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":123.647145,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.246424554Z","message":"Request completed"} +{"level":"debug","transaction_id":"839","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.256873859Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"839","time":"2026-03-06T19:14:44.257100986Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uUdbhPo30hqp1ZsHAHJV5mqPZG7jomuY3GPQVeua6a4","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484257,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:44.257138701Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2610,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":88.724843,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:44.322234801Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482407244763236","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:44.322348714Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482407244763236","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":245.149367,"time":"2026-03-06T19:14:44.322408219Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2612,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":16.065459,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.338886096Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2599,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":300.723317,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:44.348637957Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2611,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.195319,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:44.353780091Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180193650802704456","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:44.353838759Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180193650802704456","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":240.916508,"time":"2026-03-06T19:14:44.353886042Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2615,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.465239,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.373727451Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2606,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484140880304_32?ts=1763289096987&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":238.439763,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"viel spaß beim training","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.379467644Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439563553647366144","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":254.157128,"event_ids":{"":"$lZ2Egn4xOhvxNcn9MlIjku_WMP3gwsqM1zcoHWd30Ns"},"time":"2026-03-06T19:14:44.379565703Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"840","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.391878888Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"840","time":"2026-03-06T19:14:44.39197499Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lZ2Egn4xOhvxNcn9MlIjku_WMP3gwsqM1zcoHWd30Ns","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484392,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.392188428Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2617,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.477247,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.395735366Z","message":"Request completed"} +{"level":"debug","transaction_id":"841","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.418931507Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"841","time":"2026-03-06T19:14:44.41921772Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2607,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824484184281243_1?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":252.120878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.436511843Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","action":"initial backfill","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:44.436947659Z","message":"Fetching messages for backfill"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","old_avatar_id":"","new_avatar_id":"02b941312a0a111b8cf1f5a3610bd276","time":"2026-03-06T19:14:44.436969939Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","time":"2026-03-06T19:14:44.43712408Z","message":"Updating bridge info..."} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2609,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484226087474_99?ts=1765462932172&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":223.929482,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo, aber hab das spiel nt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.450196101Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448681279259283711","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":242.413717,"event_ids":{"":"$_00N97mbuH4oHQJT8zSO8MavgBTQZKZ96_I_sSbIelQ"},"time":"2026-03-06T19:14:44.450363513Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2622,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.49618,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.471586261Z","message":"Request completed"} +{"level":"debug","transaction_id":"842","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.4806617Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"842","event_id":"$11wZIFXtZXOkm1mtfrCW82KT2WSR-wG4_57SlP5grv8","time":"2026-03-06T19:14:44.480755708Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"842","time":"2026-03-06T19:14:44.480814795Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2616,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":129.575494,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.503657254Z","message":"Request completed"} +{"level":"debug","transaction_id":"843","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.516845702Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"843","time":"2026-03-06T19:14:44.516937684Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_00N97mbuH4oHQJT8zSO8MavgBTQZKZ96_I_sSbIelQ","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484517,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.517172773Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2618,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":128.060616,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.524098818Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2602,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":436.203412,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<583275 bytes>","time":"2026-03-06T19:14:44.538299209Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2626,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":14.552466,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.553390648Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2613,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484339081515_8?ts=1723453858192&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":218.539407,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.557766893Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482452228800646","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":235.303219,"event_ids":{"":"$nhmhZxrGx7XcGqEWd_e2SbRJeEGPhBvC6K42iVIhrME"},"time":"2026-03-06T19:14:44.557894215Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2619,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":127.702116,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22542 bytes>","time":"2026-03-06T19:14:44.559288406Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2628,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.21206,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.577867835Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2629,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":20.746774,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.580723544Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2621,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/state/m.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F918855935571660820?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":146.497358,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_248879308200869889:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"918855935571660820","displayname":"Mojoooo","external_url":"https://discord.com/channels/@me/918855935571660820"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:44.583804425Z","message":"Request completed"} +{"level":"debug","transaction_id":"844","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.593780759Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"844","time":"2026-03-06T19:14:44.593892785Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nhmhZxrGx7XcGqEWd_e2SbRJeEGPhBvC6K42iVIhrME","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484594,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.594095049Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2620,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":159.796785,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:44.59692764Z","message":"Request completed"} +{"level":"info","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:44.597513127Z","message":"Creating Matrix room for channel"} +{"level":"info","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"","action":"update info","through_user_mxid":"@theo:matrix.theocloud.dev","through_user_dcid":"388409312340344833","other_user_id":"283971167717687296","time":"2026-03-06T19:14:44.597548607Z","message":"Found other user ID"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"","old_avatar_id":"","new_avatar_id":"6243128e29ae14305eea318deed2763f","time":"2026-03-06T19:14:44.597585833Z","message":"Updating avatar from puppet"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"","old_name":"","new_name":"FloJ","time":"2026-03-06T19:14:44.597613491Z","message":"Updating portal name"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"","time":"2026-03-06T19:14:44.597638285Z","message":"Not updating bridge info: no Matrix room created"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2624,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":102.691544,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:44.606581722Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180193666992705626","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:44.606656034Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180193666992705626","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":252.68227,"time":"2026-03-06T19:14:44.606699406Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2634,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.218826,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.617364873Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2625,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":96.757888,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:44.62105352Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439565509724213338","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:44.621171274Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439565509724213338","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":241.306997,"time":"2026-03-06T19:14:44.621268076Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2636,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":14.230633,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.636077771Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2614,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":328.871621,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.677885888Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2623,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484471808849_111?ts=1765463100969&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":208.65778,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gibt online fix","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.680620421Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448681987245346837","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":229.941081,"event_ids":{"":"$2bhjq9ub1hZjFvMPOutVc6BAasHs6EvuY7Yxi1ft1bU"},"time":"2026-03-06T19:14:44.680714708Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2639,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.415931,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.701821868Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2632,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/state/uk.half-shot.bridge/fi.mau.discord:%2F%2Fdiscord%2Fdm%2F918855935571660820?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":119.484619,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_248879308200869889:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"918855935571660820","displayname":"Mojoooo","external_url":"https://discord.com/channels/@me/918855935571660820"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"},"time":"2026-03-06T19:14:44.703703976Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2630,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":127.956761,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.706188543Z","message":"Request completed"} +{"level":"debug","transaction_id":"845","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.714274667Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"845","time":"2026-03-06T19:14:44.714395355Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2bhjq9ub1hZjFvMPOutVc6BAasHs6EvuY7Yxi1ft1bU","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484714,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.714573452Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"846","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.736423733Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"846","time":"2026-03-06T19:14:44.736617825Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2635,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":124.108035,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:44.741877503Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2627,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484553621617_33?ts=1762860839328&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":219.855585,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"will oder braucht das einer von euch?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.773681699Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2631,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484580902690_72?ts=1755677542511&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":210.737612,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 1 day streak!** 🔥 Here are yesterday's results:\n👑 4/6: Maja\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 1 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 4/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$Gw-JZzo00bRQNVtq1OX4AxuLdXWP6Qxz-1xOrMC5FOA"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.791917295Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","action":"initial backfill","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:44.803056572Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","action":"initial backfill","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","limit":100,"before_id":"1154902060802785290","time":"2026-03-06T19:14:44.803142897Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2643,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":34.301125,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.808228948Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2641,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":113.814966,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:44.820168267Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482514291785863","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:44.820275615Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482514291785863","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":262.063967,"time":"2026-03-06T19:14:44.820386454Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2644,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":36.763692,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.828945061Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2646,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":25.000515,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.845960863Z","message":"Request completed"} +{"level":"debug","transaction_id":"847","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.852374475Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"847","time":"2026-03-06T19:14:44.85247372Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ZqbO0hcOb7gx_g5VaQ3pBSNJkpZdDLbdvKjG2qy1UUs","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484852,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.852683527Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2637,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484636299311_34?ts=1763289828421&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":250.412258,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"danke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.886909082Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1439566621503914085","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":265.490636,"event_ids":{"":"$IplsTDgz1FMUQy07h5-o8i6rlyFQj6iU4y8RkXfJ3Zg"},"time":"2026-03-06T19:14:44.887019642Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2642,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":148.080402,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:44.890138168Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180193710621863946","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:44.890254455Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180193710621863946","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":283.49282,"time":"2026-03-06T19:14:44.89036285Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"848","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.893231271Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"848","time":"2026-03-06T19:14:44.893373958Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ef4wePMYQxKFEYbiXfbnKrvgXlvpU8AiXviKk2Kky2A","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484893,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.893613308Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2649,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.445816,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.900295742Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2650,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":12.160021,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.903103679Z","message":"Request completed"} +{"level":"debug","transaction_id":"849","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.927243109Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"849","time":"2026-03-06T19:14:44.927392991Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$IplsTDgz1FMUQy07h5-o8i6rlyFQj6iU4y8RkXfJ3Zg","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484927,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.927610619Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2640,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484702078957_112?ts=1765463123231&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":255.68381,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://datavaults.co/w3p9enciljmi/Europa.Universalis.V.v1.0.9.RexaGames.com.zip","com.beeper.linkpreviews":[{"og:title":"Data Vaults | Free Unlimited Files Upload Services","og:description":"Data Vaults – Best site to upload \u0026 share files for free with unlimited storage! Upload files, get a direct link, and earn money per download. Secure, fast, and easy file sharing. Start earning now at DataVaults.co!","matched_url":"https://datavaults.co/w3p9enciljmi/Europa.Universalis.V.v1.0.9.RexaGames.com.zip"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:44.95798689Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448682080618676314","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":277.05644,"event_ids":{"":"$MT4UM1Q2emQ8a-l0UMbBxUHNyw5llvECfmcfW4ihDtQ"},"time":"2026-03-06T19:14:44.958130905Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2653,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":26.186226,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:44.985072335Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2638,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484678192635_79?ts=1762855208674&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":310.202932,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/looney-tunes-gif-17525942418290310308","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":256,"mimetype":"video/mp4","size":23962,"w":498},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/oYXgHVAVVlhaDawbcvjPrQFH"},"time":"2026-03-06T19:14:44.988593571Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437743694160855092","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1333.917709,"event_ids":{"video_https://tenor.com/view/looney-tunes-gif-17525942418290310308":"$qMlATIq-QZRY5lErpsG102eve8wwOlXwIucDCupi6_8"},"time":"2026-03-06T19:14:44.988670956Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"850","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:44.998459903Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"850","time":"2026-03-06T19:14:44.998581289Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MT4UM1Q2emQ8a-l0UMbBxUHNyw5llvECfmcfW4ihDtQ","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824484998,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:44.998786346Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"851","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.026060993Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"851","time":"2026-03-06T19:14:45.026175534Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qMlATIq-QZRY5lErpsG102eve8wwOlXwIucDCupi6_8","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485026,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:45.026392674Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2651,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":135.521511,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:45.036201596Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2648,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484846203914_9?ts=1723453952017&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":214.223995,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich habe eigentlich nichts geändert","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.060597486Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482845759242262","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":240.091951,"event_ids":{"":"$rw6vbyXnlufre_vcqiTtCsUuf5DqXS97pycKohx5_JI"},"time":"2026-03-06T19:14:45.06071978Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2647,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484829226525_73?ts=1755677542511&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":239.395554,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22542,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/DjBfSljSrlUKqANcslFrOfvP"},"time":"2026-03-06T19:14:45.068879797Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1407638380262723685","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":856.912186,"event_ids":{"":"$ef4wePMYQxKFEYbiXfbnKrvgXlvpU8AiXviKk2Kky2A","1407638380040290355":"$Hi-G6J68AYao6DGo_P2KH26bvXMh5YNAxaOemxPG_c0"},"time":"2026-03-06T19:14:45.069037571Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2645,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484808472278_35?ts=1762860839328&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":266.950549,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":805,"mimetype":"image/png","size":583275,"w":982},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/qYyvSkmuwLdFdoccoQhjkzbR"},"time":"2026-03-06T19:14:45.075706665Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437767310835454053","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":1673.087356,"event_ids":{"":"$ZqbO0hcOb7gx_g5VaQ3pBSNJkpZdDLbdvKjG2qy1UUs","1437767310357172414":"$T412aq4GXlLjKLVS_dgY2-_pd7zmepA-Zs5IqF3qbqU"},"time":"2026-03-06T19:14:45.075813873Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2656,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":32.931309,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.094410763Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2657,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":28.913775,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.105443391Z","message":"Request completed"} +{"level":"debug","transaction_id":"852","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.116255527Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"852","time":"2026-03-06T19:14:45.116370836Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$rw6vbyXnlufre_vcqiTtCsUuf5DqXS97pycKohx5_JI","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485116,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.116569677Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2652,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484903388566_6?ts=1701450548225&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":231.075808,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ok","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.134641773Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180193881220972575","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":244.124432,"event_ids":{"":"$hPXu9O6yT6wy3Ojn7VHEUTH8WKDgmtEvPOwHBeosH7k"},"time":"2026-03-06T19:14:45.134723838Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2660,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":11.399928,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.146641646Z","message":"Request completed"} +{"level":"debug","transaction_id":"853","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.153321007Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"853","time":"2026-03-06T19:14:45.153517753Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Hi-G6J68AYao6DGo_P2KH26bvXMh5YNAxaOemxPG_c0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485153,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:45.153752213Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$T412aq4GXlLjKLVS_dgY2-_pd7zmepA-Zs5IqF3qbqU","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485153,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:45.153794677Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2655,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":121.926163,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:45.158380588Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454209643768451266","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:45.158451617Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454209643768451266","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":271.025981,"time":"2026-03-06T19:14:45.158502602Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2662,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.294188,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.171227647Z","message":"Request completed"} +{"level":"debug","transaction_id":"854","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.202108249Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"854","time":"2026-03-06T19:14:45.202428405Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hPXu9O6yT6wy3Ojn7VHEUTH8WKDgmtEvPOwHBeosH7k","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485202,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.202436018Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2654,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824484985384111_100?ts=1765463136681&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":242.214177,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber erstmal Klausuren schreiben","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.22778749Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448682137032196310","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":269.374283,"event_ids":{"":"$y58z80Hmo1_RVQB5snqRzEzxlsjH2nDCQdstjWf25Bk"},"time":"2026-03-06T19:14:45.227920051Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2658,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":150.747118,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:45.245502482Z","message":"Request completed"} +{"level":"debug","transaction_id":"855","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.258475327Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"855","time":"2026-03-06T19:14:45.25860705Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$y58z80Hmo1_RVQB5snqRzEzxlsjH2nDCQdstjWf25Bk","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485258,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.258812246Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2664,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":95.04368,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<28000 bytes>","time":"2026-03-06T19:14:45.280543376Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2666,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.404672,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.287410893Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2663,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":118.203154,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:45.28979831Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2665,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":95.113591,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:45.340864084Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482944061014060","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:45.34097192Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482944061014060","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":279.954333,"time":"2026-03-06T19:14:45.341060201Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2659,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485105643768_113?ts=1762860853184&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":252.652168,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"no","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.358463557Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437767368951726091","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":282.354671,"event_ids":{"":"$BLN1GUIMgIv0HpOdXOnSvQlE-iAKPPUHLwLnEKXVTD4"},"time":"2026-03-06T19:14:45.358580753Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2529,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":2506.29104,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<3724460 bytes>","time":"2026-03-06T19:14:45.378510582Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2670,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":43.433066,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.385094609Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2671,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":34.924956,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.394191908Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2672,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.798526,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.399654339Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2661,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485146861718_7?ts=1701459036604&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":258.07842,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://discord.com/invite/7vPnjG4e","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.405130738Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1180229484062982255","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":270.275318,"event_ids":{"":"$5_UecS7daOmqdUf0L630NgLZSR_ZThyXHlIyj4YG45w"},"time":"2026-03-06T19:14:45.405278105Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"856","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.415449159Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"856","time":"2026-03-06T19:14:45.41555511Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BLN1GUIMgIv0HpOdXOnSvQlE-iAKPPUHLwLnEKXVTD4","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485415,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.415800954Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2676,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":15.947355,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.422161835Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2669,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":150.87451,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:45.440831222Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454209664882446376","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:45.440939407Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454209664882446376","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":282.381281,"time":"2026-03-06T19:14:45.441039491Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2668,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":152.23357,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23293 bytes>","time":"2026-03-06T19:14:45.441909586Z","message":"Request completed"} +{"level":"debug","transaction_id":"857","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.463171655Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"857","time":"2026-03-06T19:14:45.463245409Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5_UecS7daOmqdUf0L630NgLZSR_ZThyXHlIyj4YG45w","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485463,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.463467786Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2679,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":23.450017,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.465941249Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2678,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.41377,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.466079676Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2673,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":144.692913,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:45.530181223Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2633,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":937.147846,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"state_key":"fi.mau.discord://discord/dm/1175002245591482429","type":"m.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_283971167717687296:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1175002245591482429","displayname":"FloJ","external_url":"https://discord.com/channels/@me/1175002245591482429"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"fi.mau.discord://discord/dm/1175002245591482429","type":"uk.half-shot.bridge","content":{"bridgebot":"@discordbot:matrix.theocloud.dev","creator":"@discord_283971167717687296:matrix.theocloud.dev","protocol":{"id":"discordgo","displayname":"Discord","avatar_url":"mxc://maunium.net/nIdEykemnwdisvHbpxflpDlC","external_url":"https://discord.com/"},"channel":{"id":"1175002245591482429","displayname":"FloJ","external_url":"https://discord.com/channels/@me/1175002245591482429"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}}],"preset":"private_chat","is_direct":true,"room_version":"11"},"time":"2026-03-06T19:14:45.53514072Z","message":"Request completed"} +{"level":"info","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","time":"2026-03-06T19:14:45.535598675Z","message":"Matrix room created"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2667,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485287697106_80?ts=1762868485328&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":280.388891,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://youtube.com/playlist?list=PLmEVawhqg6Ij4TuLJdzgPpIhZS3-sVT0i\u0026si=MUo67KIvNkz9XD0w","com.beeper.linkpreviews":[{"og:title":"[C++ DirectX 9] Tutorial","og:image":"mxc://matrix.theocloud.dev/LRYUZFGbhPylNBmJunmhvfFM","matrix:image:size":28000,"og:image:width":480,"og:image:height":270,"og:image:type":"image/jpeg","matched_url":"https://youtube.com/playlist?list=PLmEVawhqg6Ij4TuLJdzgPpIhZS3-sVT0i\u0026si=MUo67KIvNkz9XD0w"}],"format":"org.matrix.custom.html","formatted_body":"https://youtube.com/playlist?list=PLmEVawhqg6Ij4TuLJdzgPpIhZS3-sVT0i\u0026amp;si=MUo67KIvNkz9XD0w","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.568290077Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437799380483838053","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":579.473709,"event_ids":{"":"$T8zoZMS8V05HvQLuWoCwuJbP5tFdKs_jmV1n_UbV3io"},"time":"2026-03-06T19:14:45.568411881Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"858","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.578229394Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"858","time":"2026-03-06T19:14:45.578464972Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2684,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.974458,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.58795234Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2681,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":124.269579,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:45.590723051Z","message":"Request completed"} +{"level":"debug","transaction_id":"859","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.622892312Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"859","time":"2026-03-06T19:14:45.623065102Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$T8zoZMS8V05HvQLuWoCwuJbP5tFdKs_jmV1n_UbV3io","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485623,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.623173916Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2682,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":125.17229,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:45.655544602Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482985010004009","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:45.655649225Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272482985010004009","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":314.455766,"time":"2026-03-06T19:14:45.655754827Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2675,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485399842703_82?ts=1756367067548&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":272.219655,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Projektideen.png","info":{"h":2196,"mimetype":"image/png","size":3724460,"w":9555},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/nhEGtozCUgLbrgXinCjCkFYm"},"time":"2026-03-06T19:14:45.672264412Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410530457883512944","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":3308.143734,"event_ids":{"1410530457455558716":"$-Ui-BLoFe-bzi2rKHgTjMuI_jebZHQefSjgEz1GuGSU"},"time":"2026-03-06T19:14:45.672424002Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2674,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485394450464_81?ts=1762861117843&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":288.279876,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich auch nicht aber danke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.682883504Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437768479012032623","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":324.008925,"event_ids":{"":"$VsxxxuN2Mkz44cY5Qtm5Atf9gRcTmfb3mEBh--XhHqM"},"time":"2026-03-06T19:14:45.682974578Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2687,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":30.59816,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.686965992Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","action":"initial backfill","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:45.690558467Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","action":"initial backfill","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","limit":100,"count":100,"found_all":false,"time":"2026-03-06T19:14:45.690629147Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","action":"initial backfill","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:45.690699199Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2688,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":23.116381,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.696197388Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2677,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485422425699_8?ts=1702967591121&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":279.162322,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wann ist eigentlich euer erster Arbeitstag im Januar?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.701750195Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186556820307841106","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":296.057158,"event_ids":{"":"$KTMAjITbE-1Miq_ZbZAH2LZDYvbrsA7_dzvdj1N0CrI"},"time":"2026-03-06T19:14:45.701861035Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2689,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":21.660101,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.705220097Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2693,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.029486,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.715606544Z","message":"Request completed"} +{"level":"debug","transaction_id":"860","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.718541664Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"860","time":"2026-03-06T19:14:45.718633157Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-Ui-BLoFe-bzi2rKHgTjMuI_jebZHQefSjgEz1GuGSU","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485718,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:45.71877766Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2680,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485466182275_74?ts=1755760606709&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":281.849083,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus and alexx are playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus and alexx are playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$ef4wePMYQxKFEYbiXfbnKrvgXlvpU8AiXviKk2Kky2A"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.748261278Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2686,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":159.049683,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:45.749926945Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454209720738123797","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:45.750020743Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454209720738123797","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":308.793167,"time":"2026-03-06T19:14:45.750087932Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2696,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":20.400566,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.768894838Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2697,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":18.365853,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.768951619Z","message":"Request completed"} +{"level":"debug","transaction_id":"861","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.772559459Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"861","time":"2026-03-06T19:14:45.772694255Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KTMAjITbE-1Miq_ZbZAH2LZDYvbrsA7_dzvdj1N0CrI","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485772,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.772934303Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$VsxxxuN2Mkz44cY5Qtm5Atf9gRcTmfb3mEBh--XhHqM","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485772,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.772936747Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2691,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":107.333119,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.79855341Z","message":"Request completed"} +{"level":"debug","transaction_id":"862","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.808211542Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"862","time":"2026-03-06T19:14:45.808353811Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$t0Y4IDdVSCBCeE4Te_o_aKN_1so3Yc8Bdof4Aj0pw9c","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485808,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.808579751Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2683,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":311.579103,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:45.847388144Z","message":"Request completed"} +{"level":"debug","transaction_id":"863","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:14:45.855632111Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"863","time":"2026-03-06T19:14:45.85569881Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2695,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":166.808177,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:45.882733131Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2685,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485588223398_83?ts=1762868517676&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":305.617232,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Bisschen sus, dass Hackbarth genau in der Reihenfolge die Themen uns präsentiert hat","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.894015933Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437799516160917535","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":325.440621,"event_ids":{"":"$Mu3ZCS9HcWPqRf-mqvG0S8-N7lHqSdhhyOolcatrysY"},"time":"2026-03-06T19:14:45.894120767Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"864","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:45.919751398Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"864","time":"2026-03-06T19:14:45.919876834Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Mu3ZCS9HcWPqRf-mqvG0S8-N7lHqSdhhyOolcatrysY","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824485920,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:45.920092787Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2704,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":27.784217,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.922702721Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2690,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485687198636_10?ts=1723454098178&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":284.380025,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja lol","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.971735528Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272483458803044363","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":315.842343,"event_ids":{"":"$UrwTsem6Rc_sF6JiP7YxwQ_vfLSH-RPS3IYmWcsjoaQ"},"time":"2026-03-06T19:14:45.971847205Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2706,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.317939,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:45.989872367Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2692,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485696429195_4?ts=1756367168111&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":302.35511,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Perfekt, danke 🙂","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:45.998966663Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1410530879675043872","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":326.302195,"event_ids":{"":"$RgrERdKx9XrCoNA50i3jyBSk719PFX07zY6sUIX7h2Y"},"time":"2026-03-06T19:14:45.999078411Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2708,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":22.651442,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.02271805Z","message":"Request completed"} +{"level":"debug","transaction_id":"865","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.024909769Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"865","time":"2026-03-06T19:14:46.025020748Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$UrwTsem6Rc_sF6JiP7YxwQ_vfLSH-RPS3IYmWcsjoaQ","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486025,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.025242357Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2694,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485705487173_36?ts=1762862437665&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":330.31477,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"np","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.035995337Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1437774014746595410","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":352.844826,"event_ids":{"":"$Zc-7TWEcNvLX9KuGDqll8Yo4v7T6saXfVcMW4nw1WL0"},"time":"2026-03-06T19:14:46.036120424Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2703,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":172.62785,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:46.055601866Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186567331061706752","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:46.055721506Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186567331061706752","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":353.553934,"time":"2026-03-06T19:14:46.055803431Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2710,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":30.808525,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.068047752Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2711,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":28.792458,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.085214971Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2699,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485769171902_37?ts=1766781209576&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":317.669486,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wat los mein jung","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.086991408Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454210535448117298","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":336.805349,"event_ids":{"":"$bwttKlA9AweDWllDMOzqUDNAlP_AJgHlRhA8DPB7uFk"},"time":"2026-03-06T19:14:46.0870968Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"866","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.096054695Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"866","time":"2026-03-06T19:14:46.096227345Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$RgrERdKx9XrCoNA50i3jyBSk719PFX07zY6sUIX7h2Y","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486096,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.09640635Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$Zc-7TWEcNvLX9KuGDqll8Yo4v7T6saXfVcMW4nw1WL0","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486096,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.096441551Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$n0jLvN28q4e9GNehRo19WLfBEu7CY9-piHTCzYYbQkk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486096,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:46.096516003Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$bwttKlA9AweDWllDMOzqUDNAlP_AJgHlRhA8DPB7uFk","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486096,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.096500149Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485769116587_75?ts=1755760606709&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":332.562363,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":23293,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/rnJMPnSGOVyzwhHXSwXwKCWU"},"time":"2026-03-06T19:14:46.101917182Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1407986776760389714","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":1032.640681,"event_ids":{"":"$t0Y4IDdVSCBCeE4Te_o_aKN_1so3Yc8Bdof4Aj0pw9c","1407988265407086712":"$n0jLvN28q4e9GNehRo19WLfBEu7CY9-piHTCzYYbQkk"},"time":"2026-03-06T19:14:46.102028929Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2702,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":227.796226,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1865170 bytes>","time":"2026-03-06T19:14:46.105495688Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2714,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.430599,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.109263676Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2715,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":19.073145,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.124917764Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2700,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485798781934_2?ts=1694554171460&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":328.471565,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber gott bewahre der wär in nem andern team gewesen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.127402401Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151268380570030080","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":436.593131,"event_ids":{"":"$cNmaxuH1_xqRYoXRwBB5Nc2O4chfqNh7-BstrpfFsjM"},"time":"2026-03-06T19:14:46.127487958Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2718,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.878419,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.14198951Z","message":"Request completed"} +{"level":"debug","transaction_id":"867","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.144344659Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"867","time":"2026-03-06T19:14:46.14445487Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$cNmaxuH1_xqRYoXRwBB5Nc2O4chfqNh7-BstrpfFsjM","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486144,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.14465434Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2707,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":174.492497,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:46.164774838Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2705,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824485922904495_83?ts=1762869455015&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":289.945333,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Etwas sussi","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.212996008Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1437803447645634692","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":318.547542,"event_ids":{"":"$E6GPAeEp5JMxr8XhFdIHpc2F6fKWSbDCw0dAp9d7X7A"},"time":"2026-03-06T19:14:46.213119559Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2716,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":122.460246,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:46.232097299Z","message":"Request completed"} +{"level":"debug","transaction_id":"868","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.252651169Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"868","time":"2026-03-06T19:14:46.252771227Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$E6GPAeEp5JMxr8XhFdIHpc2F6fKWSbDCw0dAp9d7X7A","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486252,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.252977891Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2719,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":132.951177,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:46.275302819Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2720,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.175077,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:46.284162585Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272646774028505109","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:46.284271679Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272646774028505109","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":312.143639,"time":"2026-03-06T19:14:46.284373509Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2709,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486022957678_84?ts=1756903937796&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":269.024582,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://excalidraw.com/#room=7968daf85b439d855c4c,2DbN3RT8Fja8IvJvSLj7eQ","com.beeper.linkpreviews":[{"og:title":"Excalidraw — Collaborative whiteboarding made easy","og:description":"Excalidraw is a virtual collaborative whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them.","og:image":"mxc://matrix.theocloud.dev/pExrAXaGGbdpubvOsXjVSbPm","matrix:image:size":74022,"og:image:width":1200,"og:image:height":675,"og:image:type":"image/png","matched_url":"https://excalidraw.com/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.292158683Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1412782254912045096","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":292.748102,"event_ids":{"":"$a0l_U4Ki7EzHW6InxHMdetfPIWH_A3LqkgBJX9hkTiw"},"time":"2026-03-06T19:14:46.29228398Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2724,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":24.739235,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.309745584Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2701,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":479.855643,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"is_direct":true,"membership":"invite"},"time":"2026-03-06T19:14:46.327775007Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2713,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486085505934_9?ts=1702970216711&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":245.338918,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Okay. Ich habe bis zum 03.01. noch Urlaub und bin dann bis auf die letzte Januarwoche in der BDR","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.331006606Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186567832830484540","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":275.05944,"event_ids":{"":"$fG5zysOlOx7zKiM3RduosNT787hLxB98TeG5hkctPVw"},"time":"2026-03-06T19:14:46.331098658Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2712,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486068422315_85?ts=1763126357198&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":283.061753,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Jungs macht ihr gerade eine Lernsession?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.351718459Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438880973499531425","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":315.27704,"event_ids":{"":"$7emWHa--TYEGEwM56E2wxf38Onv9sLMADbduVwU0fEE"},"time":"2026-03-06T19:14:46.35186834Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":20.375562,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.35215644Z","message":"Request completed"} +{"level":"debug","transaction_id":"869","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.361501679Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"869","time":"2026-03-06T19:14:46.361610773Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$a0l_U4Ki7EzHW6InxHMdetfPIWH_A3LqkgBJX9hkTiw","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486361,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.36184656Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2730,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":24.572731,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.377287001Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2717,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486125192593_101?ts=1765463177332&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":282.235939,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExMHNqdHRwanRqOGYybmpldmg2NnVnem1tOWIybXRyOWVkOTVwcGZqZiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ITMAT1OAolUIKSFAGm/giphy.gif","info":{"h":480,"mimetype":"image/gif","size":1865170,"w":480},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/hOlDTStgAuEbngUYcXJhAoxv"},"time":"2026-03-06T19:14:46.407710066Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448682307534721037","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":1179.517002,"event_ids":{"video_https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExMHNqdHRwanRqOGYybmpldmg2NnVnem1tOWIybXRyOWVkOTVwcGZqZiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ITMAT1OAolUIKSFAGm/giphy.gif":"$igcLV8Sd_5SEAvBO2sawNuCqFUUtziMlyYd1GtqQuGQ"},"time":"2026-03-06T19:14:46.407831941Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2721,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":178.981676,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:46.411256165Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454210630541377578","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:46.411391031Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454210630541377578","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":323.967648,"time":"2026-03-06T19:14:46.411495026Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2732,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.510574,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.436151498Z","message":"Request completed"} +{"level":"debug","transaction_id":"870","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.441598284Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"870","time":"2026-03-06T19:14:46.441836655Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7emWHa--TYEGEwM56E2wxf38Onv9sLMADbduVwU0fEE","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486441,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.441941558Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$fG5zysOlOx7zKiM3RduosNT787hLxB98TeG5hkctPVw","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486441,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.441961533Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2733,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":30.922088,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.442933807Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2723,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":198.805206,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:46.474356664Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151268576477577256","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:46.474441801Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151268576477577256","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":346.652684,"time":"2026-03-06T19:14:46.474502354Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2722,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":245.705589,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<72854 bytes>","time":"2026-03-06T19:14:46.485164958Z","message":"Request completed"} +{"level":"debug","transaction_id":"871","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.48812564Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"871","time":"2026-03-06T19:14:46.488201489Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$igcLV8Sd_5SEAvBO2sawNuCqFUUtziMlyYd1GtqQuGQ","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486488,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:46.488401447Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2736,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":15.049533,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.489943912Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2726,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":177.992571,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22649 bytes>","time":"2026-03-06T19:14:46.498289849Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2737,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":13.688308,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.499185297Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2739,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":8.411868,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.50726695Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2735,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":108.335005,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:46.55153526Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2725,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486309908806_11?ts=1723496360583&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":267.020739,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"liege schon im Bettchen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.577066017Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272660720177250366","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":292.556455,"event_ids":{"":"$ayk8401cOFekyigA2qEc7uG-iblMZaiS527V-jh_-LE"},"time":"2026-03-06T19:14:46.577159954Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2744,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.782247,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.592608846Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2743,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":29.583073,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<4639 bytes>","time":"2026-03-06T19:14:46.602243372Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2729,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486352483441_10?ts=1702970233970&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":259.036934,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Habe aber diese Woche noch 3 Klausuren xD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.611650701Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186567905219985418","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":280.29188,"event_ids":{"":"$VWkgc4s0K0Q8nrYHAZ2xS2Co6T5CSnsWqiHmtX-C5VY"},"time":"2026-03-06T19:14:46.61173947Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"872","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.614376434Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"872","time":"2026-03-06T19:14:46.614486226Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ayk8401cOFekyigA2qEc7uG-iblMZaiS527V-jh_-LE","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486614,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.614670888Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2746,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.688029,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.616244993Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2727,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/fi.mau.dummy.portal_created/mautrix-go_1772824486328516661_2?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":293.02356,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:46.621629409Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","action":"initial backfill","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","limit":100,"before_id":"","time":"2026-03-06T19:14:46.62192128Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2747,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.596114,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.623902564Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2731,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486377580547_114?ts=1763126696914&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":269.353889,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"y","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.647120426Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438882398371840000","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":294.889465,"event_ids":{"":"$8Ty0CbPIPnS7wSBSShhfMJfNQXtNf1KFr3Crv5ws2f0"},"time":"2026-03-06T19:14:46.647210942Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2751,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.595918,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.672351909Z","message":"Request completed"} +{"level":"debug","transaction_id":"873","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.674892769Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"873","event_id":"$2GHkVAvERK3ub0yeheDJDoO6-8_1X8BooSsnKqSrf7A","time":"2026-03-06T19:14:46.674981329Z","message":"Not parsing content of unsupported event"} +{"level":"debug","transaction_id":"873","time":"2026-03-06T19:14:46.675044956Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8S5IQGuxIiiimTwWRdKHhataa0Slvjr75zCePsaXKn0","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486675,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.675226196Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$8Ty0CbPIPnS7wSBSShhfMJfNQXtNf1KFr3Crv5ws2f0","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486675,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.675228501Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$VWkgc4s0K0Q8nrYHAZ2xS2Co6T5CSnsWqiHmtX-C5VY","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486675,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.675236114Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2734,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486436362351_86?ts=1765464108674&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":241.822083,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"würds auch mal probieren","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.678367001Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448686213866328205","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":270.255692,"event_ids":{"":"$8S5IQGuxIiiimTwWRdKHhataa0Slvjr75zCePsaXKn0"},"time":"2026-03-06T19:14:46.678499701Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2742,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":133.209245,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:46.68492358Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454210689252982828","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:46.684995098Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454210689252982828","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":273.355639,"time":"2026-03-06T19:14:46.685055093Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2753,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.598639,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.700928206Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2754,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.88737,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.71040887Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2738,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486490136887_3?ts=1694554232817&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":239.789115,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"xD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.730064149Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151268637919936572","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":255.499915,"event_ids":{"":"$ELkGRRGphlLJSLQyuoAtXyR4kCQBp2cPaqdb2uhCymE"},"time":"2026-03-06T19:14:46.730162208Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"874","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.740731781Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"874","time":"2026-03-06T19:14:46.740860361Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ELkGRRGphlLJSLQyuoAtXyR4kCQBp2cPaqdb2uhCymE","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486741,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.741083018Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2757,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":21.06253,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.751934195Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2740,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486499371845_84?ts=1763539240994&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":266.911646,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://one.google.com/about/google-ai-plans/","com.beeper.linkpreviews":[{"og:title":"Google AI Plans with Cloud Storage - Google One","og:description":"Explore Google AI Plans. Access our most advanced AI, generate videos from text, and secure cloud storage.","og:image":"mxc://matrix.theocloud.dev/tneuAHzIADOHqKIrVniYyVhA","matrix:image:size":72854,"og:image:width":1200,"og:image:height":514,"og:image:type":"image/jpeg","matched_url":"https://one.google.com/about/google-ai-plans/"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.766468782Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1440612733656633385","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":553.065315,"event_ids":{"":"$7S7BGMK6GcTN2B79dp6Swod0QxThB7T2GBIYVFAyXjM"},"time":"2026-03-06T19:14:46.766591495Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2741,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486507401536_76?ts=1755779034686&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":280.850199,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$t0Y4IDdVSCBCeE4Te_o_aKN_1so3Yc8Bdof4Aj0pw9c"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.788509313Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2759,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":21.551426,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.788844556Z","message":"Request completed"} +{"level":"debug","transaction_id":"875","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.802662841Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"875","time":"2026-03-06T19:14:46.802796449Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7S7BGMK6GcTN2B79dp6Swod0QxThB7T2GBIYVFAyXjM","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486802,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.802986769Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$aRs7nr8tYxTFospqIWe57PUJer6CHRLEikFSHp06NPc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486802,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:46.802996896Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2760,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":16.735106,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.805532798Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2745,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":215.73594,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:46.808647342Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2750,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":210.861372,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:46.83505441Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2749,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JfUqzIUZWigCkliTeH:matrix.theocloud.dev/state/m.space.child/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":228.916705,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:14:46.850991009Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2756,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":152.981231,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:46.863816278Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2763,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":94.141877,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:46.902955094Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272660757087129735","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:46.90305001Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272660757087129735","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":325.592178,"time":"2026-03-06T19:14:46.903123624Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2748,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486616447535_102?ts=1756904525436&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":300.406722,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"message.txt","info":{"mimetype":"text/plain; charset=utf-8","size":4639},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/ElIlqnpgBlNnqzuTNPgHjMiJ"},"time":"2026-03-06T19:14:46.917043599Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1412784719652720673","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":624.536822,"event_ids":{"1412784719514439841":"$8sJcAfpZn4NSdoeqaq5gdLcivVTjSz9td0uexhZ4OjM"},"time":"2026-03-06T19:14:46.917136629Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2766,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.718765,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.923477046Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2767,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":23.074266,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.940799385Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","action":"initial backfill","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","limit":100,"count":50,"time":"2026-03-06T19:14:46.952036581Z","message":"Added messages to backfill collection"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","action":"initial backfill","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","limit":100,"before_id":"1289683323114749986","time":"2026-03-06T19:14:46.952217752Z","message":"Fetching messages for backfill"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2764,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":117.19484,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:46.952455285Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186568370364108821","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:46.952525826Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186568370364108821","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":340.540301,"time":"2026-03-06T19:14:46.952582119Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"876","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:46.965344389Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"876","time":"2026-03-06T19:14:46.965435184Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8sJcAfpZn4NSdoeqaq5gdLcivVTjSz9td0uexhZ4OjM","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824486965,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:46.965627879Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2770,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":17.134254,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:46.970147998Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2752,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486672515899_87?ts=1763126899082&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":309.516523,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wollt nur fragen, weil ihr beide auf bitte nicht stören seid","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.982203046Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438883246325764216","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":334.784463,"event_ids":{"":"$_zUrp6x1PRER3qQ2uedlV-8WXdCmeb6NWj9jEbPhins"},"time":"2026-03-06T19:14:46.982286228Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2755,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486701163854_115?ts=1765464541584&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":290.861105,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das freut mich","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:46.992191323Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448688029622603847","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":313.318105,"event_ids":{"":"$Wrw5iQBCEAmoN3-iCjLQtXSLkcIi81YeCWtz7ktnZPw"},"time":"2026-03-06T19:14:46.992261444Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2765,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":147.666447,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:47.011681774Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454210729962901514","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:47.011770544Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454210729962901514","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":326.62759,"time":"2026-03-06T19:14:47.011846113Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2772,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":28.969789,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.011873631Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2773,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":24.854963,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.017600065Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2775,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":25.478725,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.037880852Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2758,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486752107264_4?ts=1694554248005&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":293.27136,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"angespielt sozusagen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.04551328Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151268701623042191","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":315.067723,"event_ids":{"":"$DHJnQNMPeWVFLijn71VVCsGZ2tbNU4rm0U-IQKrd8CU"},"time":"2026-03-06T19:14:47.045607707Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"877","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.047371503Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"877","time":"2026-03-06T19:14:47.047442672Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_zUrp6x1PRER3qQ2uedlV-8WXdCmeb6NWj9jEbPhins","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487047,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.04765157Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2778,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.823873,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.061096339Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2761,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486789076432_85?ts=1763539288352&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":283.635996,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://one.google.com/ai-student?hl=en-US","com.beeper.linkpreviews":[{"og:title":"Sign in - Google Accounts","matched_url":"https://one.google.com/ai-student?hl=en-US"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.072854278Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1440612932290478172","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":306.018964,"event_ids":{"":"$UIAIQ7SFPo__48YUW9_gkiyFuWkTQTSDhb6R7FwH0ao"},"time":"2026-03-06T19:14:47.072958273Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2762,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486805795125_77?ts=1755779034686&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":283.24879,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 unfinished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22649,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/WuuoBYGwpHpihDRGirAHcEvM"},"time":"2026-03-06T19:14:47.089309945Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1408064069298032710","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":986.9383,"event_ids":{"":"$aRs7nr8tYxTFospqIWe57PUJer6CHRLEikFSHp06NPc","1408064081486811178":"$Sg77MKi_INdFMaN5NjJx5ODY28NckxOpPk3vr_QGeI0"},"time":"2026-03-06T19:14:47.089470163Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"878","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.093834953Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"878","time":"2026-03-06T19:14:47.093971215Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Wrw5iQBCEAmoN3-iCjLQtXSLkcIi81YeCWtz7ktnZPw","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487094,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.094140094Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$DHJnQNMPeWVFLijn71VVCsGZ2tbNU4rm0U-IQKrd8CU","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487094,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.094167821Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$UIAIQ7SFPo__48YUW9_gkiyFuWkTQTSDhb6R7FwH0ao","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487094,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.09419499Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$Sg77MKi_INdFMaN5NjJx5ODY28NckxOpPk3vr_QGeI0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487094,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:47.094271886Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2768,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":178.716067,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:47.102609651Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2780,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":20.979558,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<76255 bytes>","time":"2026-03-06T19:14:47.123542974Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2782,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":10.821146,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.134798608Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2777,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":102.625682,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:47.140909034Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2779,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":107.992988,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:47.169494551Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2781,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":80.321915,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:47.183149125Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272660774829031528","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:47.183224625Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272660774829031528","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":279.908725,"time":"2026-03-06T19:14:47.183292372Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2769,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486941023649_5?ts=1756905208605&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":255.206088,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://docs.google.com/document/d/1puh0_7eH1u8m1fGNzP0IcoRfIT6w37ysj8TUqG11O4U/edit?usp=sharing","com.beeper.linkpreviews":[{"og:title":"Unbenanntes Dokument","matched_url":"https://docs.google.com/document/d/1puh0_7eH1u8m1fGNzP0IcoRfIT6w37ysj8TUqG11O4U/edit?usp=sharing"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.196442336Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1412787585071186105","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":279.121324,"event_ids":{"":"$yRQ9VaUbS9kZa0eLkZn2J_T7OQ7PeGyKQBuV7m0Bbr8"},"time":"2026-03-06T19:14:47.196580554Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","action":"initial backfill","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","limit":100,"count":4,"time":"2026-03-06T19:14:47.19742369Z","message":"Added messages to backfill collection"} +{"level":"info","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","action":"initial backfill","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","limit":100,"count":54,"found_all":false,"time":"2026-03-06T19:14:47.197502192Z","message":"Collected messages to backfill"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","action":"initial backfill","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:47.197576504Z","message":"Not using hungryserv, sending messages one by one"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2786,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":25.96301,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.209750005Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824486970351658_11?ts=1702970393687&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":253.897035,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ne. In der Woche sind alle Azubis in der Berufsschule. Aber danach sind wir wieder da xD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.22441834Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186568575121641512","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":271.763935,"event_ids":{"":"$fAYmcct3PPcO3nN0dAl-dF5jk45Xg3xvVSCUqoxsMIE"},"time":"2026-03-06T19:14:47.224524081Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2787,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.797906,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.225101047Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2788,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":28.246223,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.226244574Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2790,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.407472,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.237706033Z","message":"Request completed"} +{"level":"debug","transaction_id":"879","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.25055386Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"879","time":"2026-03-06T19:14:47.250647868Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yRQ9VaUbS9kZa0eLkZn2J_T7OQ7PeGyKQBuV7m0Bbr8","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487250,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.250880582Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2776,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487017773483_117?ts=1765464570307&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":248.427201,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"du wirst da aber echt mit 10 bulldozer überrollt bei der komplexität und dem UI.","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.266362788Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448688150095462562","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":273.910046,"event_ids":{"":"$f4BvpDcyDn-J-C-5Ch6LEzYVekil3bMc9LYfSdZ6hp0"},"time":"2026-03-06T19:14:47.266435564Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2774,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487012081551_116?ts=1763126938681&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":268.242001,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja lerne bis 20 uhr ungefähr","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.280462747Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438883412416004189","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":297.98592,"event_ids":{"":"$AjoAsGX5eUh2J269O_6yD9nV1S7fR-JvDfp2Xml46I4"},"time":"2026-03-06T19:14:47.280565904Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2794,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.107788,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.287996628Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2784,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":148.575583,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:47.289681642Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454210906421723196","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:47.289760424Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454210906421723196","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":277.797954,"time":"2026-03-06T19:14:47.289844095Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2795,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":19.199558,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.30037784Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2797,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":12.986114,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.303283416Z","message":"Request completed"} +{"level":"debug","transaction_id":"880","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.305151486Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"880","time":"2026-03-06T19:14:47.305253805Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fAYmcct3PPcO3nN0dAl-dF5jk45Xg3xvVSCUqoxsMIE","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487305,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.305440074Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$f4BvpDcyDn-J-C-5Ch6LEzYVekil3bMc9LYfSdZ6hp0","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487305,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.305476183Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$AjoAsGX5eUh2J269O_6yD9nV1S7fR-JvDfp2Xml46I4","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487305,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.30552619Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2785,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":153.266955,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:47.32295413Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151268867365159045","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:47.323052329Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151268867365159045","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":277.204993,"time":"2026-03-06T19:14:47.32315786Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2800,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":6.955867,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.330686433Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2789,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":137.445595,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:47.347564926Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2793,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":130.145546,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:47.368154554Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2783,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487134974470_103?ts=1763543716855&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":258.617322,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/krillion-krill-shrimp-gif-9336978018823938700","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":240,"mimetype":"video/mp4","size":76255,"w":444},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/IVIqtfhKOsmlkJusClFIWWXL"},"time":"2026-03-06T19:14:47.393770519Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1440631506778325092","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":320.58456,"event_ids":{"video_https://tenor.com/view/krillion-krill-shrimp-gif-9336978018823938700":"$yfmpN3Z09Huu91c2f2P2vwYuQWK7mMVecnW9jr0AOGM"},"time":"2026-03-06T19:14:47.393848602Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"881","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.429474425Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"881","time":"2026-03-06T19:14:47.429592039Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yfmpN3Z09Huu91c2f2P2vwYuQWK7mMVecnW9jr0AOGM","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487429,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:47.429807642Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2801,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":109.349533,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23419 bytes>","time":"2026-03-06T19:14:47.440066976Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2803,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":106.796101,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:47.454531092Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272902899428491306","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:47.454613157Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272902899428491306","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":271.170275,"time":"2026-03-06T19:14:47.454678041Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2805,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":14.440229,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.455036611Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2791,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487225364003_88?ts=1757494372817&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":238.35679,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ERM für DB: https://drive.google.com/file/d/1Ym0FHu_sBH2OKk0DQ7lhb0idgyK1-fMo/view?usp=sharing","com.beeper.linkpreviews":[{"og:title":"Backlog-Manager-ERM","matched_url":"https://drive.google.com/file/d/1Ym0FHu_sBH2OKk0DQ7lhb0idgyK1-fMo/view?usp=sharing"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.463897354Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1415258718882496523","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":267.034219,"event_ids":{"":"$a4xOJP8ewTjsNIi_6vS1s_nOkVJsnt05e6BdEk2nCh0"},"time":"2026-03-06T19:14:47.463985076Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2792,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487226448583_3?ts=1700212767995&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":238.98991,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"frech dass du kurssprecher rolle hast","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.465546399Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1175002254651183184","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":267.862966,"event_ids":{"":"$K6xPQJegPbs98FmbvcJ1pYmzRAML3Rvn2LcyLkoA8WY"},"time":"2026-03-06T19:14:47.465605486Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2806,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.9725,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.472107867Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2808,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.400288,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.487413512Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2804,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":132.178443,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:47.500524924Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186580846971465829","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:47.500656437Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186580846971465829","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":275.795856,"time":"2026-03-06T19:14:47.500768673Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"882","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.511381689Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"882","time":"2026-03-06T19:14:47.511478071Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$a4xOJP8ewTjsNIi_6vS1s_nOkVJsnt05e6BdEk2nCh0","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487511,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.51167761Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2811,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":18.195298,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.519542125Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2796,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487288170047_118?ts=1765464571326&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":241.053817,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Leider","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.529392114Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448688154369327205","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":262.799754,"event_ids":{"":"$2cHB3OOEDOgl7EVCC4v2lK50T0uvgZNCavtHNxJE00k"},"time":"2026-03-06T19:14:47.52947802Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2799,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487303470873_38?ts=1766781324519&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":229.730855,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"auf dam brattlegrounds im Dome bereich bei autos ganz gerne mal","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.533413001Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211017553870932","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":243.530143,"event_ids":{"":"$dk5rbNEIkRnV5VjfZfWrihap4WZN9IIUcKSVLoPF1Ms"},"time":"2026-03-06T19:14:47.533556596Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2813,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":29.560653,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.559547195Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2814,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":27.659338,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.562089591Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2798,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487300674460_119?ts=1763126943182&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":264.775591,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"max 2 stunden","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.565626402Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438883431294435543","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":284.844615,"event_ids":{"":"$f5qLXeeOhF7C3v-QkLkLUhUQPMj_mv0UtsJ1FLameAI"},"time":"2026-03-06T19:14:47.565731794Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"883","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.575143802Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"883","time":"2026-03-06T19:14:47.575263861Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$K6xPQJegPbs98FmbvcJ1pYmzRAML3Rvn2LcyLkoA8WY","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487575,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.575464099Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2817,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.791823,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.588321564Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2802,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487330882481_5?ts=1694554298766&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":267.760438,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"mach das","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.598827232Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151268914530095154","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":275.521027,"event_ids":{"":"$nfbiM2yt_v7tRoiayDBGb5wEjM5PdbfaGKpwEN5lrOw"},"time":"2026-03-06T19:14:47.598946104Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2819,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":15.036473,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.614735616Z","message":"Request completed"} +{"level":"debug","transaction_id":"884","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.621243026Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"884","time":"2026-03-06T19:14:47.621372374Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$f5qLXeeOhF7C3v-QkLkLUhUQPMj_mv0UtsJ1FLameAI","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487621,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.621541671Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$2cHB3OOEDOgl7EVCC4v2lK50T0uvgZNCavtHNxJE00k","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487621,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.621560249Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$dk5rbNEIkRnV5VjfZfWrihap4WZN9IIUcKSVLoPF1Ms","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487621,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.62154649Z","message":"Sent message checkpoint"} +{"level":"warn","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1415312185353048074","message_type":0,"author_id":"388409312340344833","action":"discord message create","embed_type":"link","embed_index":0,"computed_embed_type":"link preview","error":"unexpected status 404 downloading https://images-ext-1.discordapp.net/external/4b8i4vWk8m8tA4ujvoChQrWRyOvTSldyOXBq_CRpRIM/https/lh7-us.googleusercontent.com/docs/AHkbwyJfoh-hLArM9_NSjsNFd59y3uz4yn41GdlGPfXPt5-XLDV9cl_74w0qinsee4vPRVrAr8bLALt_oq0wgqPPIKQ42yTyHO8AT3jEsY_KdrwDQS_6XAAA%3Dw1200-h630-p: {\"message\":\"Invalid resource \\\"https://images-ext-1.discordapp.net/external/4b8i4vWk8m8tA4ujvoChQrWRyOvTSldyOXBq_CRpRIM/https/lh7-us.googleusercontent.com/docs/AHkbwyJfoh-hLArM9_NSjsNFd59y3uz4yn41GdlGPfXPt5-XLDV9cl_74w0qinsee4vPRVrAr8bLALt_oq0wgqPPIKQ42yTyHO8AT3jEsY_KdrwDQS_6XAAA%3Dw1200-h630-p\\\"\"}","time":"2026-03-06T19:14:47.627389282Z","message":"Failed to reupload image in URL preview"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2821,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.239092,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.648885672Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2809,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":182.562138,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:47.65494253Z","message":"Request completed"} +{"level":"debug","transaction_id":"885","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.669899313Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"885","time":"2026-03-06T19:14:47.669983892Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nfbiM2yt_v7tRoiayDBGb5wEjM5PdbfaGKpwEN5lrOw","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487670,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.670169393Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2810,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":191.018705,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:47.678742247Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2807,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487455253121_78?ts=1755847326639&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":284.815072,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 1 day streak!** 🔥 Here are yesterday's results:\n👑 5/6: @alexx\n6/6: lagopodus\nX/6: Maja\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 1 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 5/6: @alexx\u003cbr\u003e\n6/6: \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\u003cbr\u003e\nX/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev","@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$t0Y4IDdVSCBCeE4Te_o_aKN_1so3Yc8Bdof4Aj0pw9c"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.740432351Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2825,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":19.866762,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.76057038Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2823,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.278431,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:47.762384811Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272903049190441012","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:47.762483219Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272903049190441012","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":307.735965,"time":"2026-03-06T19:14:47.762580509Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2827,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.718625,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.781870653Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2812,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487519715822_12?ts=1702973343756&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":264.325039,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Jep. Irgendwann sehen wir uns xD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.784234673Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1186580948607848509","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":283.295864,"event_ids":{"":"$5UDo4dSgsF5yKVCJNyeBcrv7JImIva7wSzVdZLKwzBw"},"time":"2026-03-06T19:14:47.784353754Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"886","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.789357391Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"886","time":"2026-03-06T19:14:47.78949512Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6HivJCgoHnTJPts0cyaCZEf01p1iGkWmU7tJouTNA40","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487789,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.78969878Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2824,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":117.91233,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:47.796835398Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1175002656914292826","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:47.796923539Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1175002656914292826","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":331.209798,"time":"2026-03-06T19:14:47.797030328Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2829,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":15.689707,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.800697045Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2830,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":25.481449,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.823105016Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2815,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487559809173_89?ts=1765464584970&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":277.355922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dachte mir schon, dass du wieder im strategy grind drin bist","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.837325173Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448688211596410902","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":307.695037,"event_ids":{"":"$34mwaUoziOnRdMQ4BKtHruq8kZj8BAloTDV7qXGDX-Q"},"time":"2026-03-06T19:14:47.837442159Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2816,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487562291086_39?ts=1766781336998&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":278.306894,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"sonst gibts nen arc raider wiki","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.840805831Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211069894725812","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":306.913293,"event_ids":{"":"$8-gzHfqv6i4mUYXb3iexDiL_84sM3n4tPyUseAIQtuM"},"time":"2026-03-06T19:14:47.840930848Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"887","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.846715601Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"887","time":"2026-03-06T19:14:47.846831888Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5UDo4dSgsF5yKVCJNyeBcrv7JImIva7wSzVdZLKwzBw","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487847,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.84705692Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$34mwaUoziOnRdMQ4BKtHruq8kZj8BAloTDV7qXGDX-Q","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487847,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.847078012Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$8-gzHfqv6i4mUYXb3iexDiL_84sM3n4tPyUseAIQtuM","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487847,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.847111327Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2834,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.586833,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.856714843Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2835,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.366201,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.860113226Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2818,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487588577676_90?ts=1763127104871&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":297.518395,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"I see","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.886275007Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438884109467390054","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":320.23479,"event_ids":{"":"$temalYyFFDjSFTfA9DKlmz9BOvXTLjCeCrgWVQL4u1s"},"time":"2026-03-06T19:14:47.886399536Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2820,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487614939904_6?ts=1694632060522&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":279.992327,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gleich apex?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.895085674Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151595070974345216","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":295.792385,"event_ids":{"":"$hv4fZTArwR3oFiDgVIkbDRgZziQm3aI78XojRywZEpE"},"time":"2026-03-06T19:14:47.895179123Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2838,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.770031,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.907820776Z","message":"Request completed"} +{"level":"debug","transaction_id":"888","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.911494407Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"888","time":"2026-03-06T19:14:47.911587647Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$temalYyFFDjSFTfA9DKlmz9BOvXTLjCeCrgWVQL4u1s","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487911,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.911816869Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2839,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":23.456093,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.919414516Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2822,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487649143041_91?ts=1757507120217&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":282.747812,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Risikomanagement Plan: https://docs.google.com/spreadsheets/d/1lCxBTX7LYudqIN6QAEItjl5Xk6cfvmlBlr7Y3Fr8rgs/edit?usp=sharing","com.beeper.linkpreviews":[{"og:title":"Risikomanagement - Backlog Manager","matched_url":"https://docs.google.com/spreadsheets/d/1lCxBTX7LYudqIN6QAEItjl5Xk6cfvmlBlr7Y3Fr8rgs/edit?usp=sharing"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:47.932050023Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1415312185353048074","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":467.90452,"event_ids":{"":"$W444BN50KSYjrtoC_3Pg2ulm0YFEP4HDRZsGXOnKnNI"},"time":"2026-03-06T19:14:47.932144799Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"889","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:47.95498656Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"889","time":"2026-03-06T19:14:47.955089438Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hv4fZTArwR3oFiDgVIkbDRgZziQm3aI78XojRywZEpE","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487955,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.955308533Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$W444BN50KSYjrtoC_3Pg2ulm0YFEP4HDRZsGXOnKnNI","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824487955,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:47.955308533Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2828,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":175.002555,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:47.957271728Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2832,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":169.376973,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<609583 bytes>","time":"2026-03-06T19:14:47.986699402Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2837,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":133.321481,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:47.993753676Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2843,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":8.490091,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:47.995543314Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2826,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487760850238_79?ts=1755847326639&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":260.692265,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 solved and 1 unsolved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":23419,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/VWmwmdqSFHVwBhkyHxYIhXQu"},"time":"2026-03-06T19:14:48.021771166Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1408350506509930546","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":931.930071,"event_ids":{"":"$6HivJCgoHnTJPts0cyaCZEf01p1iGkWmU7tJouTNA40","1408350506279239680":"$6vem8EwAjAtANj8rCOly6B3-NZACeV3tVj0yHyfQFZg"},"time":"2026-03-06T19:14:48.021886615Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2841,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":109.185613,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.029033989Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2842,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":88.754387,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.04623201Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272903464372142082","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.046354583Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272903464372142082","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":283.68265,"time":"2026-03-06T19:14:48.046481067Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2831,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487800885619_13?ts=1704971550197&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":257.806314,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Du hast SOT?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.058821909Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1194962033876156427","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":274.171396,"event_ids":{"":"$fSQsvUUkMYwTwTZQMbRhtK86EMKexMp78HCdLZXEPVk"},"time":"2026-03-06T19:14:48.058890983Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2833,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487823352956_4?ts=1700212933982&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":236.420973,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gleich gehts los","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.059921156Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1175002950851104801","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":262.743112,"event_ids":{"":"$XTzPjKJ_cjkaxPDRL5EYUVd-VLSXtsGhjklhkbKeKzs"},"time":"2026-03-06T19:14:48.059996376Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2847,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.81214,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.062251093Z","message":"Request completed"} +{"level":"debug","transaction_id":"890","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.065874787Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"890","time":"2026-03-06T19:14:48.065949099Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6vem8EwAjAtANj8rCOly6B3-NZACeV3tVj0yHyfQFZg","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488066,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:48.066098003Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2848,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.443369,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.069869274Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2849,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":10.957338,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.071631254Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2836,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487856880578_92?ts=1765464600524&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":238.588596,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja ich hab keine erwartungen irgendwas beim ersten mal zu raffen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.095621151Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448688276834881737","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":257.907166,"event_ids":{"":"$a5NZ0aOf75Iw3f5zmKKT7fP38UAAaUNQZ5PekRGc5RM"},"time":"2026-03-06T19:14:48.095727451Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"891","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.103407931Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"891","time":"2026-03-06T19:14:48.10350585Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XTzPjKJ_cjkaxPDRL5EYUVd-VLSXtsGhjklhkbKeKzs","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488103,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.103753929Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$a5NZ0aOf75Iw3f5zmKKT7fP38UAAaUNQZ5PekRGc5RM","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488103,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.103748691Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$fSQsvUUkMYwTwTZQMbRhtK86EMKexMp78HCdLZXEPVk","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488103,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.103759028Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2853,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.140677,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.110581287Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2844,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.917849,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.113894253Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211166766108692","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.114031493Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211166766108692","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":272.705966,"time":"2026-03-06T19:14:48.114132275Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2855,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.163309,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.131929821Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2840,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487907993286_120?ts=1763127401026&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":234.330385,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"kannst joinen, wenn du magst","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.142492899Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438885351631491242","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":255.866725,"event_ids":{"":"$QP7_e5WagVIbfVgi5fhalFn2kJQnHP6xLIQninWJ6wE"},"time":"2026-03-06T19:14:48.142622177Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2857,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.124337,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.161494455Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2846,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":134.622223,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.163839338Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151595416475947128","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.163935721Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1151595416475947128","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":268.457603,"time":"2026-03-06T19:14:48.164031125Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.845734,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.179437203Z","message":"Request completed"} +{"level":"debug","transaction_id":"892","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.183704144Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"892","time":"2026-03-06T19:14:48.183823016Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QP7_e5WagVIbfVgi5fhalFn2kJQnHP6xLIQninWJ6wE","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488183,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.183999996Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2850,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":129.211056,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.191898663Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2851,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":144.63683,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.214770946Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":2845,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824487995806619_86?ts=1763543739587&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":255.618506,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://cdn.discordapp.com/attachments/888946307346100247/1440327283872235663/CXETafW.gif","info":{"h":300,"mimetype":"image/gif","size":609583,"w":400},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/trtTiOjXPSopuRmmNkVNNZSg"},"time":"2026-03-06T19:14:48.251633674Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1440631602123247697","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":857.644061,"event_ids":{"video_https://cdn.discordapp.com/attachments/888946307346100247/1440327283872235663/CXETafW.gif":"$a_v27Uilo6ql9qz3SywwxHAuLpQF8N2GjDNUIY3r3kg"},"time":"2026-03-06T19:14:48.251765257Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2864,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.243623,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.265830364Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2856,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":133.968499,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.266293767Z","message":"Request completed"} +{"level":"debug","transaction_id":"893","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.288646144Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"893","time":"2026-03-06T19:14:48.288747275Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$a_v27Uilo6ql9qz3SywwxHAuLpQF8N2GjDNUIY3r3kg","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488288,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:48.288922789Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2860,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":121.811342,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.301619827Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2861,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":112.726055,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.304829287Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272903924650872912","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.304923713Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1272903924650872912","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":258.319445,"time":"2026-03-06T19:14:48.305050407Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2868,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":11.765971,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.317474781Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2852,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488071817523_5?ts=1727554823992&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":256.740242,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hast du eigentlich noch rausgefundenim selbststudium hätten machen sollen?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.328713862Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683149487341568","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":268.554055,"event_ids":{"":"$74Dkp1hHRUU6RLc_Bt1taYzJEAgSmktIfFB1gs2OzGA"},"time":"2026-03-06T19:14:48.328817089Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2862,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":122.584006,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.33759479Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1194964740947050496","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.337678392Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1194964740947050496","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":278.553157,"time":"2026-03-06T19:14:48.337746418Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2870,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.695154,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.344175046Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2871,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":12.462089,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.350668138Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2854,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488110778591_104?ts=1765465274375&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":246.817617,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Böse","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.357769626Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448691103170691224","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":261.759873,"event_ids":{"":"$BAwG-LPEW3ChLtSGwjXtl_jaYu1E-mhlSwmsPxOILgA"},"time":"2026-03-06T19:14:48.357885494Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2863,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":122.257354,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23548 bytes>","time":"2026-03-06T19:14:48.358743716Z","message":"Request completed"} +{"level":"debug","transaction_id":"894","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.3615131Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"894","time":"2026-03-06T19:14:48.361623101Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$74Dkp1hHRUU6RLc_Bt1taYzJEAgSmktIfFB1gs2OzGA","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488361,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.361852603Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2874,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":19.319687,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.378285222Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2875,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":18.966635,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.378346055Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2866,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":123.11823,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.389655048Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211249633230938","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.389774548Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211249633230938","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":275.46229,"time":"2026-03-06T19:14:48.389880289Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2878,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.656944,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.399255212Z","message":"Request completed"} +{"level":"debug","transaction_id":"895","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.401579351Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"895","time":"2026-03-06T19:14:48.401651149Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BAwG-LPEW3ChLtSGwjXtl_jaYu1E-mhlSwmsPxOILgA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488401,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.401767087Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2858,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488161759227_93?ts=1763127418407&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":258.088337,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"muss nur Vortrag mit Domi heute üben","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.420008481Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438885424532553810","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":277.061536,"event_ids":{"":"$cJtNwkCEihIA-WGKrNUTVIgVYTP2DzoS5juukJYC2rU"},"time":"2026-03-06T19:14:48.420082234Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2867,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.21817,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.421023777Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1152340886718533684","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.421079511Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1152340886718533684","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":256.905488,"time":"2026-03-06T19:14:48.42114202Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2880,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.47229,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.437088467Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2881,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":18.736225,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.440207482Z","message":"Request completed"} +{"level":"debug","transaction_id":"896","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.456465565Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"896","time":"2026-03-06T19:14:48.456557757Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$cJtNwkCEihIA-WGKrNUTVIgVYTP2DzoS5juukJYC2rU","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488456,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.456768471Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2872,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":138.198285,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.482748523Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2865,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488266084869_105?ts=1763543879307&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":235.174429,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/jw-jehovahs-witness-jehovah-god-jenny-ann-valenciano-gif-21141809","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":640,"mimetype":"video/mp4","size":5759070,"w":640},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/HsmheheLladsVomjiiqTOGzJ"},"time":"2026-03-06T19:14:48.501483072Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1440632188151529513","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":249.398218,"event_ids":{"video_https://tenor.com/view/jw-jehovahs-witness-jehovah-god-jenny-ann-valenciano-gif-21141809":"$KQ91tQ24EHybZYzK_Se1eCPwLw7HFT_V5ZE9GOiOldg"},"time":"2026-03-06T19:14:48.501564508Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2879,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":122.011929,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.521723839Z","message":"Request completed"} +{"level":"debug","transaction_id":"897","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.537034233Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"897","time":"2026-03-06T19:14:48.537173918Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KQ91tQ24EHybZYzK_Se1eCPwLw7HFT_V5ZE9GOiOldg","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488538,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:48.538456361Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2869,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488317714060_12?ts=1723657286688&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":225.994646,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"naaa","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.543871019Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335693183291424","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":238.663536,"event_ids":{"":"$_K7PM338AG9gSv3e9i7CKG1BZtE5b9gC2N5RTQ8A-Ss"},"time":"2026-03-06T19:14:48.543966354Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.312625,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.55591608Z","message":"Request completed"} +{"level":"debug","transaction_id":"898","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.583939855Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"898","time":"2026-03-06T19:14:48.584020173Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_K7PM338AG9gSv3e9i7CKG1BZtE5b9gC2N5RTQ8A-Ss","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488584,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.584181718Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2873,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488350852242_14?ts=1704972467392&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":235.476007,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Und gerade spielst du/ hast du auch mit deinen Kumpels gezockt?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.586496011Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1194965880870813736","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":248.685966,"event_ids":{"":"$L2HBhFgfXQzCO8BHH86yr9m8Q1VSqQ8ph7V7oYs5eJY"},"time":"2026-03-06T19:14:48.586618095Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2887,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":37.299731,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<308536 bytes>","time":"2026-03-06T19:14:48.588428336Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2891,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":13.55065,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.602443715Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2890,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.162399,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.602763104Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2884,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":128.165378,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.611118958Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683323114749986","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.611208356Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683323114749986","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":282.139766,"time":"2026-03-06T19:14:48.611296986Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2876,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488378596998_121?ts=1765466600790&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":241.549697,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ist nicht schlimm, das dauert sehr lange, gibt aber automatisierungen, die einem den einstieg bisschen erleichtern, trotzdem ist es kein action game","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$a5NZ0aOf75Iw3f5zmKKT7fP38UAAaUNQZ5PekRGc5RM"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.620364463Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448696666558562455","message_type":19,"author_id":"122672447207112706","action":"discord message create","handling_time":262.168939,"event_ids":{"":"$eFXRB1ZvyIbdfft84DlKpiGh1PKyC5ZW6P-zZeYZLMc"},"time":"2026-03-06T19:14:48.620453651Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2877,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488378659227_80?ts=1756212342178&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":248.822089,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus and alexx were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus and alexx were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$6HivJCgoHnTJPts0cyaCZEf01p1iGkWmU7tJouTNA40"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.627735472Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2894,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.183005,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.6299897Z","message":"Request completed"} +{"level":"debug","transaction_id":"899","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.632371599Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"899","time":"2026-03-06T19:14:48.632503601Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$L2HBhFgfXQzCO8BHH86yr9m8Q1VSqQ8ph7V7oYs5eJY","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488632,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.632684562Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$McspRz8l7Hoj_YvLEgNDSTDvEZf57JeQW4c5tCGyj3E","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488632,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.632703489Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$eFXRB1ZvyIbdfft84DlKpiGh1PKyC5ZW6P-zZeYZLMc","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488632,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.632749446Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2895,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":19.874444,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.640808261Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2896,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":20.354819,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.648299399Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2885,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":135.854728,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.657788373Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211266162851903","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.657904591Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211266162851903","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":267.837474,"time":"2026-03-06T19:14:48.657987773Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2889,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":99.138948,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2841614 bytes>","time":"2026-03-06T19:14:48.664375473Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2900,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":11.505529,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.670046034Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2883,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488440348912_7?ts=1694809925416&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":235.313624,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wie du magst","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.675809275Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1152341090410704898","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":254.659851,"event_ids":{"":"$qaQlXW9K_JmE4UEnxNLXhUo7p2ifbndnonZQ2r9VufI"},"time":"2026-03-06T19:14:48.675925353Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2901,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.414595,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.676198645Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2904,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.617421,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.692279888Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2882,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488437288496_94?ts=1763127435165&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":263.627734,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"deswegen glaube entweder später oder heute nicht mehr","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.701155997Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438885494820835483","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":280.885679,"event_ids":{"":"$vxYO-gyJUdrqWW70yE2YOspQVHHAFvp4lzjqQkyiUPs"},"time":"2026-03-06T19:14:48.701272075Z","message":"Finished handling Discord message"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:14:48.706825929Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2906,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.177141,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.722140444Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2888,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":174.838285,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.731156727Z","message":"Request completed"} +{"level":"debug","transaction_id":"900","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.732958167Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"900","time":"2026-03-06T19:14:48.733038416Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qaQlXW9K_JmE4UEnxNLXhUo7p2ifbndnonZQ2r9VufI","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488733,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.733257302Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2893,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":168.951773,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.772073168Z","message":"Request completed"} +{"level":"debug","transaction_id":"901","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.772177722Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"901","time":"2026-03-06T19:14:48.772263977Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vxYO-gyJUdrqWW70yE2YOspQVHHAFvp4lzjqQkyiUPs","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488772,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.772467706Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2897,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":148.939111,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.779231437Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2908,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":89.666806,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.821016157Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335749550538753","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.821108908Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335749550538753","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":276.891052,"time":"2026-03-06T19:14:48.821173721Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2905,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":134.945383,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:48.827619391Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2911,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":11.776866,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.833489281Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2892,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YZfepJZbSHBUkgmBct:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488602750672_106?ts=1763543981646&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":254.323562,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/die-heart-valentines-opening-heart-funny-heart-gif-20975831","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":480,"mimetype":"video/mp4","size":308536,"w":640},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/tTotThLJMKuAJkdRqIFJwcqG"},"time":"2026-03-06T19:14:48.857295004Z","message":"Request completed"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","message_id":"1440632617392144395","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":355.524531,"event_ids":{"video_https://tenor.com/view/die-heart-valentines-opening-heart-funny-heart-gif-20975831":"$robH31MqaQRmd1q2igomlAwI5tuJhbewse4td_BARGY"},"time":"2026-03-06T19:14:48.857430987Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","action":"initial backfill","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:48.857711054Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2909,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":99.105773,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.871412493Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1194966187625418893","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.871522216Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1194966187625418893","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":284.437994,"time":"2026-03-06T19:14:48.871623277Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2910,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":110.896469,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.890350703Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683353968316418","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.890443174Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683353968316418","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":278.998471,"time":"2026-03-06T19:14:48.890499746Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2898,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488640959400_122?ts=1765466604017&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":250.090633,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber finds doch ganz nice","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.891155285Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448696680093323407","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":270.488475,"event_ids":{"":"$LUNm8OXRhZbvjA-Y24TvdECOWk-C64bo4IqA_LqBPeQ"},"time":"2026-03-06T19:14:48.891212975Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2914,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":27.87983,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.900075674Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2899,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488648558164_81?ts=1756212342178&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":253.470509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":23548,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/FmArWrZnIYnrokNzxQMXHHDj"},"time":"2026-03-06T19:14:48.902254053Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1409881492644958258","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":880.213296,"event_ids":{"":"$McspRz8l7Hoj_YvLEgNDSTDvEZf57JeQW4c5tCGyj3E","1409882750319591485":"$YSSceXrh25d6-qb79HCABbLdySaoDa5hBmq98yauMh4"},"time":"2026-03-06T19:14:48.902406589Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2915,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":17.712408,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.908591048Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2916,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.435205,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.910070027Z","message":"Request completed"} +{"level":"debug","transaction_id":"902","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.917781797Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"902","time":"2026-03-06T19:14:48.917879506Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$robH31MqaQRmd1q2igomlAwI5tuJhbewse4td_BARGY","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488918,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:48.918110404Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488670229859_40?ts=1766781389859&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":254.364419,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"sonst kann ich dir nur sagen im industrial bereich nachgucken, und glück haben","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.924737943Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2918,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":21.715206,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.924828039Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211291609563259","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":266.657629,"event_ids":{"":"$XCcwaAaSrfh1csScWW2SVVvsoSYB8xceq-w4TJ0KxXk"},"time":"2026-03-06T19:14:48.924840751Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2922,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.813052,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.944412569Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2903,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488676494497_95?ts=1758112146127&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":271.713159,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"BacklogManagerPrototypDesign.pdf","info":{"mimetype":"application/pdf","size":2841614},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/OdTyTEodHIcOQbTPKnverrbi"},"time":"2026-03-06T19:14:48.948394204Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1417849847947595796","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1015.996576,"event_ids":{"1417849847674834987":"$E3fHy2FUSpwVWsPGpJyXVdFv3bC1MafRI3KeQT-k3AE"},"time":"2026-03-06T19:14:48.948487653Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2924,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":12.059937,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.961415519Z","message":"Request completed"} +{"level":"debug","transaction_id":"903","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:48.963417547Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"903","time":"2026-03-06T19:14:48.963561911Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YSSceXrh25d6-qb79HCABbLdySaoDa5hBmq98yauMh4","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488963,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:48.963749367Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$LUNm8OXRhZbvjA-Y24TvdECOWk-C64bo4IqA_LqBPeQ","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488963,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.963751812Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$XCcwaAaSrfh1csScWW2SVVvsoSYB8xceq-w4TJ0KxXk","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488963,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:48.963765222Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$E3fHy2FUSpwVWsPGpJyXVdFv3bC1MafRI3KeQT-k3AE","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824488963,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:48.96377039Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2912,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":151.006022,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:48.978822717Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1152349844363554987","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:48.978929715Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1152349844363554987","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":302.672682,"time":"2026-03-06T19:14:48.979025399Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2907,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488722398511_123?ts=1763128933969&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":269.180261,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wir könnten heute abend auch nochmal RV zocken","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:48.991720342Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438891781260312797","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":290.198231,"event_ids":{"":"$U6uuEWYGYzsMYCfPNUus2HHrfmulmwNBqNSlqLm_i5Q"},"time":"2026-03-06T19:14:48.991841937Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2926,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.891897,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:48.992577446Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2927,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.916903,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.007522844Z","message":"Request completed"} +{"level":"debug","transaction_id":"904","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.0226601Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"904","time":"2026-03-06T19:14:49.022756342Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$U6uuEWYGYzsMYCfPNUus2HHrfmulmwNBqNSlqLm_i5Q","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489022,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.022949177Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2923,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":109.319291,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:49.054124443Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2913,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488833664026_13?ts=1723657305936&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":236.055209,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ts?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.069878405Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335773915123812","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":248.556898,"event_ids":{"":"$sNZhZvIa54jE6PauKAFA3e5kisSUwTD37tIgtVU0zpk"},"time":"2026-03-06T19:14:49.069964171Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2931,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.491703,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.084049324Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2928,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":94.952605,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:49.087816194Z","message":"Request completed"} +{"level":"debug","transaction_id":"905","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.10494968Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"905","time":"2026-03-06T19:14:49.105004925Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$sNZhZvIa54jE6PauKAFA3e5kisSUwTD37tIgtVU0zpk","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489105,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.105173385Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2917,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488900315233_15?ts=1704972600720&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":207.207574,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Nice. Wir spielen auch ab und zu SOT zu 4. Gestern wurde es Lethal Company mit Mods. Mal schauen, was für games noch dazu kommen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.107679184Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1194966440088961035","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":235.898413,"event_ids":{"":"$vUn3GyXo6C0V-WIER9mCjUrQOEYarYIiZoEsXrVoLMo"},"time":"2026-03-06T19:14:49.107737363Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2919,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488908709151_6?ts=1727554887037&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":203.3314,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ok also keine direkten aufgaben oder themen?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.112136515Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683413917503489","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":221.522997,"event_ids":{"":"$8vluxRjOIdrpw8HApnixm2MquqjRWd3xmub4e-yCfpA"},"time":"2026-03-06T19:14:49.112190853Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2934,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":17.982767,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.126163Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2920,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488910263141_96?ts=1765466636592&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":223.581806,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bei automatisierungen hattest du mich","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.133948523Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448696816722771968","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":242.568555,"event_ids":{"":"$dVjlnTfregiTv6sdjXj-EVW2Gq6aiu4xelpN2GjuJZk"},"time":"2026-03-06T19:14:49.133997971Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2935,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.730012,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.134307582Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2937,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.328275,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.150743763Z","message":"Request completed"} +{"level":"debug","transaction_id":"906","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.15488422Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"906","time":"2026-03-06T19:14:49.155022158Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vUn3GyXo6C0V-WIER9mCjUrQOEYarYIiZoEsXrVoLMo","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489155,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.155229869Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$fU40Ej6nryRTQ6UijzDpqviEUpfp9JbYtSGMz0Hmdms","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489155,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:49.155258993Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$8vluxRjOIdrpw8HApnixm2MquqjRWd3xmub4e-yCfpA","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489155,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.155243209Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$dVjlnTfregiTv6sdjXj-EVW2Gq6aiu4xelpN2GjuJZk","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489155,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.155258993Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2921,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488925027788_107?ts=1756213699547&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":231.979287,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:49.157098777Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1409887185863442643","message_type":3,"author_id":"316966695430520833","action":"discord message create","handling_time":254.3684,"event_ids":{"":"$fU40Ej6nryRTQ6UijzDpqviEUpfp9JbYtSGMz0Hmdms"},"time":"2026-03-06T19:14:49.157191178Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2930,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":124.70274,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:49.179048863Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211332814409870","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:49.179130718Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211332814409870","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":253.995023,"time":"2026-03-06T19:14:49.17921802Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":2925,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824488961592639_108?ts=1758182016844&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":219.875489,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hey laura hattest du vor auch den Code für die Anmeldung zu schreiben?","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"Hey \u003ca href=\"https://matrix.to/#/@discord_657236326822838283:matrix.theocloud.dev\"\u003elaura\u003c/a\u003e hattest du vor auch den Code für die Anmeldung zu schreiben?","m.mentions":{"user_ids":["@discord_657236326822838283:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.181649438Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418142906975391846","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":232.960988,"event_ids":{"":"$05ol5lFPQJHDlJPUzwaCWmiADyF-phchHySzTB-jvB0"},"time":"2026-03-06T19:14:49.18176342Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2940,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":8.142346,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.187831942Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2941,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.736286,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.192088407Z","message":"Request completed"} +{"level":"debug","transaction_id":"907","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.194149311Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"907","time":"2026-03-06T19:14:49.194216499Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$05ol5lFPQJHDlJPUzwaCWmiADyF-phchHySzTB-jvB0","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489194,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.194421277Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2933,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":120.379926,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:49.208307867Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1152562588232724480","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:49.208413399Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1152562588232724480","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":229.283725,"time":"2026-03-06T19:14:49.208503495Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2944,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":7.378692,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.216352854Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2932,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":147.840143,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:49.232303701Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2929,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489007749971_124?ts=1763128937286&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":233.785616,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"falls interesse besteht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.241703767Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438891795172818964","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":249.517019,"event_ids":{"":"$Vekw3VPybqah26DimF5eqpk9nSfmrlwzbc3t5fUIk04"},"time":"2026-03-06T19:14:49.241781222Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2947,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.892319,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.25715203Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2938,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":142.606795,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:49.277133822Z","message":"Request completed"} +{"level":"debug","transaction_id":"908","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.283850968Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"908","time":"2026-03-06T19:14:49.283953776Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Vekw3VPybqah26DimF5eqpk9nSfmrlwzbc3t5fUIk04","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489284,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.284182998Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2946,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":125.251351,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:49.357773519Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335806907646006","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:49.357873044Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335806907646006","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":287.678044,"time":"2026-03-06T19:14:49.357957483Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2950,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":25.202638,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.383779901Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2936,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489126284595_16?ts=1719208829688&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":262.897603,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Moin. Wann seit ihr mal wieder in der BDR?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.389371959Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1254677512194363393","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":281.527947,"event_ids":{"":"$EmfuNSiMZlgRocpXaG46JMCtWO761p6ZYt9-jJ3ZTnY"},"time":"2026-03-06T19:14:49.389525891Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2949,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":132.860592,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:49.410136892Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683595451039926","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:49.410225103Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683595451039926","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":297.894286,"time":"2026-03-06T19:14:49.410311707Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2953,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.3324,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.410585349Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2939,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489150924235_125?ts=1765470435590&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":267.176347,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja das ist nur ein haken setzen ist kein automatisieren im sinne von logik zusammenfügen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.418232654Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448712750875410584","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":284.123285,"event_ids":{"":"$8NLm7RAlQQYkxsRU3BM3pA29L6ZbUc1rM0MqNhjOG8k"},"time":"2026-03-06T19:14:49.418314439Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2954,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":22.371863,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.433156401Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2956,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.220652,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.439118902Z","message":"Request completed"} +{"level":"debug","transaction_id":"909","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.442060098Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"909","time":"2026-03-06T19:14:49.442168005Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$EmfuNSiMZlgRocpXaG46JMCtWO761p6ZYt9-jJ3ZTnY","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489442,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.442417621Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2942,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489187978191_41?ts=1766781408583&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":259.479105,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"da gibts bei solchen items keiner abkürzung","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.447602847Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211370143715392","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":268.291588,"event_ids":{"":"$XpIZIha1i-yhB3R9Wskq4juePAhqkOeiyVL8QOFCqcA"},"time":"2026-03-06T19:14:49.447713897Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2959,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.394065,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.463875109Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2943,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489192304010_97?ts=1758182038273&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":281.255143,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bzw hattest du schon was auf dem Branch dazu?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.473713784Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418142996855263252","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":291.720512,"event_ids":{"":"$bMYoNhCMj1qI5gCeKQbSf4jPBojRliuWKpozCKEwR6w"},"time":"2026-03-06T19:14:49.473812121Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"910","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.49126339Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"910","time":"2026-03-06T19:14:49.491382959Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8NLm7RAlQQYkxsRU3BM3pA29L6ZbUc1rM0MqNhjOG8k","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489491,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.491628176Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$XpIZIha1i-yhB3R9Wskq4juePAhqkOeiyVL8QOFCqcA","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489491,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.491628176Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$bMYoNhCMj1qI5gCeKQbSf4jPBojRliuWKpozCKEwR6w","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489491,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.49167043Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2961,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.41118,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.492886733Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2945,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489216522920_8?ts=1695160603446&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":283.37234,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"noch bock auf apex?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.500042558Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153811940674650132","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":291.471385,"event_ids":{"":"$YXuTo7rSRkI_AabxFy5kB0TD_2ri69FMuM6oNpPDkVc"},"time":"2026-03-06T19:14:49.500143689Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2963,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.208214,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.515048161Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2951,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":149.098281,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23525 bytes>","time":"2026-03-06T19:14:49.524138685Z","message":"Request completed"} +{"level":"debug","transaction_id":"911","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.528254488Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"911","time":"2026-03-06T19:14:49.528396617Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YXuTo7rSRkI_AabxFy5kB0TD_2ri69FMuM6oNpPDkVc","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489528,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.528593851Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2965,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":13.536122,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.538350042Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2952,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":164.969159,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:49.54913019Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2948,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489257404440_98?ts=1763129082905&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":306.761386,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo gern","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.564370742Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438892405943439441","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":322.464852,"event_ids":{"":"$Nm89B1ISYuXB5Rl6ExswjbIAVURpA4L469yeeKhgbxw"},"time":"2026-03-06T19:14:49.564507982Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2968,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":22.228826,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.587761952Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2955,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":179.15244,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:49.59010013Z","message":"Request completed"} +{"level":"debug","transaction_id":"912","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.610352072Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"912","time":"2026-03-06T19:14:49.610433438Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Nm89B1ISYuXB5Rl6ExswjbIAVURpA4L469yeeKhgbxw","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489610,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.610629695Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2960,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":163.738051,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:49.628035985Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2964,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":146.871571,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:49.6622086Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2967,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.809315,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:49.669097977Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335839258050663","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:49.66917627Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335839258050663","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":311.061642,"time":"2026-03-06T19:14:49.669259662Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":2957,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489433323813_7?ts=1727554935984&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":241.283948,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"perfekt danke dir","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.674757013Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683619215966300","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":264.327622,"event_ids":{"":"$or-GOOGqQiuiUF019eFB0eD0ZRHbGYP0HGueXry2qsY"},"time":"2026-03-06T19:14:49.674843268Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2973,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":11.546667,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.681322113Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2970,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":102.12163,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:49.692381909Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1254677653177241600","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:49.692458596Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1254677653177241600","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":302.6203,"time":"2026-03-06T19:14:49.692539333Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2974,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.358866,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.692801661Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2958,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489439402252_99?ts=1765470457466&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":262.277474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dacht ich mir schon, war nen joke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.701837709Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1448712842630135942","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":283.282523,"event_ids":{"":"$-P628gGWY8PLo5rdgEfkSGgujQQaioC9gIP2nDMmCWY"},"time":"2026-03-06T19:14:49.701923126Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2976,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":18.869554,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.711892685Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2978,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":14.983672,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.717568274Z","message":"Request completed"} +{"level":"debug","transaction_id":"913","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.722663264Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"913","time":"2026-03-06T19:14:49.722737577Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$or-GOOGqQiuiUF019eFB0eD0ZRHbGYP0HGueXry2qsY","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489722,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.722915744Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2971,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":108.954994,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:49.737207001Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211384475648134","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:49.73732238Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211384475648134","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":289.338403,"time":"2026-03-06T19:14:49.737459341Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2962,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489493076843_100?ts=1758182054362&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":257.262872,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hatte den gelöscht, weil ich dachte Domi hat den erstellt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.750473113Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418143064337158154","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":276.386023,"event_ids":{"":"$YjXTbgchABk9RkCWneU3r3oXDnJfz7-SjLa3IGpn8_s"},"time":"2026-03-06T19:14:49.750565584Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2981,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":18.328137,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.756375549Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2982,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":22.994296,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.77420187Z","message":"Request completed"} +{"level":"debug","transaction_id":"914","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.775881366Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"914","time":"2026-03-06T19:14:49.775961615Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-P628gGWY8PLo5rdgEfkSGgujQQaioC9gIP2nDMmCWY","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489776,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.776148234Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2972,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":136.607418,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:49.798977842Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812190780997692","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:49.799067031Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812190780997692","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":298.639712,"time":"2026-03-06T19:14:49.799172772Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2966,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489538589461_82?ts=1756281405629&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":270.338733,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus and alexx are playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus and alexx are playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$McspRz8l7Hoj_YvLEgNDSTDvEZf57JeQW4c5tCGyj3E"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.80918249Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2985,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":15.298522,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.814938747Z","message":"Request completed"} +{"level":"debug","transaction_id":"915","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.818445455Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"915","time":"2026-03-06T19:14:49.818521514Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YjXTbgchABk9RkCWneU3r3oXDnJfz7-SjLa3IGpn8_s","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489818,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.818704151Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2986,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":19.21206,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.828624821Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2969,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489587960933_126?ts=1763145277244&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":269.528423,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"im_jug haste auch lust?","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003ca href=\"https://matrix.to/#/@discord_257943768903188481:matrix.theocloud.dev\"\u003eim_jug\u003c/a\u003e haste auch lust?","m.mentions":{"user_ids":["@discord_257943768903188481:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.857659003Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438960329924022374","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":292.832749,"event_ids":{"":"$hjNRfog748Wqd_pFy_KJ1kQGlDYvjZU64cBapCyTVOc"},"time":"2026-03-06T19:14:49.85774903Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2977,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":167.166187,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:49.860258601Z","message":"Request completed"} +{"level":"debug","transaction_id":"916","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.862885158Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"916","time":"2026-03-06T19:14:49.862966663Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XU8DJm9IjaAB2M0rP8V6VoNjifEByCSxRz-JpWEGMQU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489863,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.863090983Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2989,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":19.955601,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.878289001Z","message":"Request completed"} +{"level":"debug","transaction_id":"917","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.90573532Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"917","time":"2026-03-06T19:14:49.905834007Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hjNRfog748Wqd_pFy_KJ1kQGlDYvjZU64cBapCyTVOc","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489905,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.906038505Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2975,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489681512573_14?ts=1723657328324&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":251.64588,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"so wie immer","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.933298556Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335867817070723","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":263.91688,"event_ids":{"":"$4qKGtxEsGAL2Bhl5vFfthHNNpc8lq_y0gko1y9j5HhQ"},"time":"2026-03-06T19:14:49.933415262Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2992,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":18.821852,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.952967874Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2979,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489712158504_17?ts=1719208870406&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":245.983701,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Nice","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.958311363Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1254677682977767466","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":265.710429,"event_ids":{"":"$3heL-bzwze2cjA31-ROioDGL4PTGplGbRXQRLnhUeDc"},"time":"2026-03-06T19:14:49.958417313Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2990,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":116.21684,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:49.976667996Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683652090789982","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:49.976753343Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683652090789982","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":301.640763,"time":"2026-03-06T19:14:49.976820112Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2994,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":18.766887,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:49.977787497Z","message":"Request completed"} +{"level":"debug","transaction_id":"918","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:49.981034113Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"918","time":"2026-03-06T19:14:49.981119181Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4qKGtxEsGAL2Bhl5vFfthHNNpc8lq_y0gko1y9j5HhQ","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824489981,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:49.981242731Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":2980,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489717738549_127?ts=1765545931658&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":272.143038,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lernt ihr?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:49.990021411Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1449029404335538309","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":287.802084,"event_ids":{"":"$jkDE37CYQxriul120hWxNW5FjhbKPtojysOoh4QZW8c"},"time":"2026-03-06T19:14:49.990114022Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2995,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":23.972996,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.001253578Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2997,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":25.369561,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.016119286Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2983,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489756528644_42?ts=1766781424081&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":267.618449,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja industrial eig immer safe eins dabei","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.024277278Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211435147169793","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":286.661281,"event_ids":{"":"$TOzSE76s-0lVgtGXfMJvlxW8qjMe46ulCqe1f6uLZog"},"time":"2026-03-06T19:14:50.024376384Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3000,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.845172,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.036806135Z","message":"Request completed"} +{"level":"debug","transaction_id":"919","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.041405037Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"919","time":"2026-03-06T19:14:50.041502886Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3heL-bzwze2cjA31-ROioDGL4PTGplGbRXQRLnhUeDc","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490041,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.041700818Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$TOzSE76s-0lVgtGXfMJvlxW8qjMe46ulCqe1f6uLZog","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490041,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.041718838Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$jkDE37CYQxriul120hWxNW5FjhbKPtojysOoh4QZW8c","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490041,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.041740279Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":2984,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489774462382_6?ts=1758182071820&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":277.500425,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Haha alles gut, da ist noch nichts passiert","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.052105285Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418143137561444363","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":301.292739,"event_ids":{"":"$JufRZ5P1zFH8Iewr5Jf-GB1RQfUjWh508SlZVL1IJM8"},"time":"2026-03-06T19:14:50.052186023Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3002,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":17.635721,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.070382996Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":2987,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489815087720_9?ts=1695160669938&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":269.150368,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"I see","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.084417792Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812219562315896","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":285.137323,"event_ids":{"":"$RFkJmIwY4dYT2cFQy-x8e_YpEdofbt7xSneCYCCUdj0"},"time":"2026-03-06T19:14:50.08452074Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"920","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.092798091Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"920","time":"2026-03-06T19:14:50.092919687Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$JufRZ5P1zFH8Iewr5Jf-GB1RQfUjWh508SlZVL1IJM8","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490093,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.093123556Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$RFkJmIwY4dYT2cFQy-x8e_YpEdofbt7xSneCYCCUdj0","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490093,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.093138642Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3004,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.010354,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.101272398Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":2988,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489828836023_83?ts=1756281405629&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":284.37318,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":23525,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/lfwDQeMgABFVIzKcbAzhrRVb"},"time":"2026-03-06T19:14:50.113447784Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410171165753737278","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":956.067124,"event_ids":{"":"$XU8DJm9IjaAB2M0rP8V6VoNjifEByCSxRz-JpWEGMQU","1410171509716156426":"$dtvWRLyudAhSBLYP1l4js8lS80sdeJat1blXwZ2kPug"},"time":"2026-03-06T19:14:50.113575107Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3006,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":20.346298,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.134552709Z","message":"Request completed"} +{"level":"debug","transaction_id":"921","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.143803103Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"921","time":"2026-03-06T19:14:50.143916526Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$dtvWRLyudAhSBLYP1l4js8lS80sdeJat1blXwZ2kPug","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490144,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:50.14407409Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2998,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":162.306983,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:50.163868286Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":2991,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489878475829_43?ts=1763149696567&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":295.806842,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Bin im arc raider fieber","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.174421237Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438978865908289576","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":316.44047,"event_ids":{"":"$U2Sh3N_W6ASutOMMaei3rO11-orjRbR0nUGA6ivberc"},"time":"2026-03-06T19:14:50.174509518Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3009,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.359072,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.18851924Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3001,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":163.399805,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:50.200491665Z","message":"Request completed"} +{"level":"debug","transaction_id":"922","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.209925324Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"922","time":"2026-03-06T19:14:50.21000711Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$U2Sh3N_W6ASutOMMaei3rO11-orjRbR0nUGA6ivberc","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490210,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.210217474Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":2993,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489953197375_15?ts=1723657332129&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":281.763106,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ah okay alles klar","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.235114203Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273335883776393266","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":301.353571,"event_ids":{"":"$KaTL8WulWWsd7CygXnfFfd9gxjoAOwfwQonChuNhC6M"},"time":"2026-03-06T19:14:50.235218548Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3005,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":140.484709,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:50.242115049Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3012,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.360332,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.251363487Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":2996,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824489977966363_18?ts=1719208888709&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":278.076344,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"In welcher Abteilung bist du jetzt?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.256175127Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1254677759746379866","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":297.509175,"event_ids":{"":"$sPWVDaO4xOXQlcqxHaMZi_MgAIYR-Auwme7SwhNFEOE"},"time":"2026-03-06T19:14:50.256270253Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3015,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.212056,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.27225644Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3008,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":109.922798,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:50.273904228Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683669341966360","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:50.273989645Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1289683669341966360","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":297.087957,"time":"2026-03-06T19:14:50.274089799Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"923","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.275415753Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"923","time":"2026-03-06T19:14:50.275501101Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KaTL8WulWWsd7CygXnfFfd9gxjoAOwfwQonChuNhC6M","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490275,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.275691281Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":2999,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490016394046_101?ts=1765545950035&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":266.588624,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo und gehen beide gleich ins gym","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.283112367Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1449029481414262965","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":292.736927,"event_ids":{"":"$SJzSTfbvJkH63ygP0IC6mTaLd3QrlcS34tp3UykYK9k"},"time":"2026-03-06T19:14:50.283192197Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3017,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.794401,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.290374003Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3011,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":115.597409,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:50.316258371Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211472543711414","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:50.316376474Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211472543711414","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":291.790494,"time":"2026-03-06T19:14:50.316459726Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"924","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.317872285Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"924","time":"2026-03-06T19:14:50.317973487Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$sPWVDaO4xOXQlcqxHaMZi_MgAIYR-Auwme7SwhNFEOE","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490318,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.318205293Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$SJzSTfbvJkH63ygP0IC6mTaLd3QrlcS34tp3UykYK9k","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490318,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.318236513Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3003,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490070610822_7?ts=1758182107298&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":260.765039,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wie ihr denkt, ich kann das gerne übernehmen, aber wenn ihr das machen wollt, dann werde ich euch nicht davon abhalten","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.331516454Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418143286366830694","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":279.134454,"event_ids":{"":"$SCZ_10y7OFTnfQlSfNwiG8ej1HWQ6LS2lFZmHWEqAC4"},"time":"2026-03-06T19:14:50.33160662Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3019,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":26.151584,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.343075482Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3020,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":20.807815,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.352986933Z","message":"Request completed"} +{"level":"debug","transaction_id":"925","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.37056238Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"925","time":"2026-03-06T19:14:50.370653943Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SCZ_10y7OFTnfQlSfNwiG8ej1HWQ6LS2lFZmHWEqAC4","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490370,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.370874784Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3013,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":135.049308,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:50.377374302Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812278391615612","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:50.377501415Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812278391615612","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":292.670995,"time":"2026-03-06T19:14:50.377603105Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3007,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490134720749_76?ts=1756281483677&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":259.06962,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Alex suckt!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.39394919Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410171493110910976","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":280.111476,"event_ids":{"":"$1ToyGj6bk9TABNFXI6py5LpggbjMz-nIItPm_mryXpU"},"time":"2026-03-06T19:14:50.394068481Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3023,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":18.664358,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.396869014Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3024,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":30.114572,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.424984353Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3014,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":185.475955,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:50.437164697Z","message":"Request completed"} +{"level":"debug","transaction_id":"926","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.452932908Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"926","time":"2026-03-06T19:14:50.453014413Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1ToyGj6bk9TABNFXI6py5LpggbjMz-nIItPm_mryXpU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490453,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.453236302Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3016,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":184.938101,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:50.457551923Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3018,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":169.479012,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:50.460111012Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3010,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490188696150_102?ts=1763150507362&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":295.759488,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lol","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.484602796Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438982266628870226","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":309.812443,"event_ids":{"":"$P3km903FZMOjHOw66f6ZK0S7dLqB-BkXzeoJdEK2ECg"},"time":"2026-03-06T19:14:50.484692544Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3030,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.376471,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.50671296Z","message":"Request completed"} +{"level":"debug","transaction_id":"927","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.528773955Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"927","time":"2026-03-06T19:14:50.528867474Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$P3km903FZMOjHOw66f6ZK0S7dLqB-BkXzeoJdEK2ECg","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490529,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.529071832Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3027,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":126.46458,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:50.563864437Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273336617112965130","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:50.564020604Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273336617112965130","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":328.46381,"time":"2026-03-06T19:14:50.564132212Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3032,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.161913,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.582975785Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3028,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":125.723834,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:50.583467753Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1254677888138084454","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:50.583524535Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1254677888138084454","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":326.912964,"time":"2026-03-06T19:14:50.583583622Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3029,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":128.280827,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:50.588529639Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1296466731174203465","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:50.58863091Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1296466731174203465","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":314.419446,"time":"2026-03-06T19:14:50.588690555Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3034,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.846357,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.592900784Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3035,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":9.920879,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.59907365Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3021,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490343362185_44?ts=1766781446795&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":259.036095,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ne, gibts außerhalb industrial eig garnicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.602574003Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454211530416459877","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":286.015869,"event_ids":{"":"$1DgqLFSD3-EGZRfgqTXx_QQfKO_XobstdERgfDGM_Qs"},"time":"2026-03-06T19:14:50.602647686Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3038,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.722184,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.618939504Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3022,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490353213082_109?ts=1758182262102&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":274.989038,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Nein alles gut, aber wir machen ja neben der Main Page auch die Datenbank grad und ich glaub du brauchst diese Datenbankintegration im Main bevor du richtig arbeiten kannst right?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.628373862Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418143935662002186","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":296.565957,"event_ids":{"":"$hkF6slSOVJM2ct5ftJwabv1S_0GXZuFtKQJfGPzi1sQ"},"time":"2026-03-06T19:14:50.628472269Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"928","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.643621957Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"928","time":"2026-03-06T19:14:50.643714428Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1DgqLFSD3-EGZRfgqTXx_QQfKO_XobstdERgfDGM_Qs","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490643,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.643886659Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3040,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":15.319473,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.644298658Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3025,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490397132459_10?ts=1695160698259&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":265.11642,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"oha","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.662453028Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812338349191219","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":284.69159,"event_ids":{"":"$KvZlQDC40MSbNbf2WVj2eeyIN-OuBLJKFHzsvHlZdk0"},"time":"2026-03-06T19:14:50.662561423Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3042,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":12.875973,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.676359314Z","message":"Request completed"} +{"level":"debug","transaction_id":"929","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.678148812Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"929","time":"2026-03-06T19:14:50.678263213Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hkF6slSOVJM2ct5ftJwabv1S_0GXZuFtKQJfGPzi1sQ","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490678,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.678495089Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$KvZlQDC40MSbNbf2WVj2eeyIN-OuBLJKFHzsvHlZdk0","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490678,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.678523236Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3026,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490425232083_87?ts=1756281485382&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":261.28711,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"good game","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.686703297Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410171500262068286","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":292.303485,"event_ids":{"":"$LLXnKNHpSpArGgKUXRoN3IkMkN5xbcNyGDgPQQ5aWmU"},"time":"2026-03-06T19:14:50.686828385Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3033,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":120.900389,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:50.704225665Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3036,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":130.00607,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:50.723268847Z","message":"Request completed"} +{"level":"debug","transaction_id":"930","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.728111148Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"930","time":"2026-03-06T19:14:50.728211651Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LLXnKNHpSpArGgKUXRoN3IkMkN5xbcNyGDgPQQ5aWmU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490728,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.728454702Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3031,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490506991142_103?ts=1763150530978&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":257.065986,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"domi hat sichs jetzt auch runtergeladen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.764249403Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438982365681549594","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":279.365562,"event_ids":{"":"$c1NHbyf2vSRlNWTDDckbc4rIvAh95xlaEk8-cJBc9fs"},"time":"2026-03-06T19:14:50.764384827Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3039,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":148.850132,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:50.768125158Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3046,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":23.688668,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.788939958Z","message":"Request completed"} +{"level":"debug","transaction_id":"931","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.809777247Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"931","time":"2026-03-06T19:14:50.809860569Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$c1NHbyf2vSRlNWTDDckbc4rIvAh95xlaEk8-cJBc9fs","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490809,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.810016945Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3044,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":122.348848,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:50.826814001Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273336919698309160","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:50.826942162Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273336919698309160","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":262.615719,"time":"2026-03-06T19:14:50.827034912Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3037,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490599293513_8?ts=1730044508390&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":237.551997,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hab übrigens rausgefunden, dass das Anwendungsfalldiagramm das use-case Diagramm aus den Folien ist. Aber habs noch nicht gemacht. Hab gar keine Lust","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.837079133Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300125642716610601","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":248.332634,"event_ids":{"":"$qrgOuReXaJsvW4jbgc9eb9gJUnjaiQWrbV46O0qirU4"},"time":"2026-03-06T19:14:50.837207293Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3050,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":11.704789,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.839379037Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3045,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":123.126611,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:50.846599956Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1254678027778920569","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:50.846689074Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1254678027778920569","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":263.060754,"time":"2026-03-06T19:14:50.846773444Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3051,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.846431,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.851849996Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3053,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":12.436177,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.859700891Z","message":"Request completed"} +{"level":"debug","transaction_id":"932","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.863952606Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"932","time":"2026-03-06T19:14:50.864043681Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qrgOuReXaJsvW4jbgc9eb9gJUnjaiQWrbV46O0qirU4","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490864,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.864274998Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3047,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":167.931588,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:50.936255516Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212028796244211","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:50.936387798Z","message":"Failed to send part of message to Matrix"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3041,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490644467886_8?ts=1758182299472&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":291.760602,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Exactly ^^","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.936416922Z","message":"Request completed"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212028796244211","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":333.50139,"time":"2026-03-06T19:14:50.936471748Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418144092403142676","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":307.794352,"event_ids":{"":"$v0dkqDcY36DnLv3LfQ5BzK5CeljvVukzI-GU6Ey1Evk"},"time":"2026-03-06T19:14:50.936538936Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3058,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.725471,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.957300167Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.109953,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.957381952Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3043,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490676622130_11?ts=1695160720846&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":286.869131,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"für dich, oder als Aufgabe für iwas?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:50.963689753Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812433085935687","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":300.763404,"event_ids":{"":"$EQbWsS8q2gcexwvluEzQ9TOi4EtUk2ZEg9-c7qKKk4U"},"time":"2026-03-06T19:14:50.963817564Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"933","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.973365067Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"933","time":"2026-03-06T19:14:50.973448598Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$v0dkqDcY36DnLv3LfQ5BzK5CeljvVukzI-GU6Ey1Evk","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490973,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.973653446Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.74027,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:50.977367236Z","message":"Request completed"} +{"level":"debug","transaction_id":"934","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:50.997544167Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"934","time":"2026-03-06T19:14:50.997633286Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$EQbWsS8q2gcexwvluEzQ9TOi4EtUk2ZEg9-c7qKKk4U","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824490997,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:50.997832616Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3054,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":153.383102,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.005623935Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3048,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490789206196_104?ts=1763150548187&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":251.530221,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wären beide ready","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.040914235Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438982437861462230","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":276.160293,"event_ids":{"":"$57qlOyoxh2n5ey5jq_T15B3_Js4Hd9BT-ySK47Ogh64"},"time":"2026-03-06T19:14:51.041006846Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3056,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":146.776516,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23593 bytes>","time":"2026-03-06T19:14:51.048826173Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3059,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":93.08691,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.050768834Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3064,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.986613,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.063574127Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3065,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":19.924521,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.069375083Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3052,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490839621949_16?ts=1723733424838&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":235.868101,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"oh da beginnt die neue Sucht xD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.075627778Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655039730257980","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":248.431112,"event_ids":{"":"$hmHllfqPG9CnHF4dwcdAWZXQgVsJAV2VpOKjOxzv8s8"},"time":"2026-03-06T19:14:51.075707888Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"935","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.085527076Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"935","time":"2026-03-06T19:14:51.08564064Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$57qlOyoxh2n5ey5jq_T15B3_Js4Hd9BT-ySK47Ogh64","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491085,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.085804839Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3069,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.746349,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.09104566Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3062,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":118.41652,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.096076815Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3055,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490859905389_19?ts=1725528019562&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":246.3818,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Was machen sachen?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.106426246Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281182115559378965","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":259.556489,"event_ids":{"":"$Z9Pxjw1KsDnrd2bWKRW6ENtzE5ACWhixnz-Znrhrons"},"time":"2026-03-06T19:14:51.106520114Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3063,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":113.063742,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.11892577Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300125733657772146","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.119036889Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300125733657772146","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":281.478079,"time":"2026-03-06T19:14:51.119121398Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3072,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.413765,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.126586764Z","message":"Request completed"} +{"level":"debug","transaction_id":"936","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.129794338Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"936","time":"2026-03-06T19:14:51.129914955Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hmHllfqPG9CnHF4dwcdAWZXQgVsJAV2VpOKjOxzv8s8","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491130,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.13012979Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$Z9Pxjw1KsDnrd2bWKRW6ENtzE5ACWhixnz-Znrhrons","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491130,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.130154025Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3073,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.089062,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.132755159Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3060,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824490957576393_105?ts=1758182319012&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":208.517535,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Lass es einfach so machen, dass du dann einfach alle Funktionen schreibst in der Postgresintegration zur Userverwaltung und wir machen den Rest jetzt einfach schon","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.166284667Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418144174359973898","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":229.372355,"event_ids":{"":"$Hr0f_lfZuFql5OwndFgf8Ut0IVewlYfjCjfOryrGsOE"},"time":"2026-03-06T19:14:51.166427145Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3066,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":116.603277,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.167507186Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212044244127916","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.167560126Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212044244127916","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":230.83548,"time":"2026-03-06T19:14:51.167613136Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3076,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.041435,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.185115389Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3077,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.972432,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.187929542Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3071,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":102.463927,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.198648438Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812467202404444","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.198697118Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812467202404444","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":234.465739,"time":"2026-03-06T19:14:51.198737278Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"937","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.200175958Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"937","time":"2026-03-06T19:14:51.200221565Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Hr0f_lfZuFql5OwndFgf8Ut0IVewlYfjCjfOryrGsOE","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491200,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.200452044Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3080,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":9.851595,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.208850642Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3070,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":121.607752,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.21308371Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3075,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":98.092921,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.231287597Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3074,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":109.157745,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.236083244Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3068,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491069613944_84?ts=1756299199630&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":210.544077,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 1 day streak!** 🔥 Here are yesterday's results:\n👑 5/6: @lagopodus @alexx\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 1 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 5/6: @lagopodus @alexx\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$6HivJCgoHnTJPts0cyaCZEf01p1iGkWmU7tJouTNA40"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.280470215Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3067,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491063806423_106?ts=1763150631471&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":219.165402,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"marcys wie siehts bei dir aus?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.283106201Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438982787179876484","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":241.897511,"event_ids":{"":"$CG8-cUBpV2zju3dnjcy5DuuvNhNNHKfeAEoLdtt89TE"},"time":"2026-03-06T19:14:51.283201256Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3079,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":99.344144,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.287592656Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3085,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":18.645779,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.299360094Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3086,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":19.539411,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.303410594Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3082,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":99.258308,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.312507334Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655106163703930","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.312591774Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655106163703930","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":236.635737,"time":"2026-03-06T19:14:51.312662314Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"938","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.317099112Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"938","time":"2026-03-06T19:14:51.317202199Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gu3lVq0IHtWJdNT-nRjc5HFtxgPM7LLUvKWfo735xyg","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491317,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.317428348Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3090,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":11.967745,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.325053164Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3083,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":110.911415,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.34239911Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300125801592782901","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.342479778Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300125801592782901","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":223.217159,"time":"2026-03-06T19:14:51.342567709Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3084,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":116.879083,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.353108577Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220274565419050","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.353186801Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220274565419050","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":246.404849,"time":"2026-03-06T19:14:51.353277875Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3092,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.680839,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.36074345Z","message":"Request completed"} +{"level":"debug","transaction_id":"939","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.367933848Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"939","time":"2026-03-06T19:14:51.368020242Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$CG8-cUBpV2zju3dnjcy5DuuvNhNNHKfeAEoLdtt89TE","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491368,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.36821587Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3093,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":15.77687,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.369501107Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3078,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491185295373_107?ts=1758182332971&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":224.045907,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dann hast du direkt Code an dem du dich auch orientieren kannst","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.409543822Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418144232908263506","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":242.886197,"event_ids":{"":"$JWl43sF4CZINZ8vkNYyUQi1K1lLjU1kPSUrYv7oTnQA"},"time":"2026-03-06T19:14:51.409683506Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3087,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":128.190801,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.415957294Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212071003656446","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.416038101Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212071003656446","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":248.371047,"time":"2026-03-06T19:14:51.416102985Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3081,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491209000593_12?ts=1695160733987&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":238.196292,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"nice","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.447375611Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812488203272253","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":248.65335,"event_ids":{"":"$Mocdmu5eg1GF_JNMeB93Iy4FXBJtatdr9HmvYe4RqJA"},"time":"2026-03-06T19:14:51.447484565Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3096,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":37.139233,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.447661335Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3097,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":37.519664,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.454095271Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3099,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.283083,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.460459156Z","message":"Request completed"} +{"level":"debug","transaction_id":"940","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.464200883Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"940","time":"2026-03-06T19:14:51.464293983Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$JWl43sF4CZINZ8vkNYyUQi1K1lLjU1kPSUrYv7oTnQA","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491464,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.464504837Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"941","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.486225141Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"941","time":"2026-03-06T19:14:51.486359168Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Mocdmu5eg1GF_JNMeB93Iy4FXBJtatdr9HmvYe4RqJA","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491486,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.486589997Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3094,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":130.073049,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.491118707Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3088,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491299549157_85?ts=1756299199630&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":232.714235,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 solved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":23593,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/beyoUkNjpyZruaiguGeQJyFu"},"time":"2026-03-06T19:14:51.53253424Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410245799203573790","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":845.398759,"event_ids":{"":"$gu3lVq0IHtWJdNT-nRjc5HFtxgPM7LLUvKWfo735xyg","1410245799010631831":"$rU14uYd7cj-TfNxXSFPzzM2eBvqm4iT95dOUgQMwM1c"},"time":"2026-03-06T19:14:51.532629156Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3100,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":91.923547,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.546435567Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3089,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491303560266_45?ts=1763150989871&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":252.434118,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Geht nur zu dritt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.556132253Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438984290418430036","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":272.633608,"event_ids":{"":"$5s_lWzrQIn42O48GS7sJmA2ONFLqaQ-7WCQUw0XHSCM"},"time":"2026-03-06T19:14:51.556215505Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3091,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491325233846_17?ts=1723733450336&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":233.04417,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wie ist es?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.558434323Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655146676621334","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":245.683169,"event_ids":{"":"$YRVCYOSPpiXSZCphKLMZdJMvgvTP9ikRgc_mSFOL9eI"},"time":"2026-03-06T19:14:51.558509193Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3104,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":28.387723,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.585114962Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3105,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.814528,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.586795017Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3101,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":128.652388,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.589393217Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3049,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":806.294445,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<3413230 bytes>","time":"2026-03-06T19:14:51.60181822Z","message":"Request completed"} +{"level":"debug","transaction_id":"942","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.603680353Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"942","time":"2026-03-06T19:14:51.60377904Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$rU14uYd7cj-TfNxXSFPzzM2eBvqm4iT95dOUgQMwM1c","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491603,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:51.603961608Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3095,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491369684722_20?ts=1725537153882&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":241.541106,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Uni?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.611381786Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220427674419200","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":257.988391,"event_ids":{"":"$JNHbzkscS1uXd8AiXLofNe-FpbOZtFTA-Oxm4N-trn4"},"time":"2026-03-06T19:14:51.611475793Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3109,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.426962,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.618676387Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3110,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.148571,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.628301834Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3102,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":138.727269,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.629998022Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300125843032506519","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.630110817Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300125843032506519","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":287.431151,"time":"2026-03-06T19:14:51.630199028Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3113,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":9.726717,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.640452775Z","message":"Request completed"} +{"level":"debug","transaction_id":"943","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.644064596Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"943","time":"2026-03-06T19:14:51.644157137Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5s_lWzrQIn42O48GS7sJmA2ONFLqaQ-7WCQUw0XHSCM","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491644,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.644386848Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$YRVCYOSPpiXSZCphKLMZdJMvgvTP9ikRgc_mSFOL9eI","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491644,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.644386848Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$JNHbzkscS1uXd8AiXLofNe-FpbOZtFTA-Oxm4N-trn4","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491644,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.644405496Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3098,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491447871630_9?ts=1758182346275&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":228.730155,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Klingt gut 👍","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.676738397Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418144288709148724","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":266.703305,"event_ids":{"":"$gAhMi_GUgfS-FbIio-6tweefshz_8KHxx6fOE73MW38"},"time":"2026-03-06T19:14:51.676829471Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3103,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":133.552728,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.680160038Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212222539792466","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.680276535Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212222539792466","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":264.132832,"time":"2026-03-06T19:14:51.680422435Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.151016,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.694646922Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3116,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.977599,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.698965896Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3108,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":115.234439,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.704750369Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812533057171488","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.704834459Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812533057171488","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":257.055229,"time":"2026-03-06T19:14:51.704906327Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"944","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.710449844Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"944","time":"2026-03-06T19:14:51.710541337Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gAhMi_GUgfS-FbIio-6tweefshz_8KHxx6fOE73MW38","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491710,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.710744997Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3119,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.769392,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.715144499Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3107,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":129.778314,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.716893278Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3112,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":103.348689,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.732070833Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3118,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":88.231129,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.787480793Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3106,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491585288590_46?ts=1763151003431&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":218.895671,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Gibt nur 1-3er teams","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.80437507Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438984347293057044","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":247.989778,"event_ids":{"":"$QHeKZf0F4vihRgZJoT8BIFdjZlCS8UA5_TUN9iMeqm8"},"time":"2026-03-06T19:14:51.804474804Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3121,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":95.264101,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.812324652Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655163965669416","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.812464825Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655163965669416","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":253.829427,"time":"2026-03-06T19:14:51.812569868Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491618920277_128?ts=1765646231523&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":194.301428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"AEAE3E88-BC64-4342-81A8-A66869229ECD.png","info":{"h":1080,"mimetype":"image/png","size":3413230,"w":1920},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/PPQMtKliKkWmNMglStgyVZwS"},"time":"2026-03-06T19:14:51.81345882Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1449450092460249140","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":1530.074626,"event_ids":{"1449450092439539762":"$XD9rub7ihcn52bnLN14heh-1v7QbGkM8DXtQDiKT2kg"},"time":"2026-03-06T19:14:51.813558345Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3125,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":25.679521,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.830869928Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3120,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":117.363929,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.832838292Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3126,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":23.498487,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.836634427Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3127,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":23.892118,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.838052364Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491640739966_9?ts=1730044577222&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":212.013837,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber zum beispiel beim aktivitätsprogramm muss man doch theoretisch jeden möglichen ablauf aufschreiben oder?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.852927431Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300125931419078656","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":222.625177,"event_ids":{"":"$Di2DzHqLXSavKC8z15l38oP5uWnyJbVXEno0TABFXj4"},"time":"2026-03-06T19:14:51.853034639Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"945","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.861550991Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"945","time":"2026-03-06T19:14:51.861636268Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QHeKZf0F4vihRgZJoT8BIFdjZlCS8UA5_TUN9iMeqm8","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491861,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.86185257Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3122,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":134.642407,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.866853902Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220466991829052","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.866935896Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220466991829052","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":255.16488,"time":"2026-03-06T19:14:51.867005529Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":13.579774,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.867318492Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3123,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":135.399845,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23368 bytes>","time":"2026-03-06T19:14:51.871457133Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3133,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.090456,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.877585649Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3135,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":8.882953,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.880852729Z","message":"Request completed"} +{"level":"debug","transaction_id":"946","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.88792181Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"946","time":"2026-03-06T19:14:51.888029995Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XD9rub7ihcn52bnLN14heh-1v7QbGkM8DXtQDiKT2kg","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491888,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:51.888235332Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$Di2DzHqLXSavKC8z15l38oP5uWnyJbVXEno0TABFXj4","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491888,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.888237706Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3117,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491694885154_108?ts=1758182424066&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":215.74013,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wir können dann deinen Branch von dem Issue nochmal neu erstellen aus der Main, wenn wir dann fertig sind","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:51.910826359Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418144614988255262","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":233.731277,"event_ids":{"":"$G76dlwGkfRXy3mkPCVKhjbEw-sDSP6KPjD8r3qkDBLo"},"time":"2026-03-06T19:14:51.910939504Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3124,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":127.669777,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.915307995Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212270442680441","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.915449356Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212270442680441","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":234.889262,"time":"2026-03-06T19:14:51.915549789Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3138,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":17.294612,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.929136337Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.874652,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.934942043Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3129,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.668709,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:51.940705772Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812591450271915","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:51.940807253Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812591450271915","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":235.797211,"time":"2026-03-06T19:14:51.940891273Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"947","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:51.947375915Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"947","time":"2026-03-06T19:14:51.947453998Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$G76dlwGkfRXy3mkPCVKhjbEw-sDSP6KPjD8r3qkDBLo","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824491947,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:51.947647601Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3142,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.223017,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:51.951575458Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3136,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":99.520077,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:51.977428746Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3130,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491836791641_18?ts=1723733460636&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":187.654754,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Sieht ja auf der Shopseite ganz cool aus","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.024619743Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655189877817377","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":211.93715,"event_ids":{"":"$cD8wcvC_Hvk9zn7SHd-vFW3y4woO3txtLWw8O7NGwX4"},"time":"2026-03-06T19:14:52.024750767Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3141,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":101.58622,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.03682125Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3145,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":26.417054,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.051885032Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3131,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491838221801_129?ts=1765646234106&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":221.533193,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Es beginnt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.05989377Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1449450103294394500","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":246.062761,"event_ids":{"":"$sRjnD6aqWN7nMWFksA2-Rm-iPWBmbt8FuDBy7cZRbWE"},"time":"2026-03-06T19:14:52.059992597Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3128,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491831023651_109?ts=1763151019881&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":233.317742,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dachte du suchtest arc raiders","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.064499725Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438984416289620220","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":259.744924,"event_ids":{"":"$v19hmhZtM7Mch6CCrdSYaTBWhIcblCmPG9dc3N5kn7Y"},"time":"2026-03-06T19:14:52.064612521Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3143,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":123.230675,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.075123776Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3148,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":21.884574,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.087079299Z","message":"Request completed"} +{"level":"debug","transaction_id":"948","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.090804194Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"948","time":"2026-03-06T19:14:52.090882488Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3134,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491867571810_10?ts=1730044589986&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":223.144802,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich kann von jedem fenster in jedes fenster gehen und das stackt sich doch","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.090849592Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300125984955043870","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":237.507298,"event_ids":{"":"$n_of_mJD9wSWpxeRNmVL_GrJqHqWZ7J9BW_tFG1_r6g"},"time":"2026-03-06T19:14:52.090929631Z","message":"Finished handling Discord message"} +{"level":"debug","message_checkpoint":{"event_id":"$cD8wcvC_Hvk9zn7SHd-vFW3y4woO3txtLWw8O7NGwX4","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492091,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.091112478Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3151,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.102413,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.115667399Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3144,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":146.339862,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.123933366Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220475397210154","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.124015152Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220475397210154","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":256.89585,"time":"2026-03-06T19:14:52.124091769Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3137,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491881000305_86?ts=1756367233403&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":243.987469,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lagopodus and alexx were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"lagopodus and alexx were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$gu3lVq0IHtWJdNT-nRjc5HFtxgPM7LLUvKWfo735xyg"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.125199187Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3155,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":23.198935,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.148551146Z","message":"Request completed"} +{"level":"debug","transaction_id":"949","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.148580619Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"949","time":"2026-03-06T19:14:52.148812146Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$sRjnD6aqWN7nMWFksA2-Rm-iPWBmbt8FuDBy7cZRbWE","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492148,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.148997088Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$v19hmhZtM7Mch6CCrdSYaTBWhIcblCmPG9dc3N5kn7Y","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492148,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.149013781Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$n_of_mJD9wSWpxeRNmVL_GrJqHqWZ7J9BW_tFG1_r6g","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492149,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.149059108Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$I6d6Igaau2cj6bCSL0nqxc6R4-ZaZ10KgB_PuHU9Ka8","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492149,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.149141173Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3154,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":26.354266,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.151237627Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3140,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824491929298371_10?ts=1758182460032&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":253.171303,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Sagt einfach bescheid, wenn ihr soweit seid 🙂","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.182660134Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418144765840719902","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":271.293546,"event_ids":{"":"$7V8DBXAGAiXKhhzAjX0wDhx5MR5VtXz9w4KdFWfe4EU"},"time":"2026-03-06T19:14:52.18276832Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3146,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":149.705769,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.186707072Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212327309054124","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.186776775Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454212327309054124","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":271.088838,"time":"2026-03-06T19:14:52.186857233Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3158,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.899584,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.204405023Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3152,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.821175,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<29158 bytes>","time":"2026-03-06T19:14:52.2069873Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3149,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":143.119646,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.218451413Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812649151316051","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.218574824Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812649151316051","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":277.597714,"time":"2026-03-06T19:14:52.218664921Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"950","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.223863697Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"950","time":"2026-03-06T19:14:52.223917126Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7V8DBXAGAiXKhhzAjX0wDhx5MR5VtXz9w4KdFWfe4EU","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492224,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.224124488Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3160,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":17.792517,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.225188674Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3147,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":175.076447,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.227299725Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3161,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.426888,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.231642026Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3153,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":134.666153,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.250643512Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3157,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":102.37851,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.254041127Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3159,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":92.481656,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.297221015Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3163,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":74.694517,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.302255731Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655255942434948","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.30232718Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655255942434948","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":277.286637,"time":"2026-03-06T19:14:52.302408267Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3150,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492087247060_47?ts=1763151044297&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":245.143917,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ja, dachte du redest von arc","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.332536807Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438984518697484379","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":267.698626,"event_ids":{"":"$V7iHoyUi7y4rBGhS-CsM6Xlq9D1782v5y__u_S5Ftn8"},"time":"2026-03-06T19:14:52.332642129Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3168,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":30.007504,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.333016065Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3164,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":107.372718,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.33923775Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3169,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":18.255292,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.351595494Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3156,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492148720164_87?ts=1756367233403&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":227.922709,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":23368,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/FaULGBcLOzzqnxEJncZdpTTk"},"time":"2026-03-06T19:14:52.376889416Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410531153529671722","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":844.045426,"event_ids":{"":"$I6d6Igaau2cj6bCSL0nqxc6R4-ZaZ10KgB_PuHU9Ka8","1410531645181788190":"$QUM1cKoK1d49r16uEw86FxcwW32uUwLingjYjPymbCY"},"time":"2026-03-06T19:14:52.377002351Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3165,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":127.863939,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.378675072Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126044547715103","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.378784236Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126044547715103","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":287.610367,"time":"2026-03-06T19:14:52.378872167Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3166,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":127.197784,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.381417357Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220696504274995","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.381515975Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220696504274995","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":257.346471,"time":"2026-03-06T19:14:52.381599925Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"951","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.393175436Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"951","time":"2026-03-06T19:14:52.393272307Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$V7iHoyUi7y4rBGhS-CsM6Xlq9D1782v5y__u_S5Ftn8","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492393,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.393467516Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":27.067566,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.404741658Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3174,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.14481,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.406615456Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3175,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":26.377874,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.408476402Z","message":"Request completed"} +{"level":"debug","transaction_id":"952","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.432540053Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"952","time":"2026-03-06T19:14:52.432663534Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QUM1cKoK1d49r16uEw86FxcwW32uUwLingjYjPymbCY","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492432,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:52.432895969Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3167,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":155.016502,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.452449069Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454213367450566687","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.452555648Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454213367450566687","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":265.62529,"time":"2026-03-06T19:14:52.452635268Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3162,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492225325914_130?ts=1765646240092&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":244.755244,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cimg data-mx-emoticon src=\"mxc://matrix.theocloud.dev/OfUXKospOtSxiuVblhdIKLBE\" alt=\":papaBased:\" title=\":papaBased:\" height=\"32\"/\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.470282653Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1449450128401367141","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":410.160219,"event_ids":{"":"$rQ2LXnxTyYpwgQavQzS2SYAr0IjhK1t_Fq2ZhWVva7E"},"time":"2026-03-06T19:14:52.470475976Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3171,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":138.701498,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.478160437Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812717749145612","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.478254794Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153812717749145612","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":259.422322,"time":"2026-03-06T19:14:52.478326243Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3179,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.107711,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.485295869Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3180,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":10.224693,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.489100943Z","message":"Request completed"} +{"level":"debug","transaction_id":"953","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.495673237Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"953","time":"2026-03-06T19:14:52.495797346Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$rQ2LXnxTyYpwgQavQzS2SYAr0IjhK1t_Fq2ZhWVva7E","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492495,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.496020632Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3177,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":132.137166,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.53912069Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3170,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492333304653_19?ts=1723733482318&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":240.740294,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"joa mal schauen. Es ist schon echt warm in meinem Zimmer","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.574270188Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655280818716726","message_type":19,"author_id":"204925152230768641","action":"discord message create","handling_time":271.819248,"event_ids":{"":"$dQA5OZmbU8SBlKzKmKZjttuhVjiRhzXVNIrTOarqpFQ"},"time":"2026-03-06T19:14:52.574390806Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3183,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":47.878873,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1675325 bytes>","time":"2026-03-06T19:14:52.579354563Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3185,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.419344,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.586692467Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3186,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.7879,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.590485877Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492351753268_48?ts=1763151046164&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":260.180949,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Lol","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.612129775Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438984526528512152","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":279.202898,"event_ids":{"":"$K28CaFnqyjv8brYISP59ylZFmOfv_MIT1DbyrcJWvV8"},"time":"2026-03-06T19:14:52.612248925Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"954","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.61532813Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"954","time":"2026-03-06T19:14:52.615469979Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$dQA5OZmbU8SBlKzKmKZjttuhVjiRhzXVNIrTOarqpFQ","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492615,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.615727348Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3178,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492408754723_21?ts=1725537225058&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":216.827013,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ja ka","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.625723866Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220726208204810","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":244.006955,"event_ids":{"":"$EFqMUgOaiOWTY99x-cGseU6dTUPBnZ7HeYLh0Q3gqTE"},"time":"2026-03-06T19:14:52.625782463Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3189,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":26.674004,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.639683511Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3176,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492405027383_88?ts=1756367355195&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":239.491027,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hacker","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.644664869Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410531664362340422","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":267.382451,"event_ids":{"":"$sMiBJrEc1HODm98YtEIQET6vf3lKgGvpqtyWYP8yy1Y"},"time":"2026-03-06T19:14:52.644760203Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3190,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":20.396375,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.646644197Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3184,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":112.594333,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.651965826Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126058233860157","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.652065631Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126058233860157","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":273.062789,"time":"2026-03-06T19:14:52.652180032Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"955","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.661588269Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"955","time":"2026-03-06T19:14:52.661714125Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$K28CaFnqyjv8brYISP59ylZFmOfv_MIT1DbyrcJWvV8","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492661,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.661967024Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$EFqMUgOaiOWTY99x-cGseU6dTUPBnZ7HeYLh0Q3gqTE","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492661,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.661980852Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$sMiBJrEc1HODm98YtEIQET6vf3lKgGvpqtyWYP8yy1Y","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492661,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.661988186Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3193,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":10.800681,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.663547134Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3182,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492489317245_13?ts=1695160873694&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":209.457052,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"auf ez entspannt lets go","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.698935633Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153813074176913478","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":220.461184,"event_ids":{"":"$lugQrQ5KjyTf3xN6R--y3uifloHbFGrxuyyTtmNxhfE"},"time":"2026-03-06T19:14:52.699035647Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3181,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492485544018_110?ts=1765646327721&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":219.923399,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Krautsauer auf die 1","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.705642791Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1449450495944167495","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":234.89457,"event_ids":{"":"$2K5-CKAcAnKfJllTG-FZ7XZc_OU2N0muaJWy5rXp-CM"},"time":"2026-03-06T19:14:52.705772418Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3195,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.226166,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.716835986Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3187,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":135.701495,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.722779141Z","message":"Request completed"} +{"level":"debug","transaction_id":"956","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.728038051Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"956","time":"2026-03-06T19:14:52.729191426Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lugQrQ5KjyTf3xN6R--y3uifloHbFGrxuyyTtmNxhfE","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492729,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.729412756Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"957","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.745923039Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"957","time":"2026-03-06T19:14:52.745990297Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2K5-CKAcAnKfJllTG-FZ7XZc_OU2N0muaJWy5rXp-CM","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492746,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.746162458Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3188,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492590630241_111?ts=1758381876690&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":196.504252,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"BLM_UI_Prototype_Design_2.pdf","info":{"mimetype":"application/pdf","size":1675325},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/XQNZNNuYsMSdkqNyrhSEGagS"},"time":"2026-03-06T19:14:52.78732216Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1418981179926773923","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":604.370923,"event_ids":{"1418981179507478548":"$QVuL8pyHg6stViOcbONLFuuoXUlwys5Qic-phi3q6LY"},"time":"2026-03-06T19:14:52.787477349Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3197,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":85.728891,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.808734949Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655346313040032","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.808863528Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655346313040032","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":234.245317,"time":"2026-03-06T19:14:52.80895125Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3199,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":21.446174,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.809737604Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3196,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":98.746504,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.816008319Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3192,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492646938582_22?ts=1725537234266&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":178.748961,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Könnt ja sein, dass du Urlaub hast","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.825822688Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220764829351998","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":199.878401,"event_ids":{"":"$ONUlAd0LoYu48fEhgmBfnqCyci5sQsh1iQtvVw__nys"},"time":"2026-03-06T19:14:52.825916207Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3200,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.976969,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.82590622Z","message":"Request completed"} +{"level":"debug","transaction_id":"958","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.828640613Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"958","time":"2026-03-06T19:14:52.828755852Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QVuL8pyHg6stViOcbONLFuuoXUlwys5Qic-phi3q6LY","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492828,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.file"},"time":"2026-03-06T19:14:52.828954972Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3191,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492639938016_112?ts=1763151052016&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":197.555238,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"neee hahah","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.837626933Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438984551073448097","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":225.033406,"event_ids":{"":"$IUE7RReGgO1MppTfSiLdcJZi7EVup3gs2-N58h7S2wI"},"time":"2026-03-06T19:14:52.83770802Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3194,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492663771328_11?ts=1730044622288&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":177.617098,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"und den darf ich mir aussuchen?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:52.841521405Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126120439447593","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":189.16998,"event_ids":{"":"$8Z71fZ5dcKjdvysSL56HJb-rFNp3PyGj_fhU2IzBXD4"},"time":"2026-03-06T19:14:52.84160766Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3204,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.275547,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.845839471Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3205,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.714855,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.85799125Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3206,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":45.822718,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.888036329Z","message":"Request completed"} +{"level":"debug","transaction_id":"959","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:52.894858798Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"959","time":"2026-03-06T19:14:52.894967472Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$IUE7RReGgO1MppTfSiLdcJZi7EVup3gs2-N58h7S2wI","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492895,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.895222257Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$ONUlAd0LoYu48fEhgmBfnqCyci5sQsh1iQtvVw__nys","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492895,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.895214714Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$8Z71fZ5dcKjdvysSL56HJb-rFNp3PyGj_fhU2IzBXD4","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824492895,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:52.89523853Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3202,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":115.869095,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:52.932117252Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153813159765872651","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:52.932230047Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153813159765872651","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":232.105421,"time":"2026-03-06T19:14:52.932317699Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3211,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.421017,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.941315753Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3203,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":116.69023,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.942944683Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3207,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":114.500886,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.960757664Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3210,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":81.195572,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:52.969678402Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3209,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":95.329473,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23596 bytes>","time":"2026-03-06T19:14:52.983613324Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3216,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":11.425001,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:52.995698124Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3201,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492809944127_110?ts=1763380467316&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":200.373163,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Agiles Handeln von Theo und Mir 🤙","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.010440492Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1439946788583899221","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":222.571328,"event_ids":{"":"$2fVxMaV3iFKW6ofkA0YlEmKjZC5XMLEidekWAZkQbNs"},"time":"2026-03-06T19:14:53.010508658Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3218,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":17.208148,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.028232171Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3213,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":87.806627,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.030948614Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655393096306768","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.031059733Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655393096306768","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":221.954062,"time":"2026-03-06T19:14:53.031151087Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3212,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":94.129584,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.035801462Z","message":"Request completed"} +{"level":"debug","transaction_id":"960","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.047157529Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"960","time":"2026-03-06T19:14:53.047248464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2fVxMaV3iFKW6ofkA0YlEmKjZC5XMLEidekWAZkQbNs","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493047,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.04743585Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3220,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.164566,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.048813837Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3214,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":92.268987,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.053180164Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220849390846045","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.053225142Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220849390846045","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":227.05918,"time":"2026-03-06T19:14:53.05327941Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3208,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492858180732_113?ts=1763151072733&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":203.497415,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wärst du auch dabei?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.061823489Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438984637966848143","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":223.871231,"event_ids":{"":"$kMpMr3NxuC7iaG6VsyVmhf-DMiOTGLcZrPr-tFYctzs"},"time":"2026-03-06T19:14:53.061921757Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3223,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":22.102551,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.075749959Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3224,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.900985,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.083469411Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3215,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":115.37545,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.085232788Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126138022105260","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.085354523Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126138022105260","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":243.485304,"time":"2026-03-06T19:14:53.085446086Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3227,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":9.493235,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.095454198Z","message":"Request completed"} +{"level":"debug","transaction_id":"961","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.103217721Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"961","time":"2026-03-06T19:14:53.103311519Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kMpMr3NxuC7iaG6VsyVmhf-DMiOTGLcZrPr-tFYctzs","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493103,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.103498347Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3221,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":99.455053,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.135401299Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153813257656733736","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.135498938Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153813257656733736","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":203.012919,"time":"2026-03-06T19:14:53.13559092Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3229,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":10.27484,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.146409691Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3222,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":104.320054,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.153429673Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3225,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":93.475022,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.169556593Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3217,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824492995961290_88?ts=1756367952346&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":201.666291,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 2 day streak!** 🔥 Here are yesterday's results:\n👑 4/6: @alexx\n5/6: @lagopodus\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 2 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 4/6: @alexx\u003cbr\u003e\n5/6: @lagopodus\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$McspRz8l7Hoj_YvLEgNDSTDvEZf57JeQW4c5tCGyj3E"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.197883274Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3233,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":15.816471,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.213928757Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3219,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493028442256_111?ts=1763553288604&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":202.952785,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"```typescript\n\n\"use client\";\n\nimport { api } from \"@/trpc/react\";\n\nexport function UserComponent() {\n // Query - Daten abrufen\n const allUsers = api.user.getAllUsers.useQuery();\n const singleUser = api.user.getUser.useQuery({ id: \"user-123\" });\n\n // Mutation - Daten ändern\n const createUser = api.user.createUser.useMutation();\n const updateUser = api.user.updateUser.useMutation();\n\n const handleCreateUser = () =\u003e {\n createUser.mutate(\n { name: \"Max Mustermann\", email: \"max@example.com\" },\n {\n onSuccess: (data) =\u003e {\n console.log(\"User erstellt:\", data);\n },\n }\n );\n };\n\n const handleUpdateUser = () =\u003e {\n updateUser.mutate({ id: \"user-123\", name: \"Neuer Name\" });\n };\n\n return (\n \u003cdiv\u003e\n {allUsers.data?.map((user) =\u003e (\n \u003cdiv key={user.id}\u003e{user.name}\u003c/div\u003e\n ))}\n \u003cbutton onClick={handleCreateUser}\u003eUser erstellen\u003c/button\u003e\n \u003cbutton onClick={handleUpdateUser}\u003eUser aktualisieren\u003c/button\u003e\n \u003c/div\u003e\n );\n}```\n```","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cpre\u003e\u003ccode class=\"language-typescript\"\u003e\n\u0026quot;use client\u0026quot;;\n\nimport { api } from \u0026quot;@/trpc/react\u0026quot;;\n\nexport function UserComponent() {\n // Query - Daten abrufen\n const allUsers = api.user.getAllUsers.useQuery();\n const singleUser = api.user.getUser.useQuery({ id: \u0026quot;user-123\u0026quot; });\n\n // Mutation - Daten ändern\n const createUser = api.user.createUser.useMutation();\n const updateUser = api.user.updateUser.useMutation();\n\n const handleCreateUser = () =\u0026gt; {\n createUser.mutate(\n { name: \u0026quot;Max Mustermann\u0026quot;, email: \u0026quot;max@example.com\u0026quot; },\n {\n onSuccess: (data) =\u0026gt; {\n console.log(\u0026quot;User erstellt:\u0026quot;, data);\n },\n }\n );\n };\n\n const handleUpdateUser = () =\u0026gt; {\n updateUser.mutate({ id: \u0026quot;user-123\u0026quot;, name: \u0026quot;Neuer Name\u0026quot; });\n };\n\n return (\n \u0026lt;div\u0026gt;\n {allUsers.data?.map((user) =\u0026gt; (\n \u0026lt;div key={user.id}\u0026gt;{user.name}\u0026lt;/div\u0026gt;\n ))}\n \u0026lt;button onClick={handleCreateUser}\u0026gt;User erstellen\u0026lt;/button\u0026gt;\n \u0026lt;button onClick={handleUpdateUser}\u0026gt;User aktualisieren\u0026lt;/button\u0026gt;\n \u0026lt;/div\u0026gt;\n );\n}```\n\u003c/code\u003e\u003c/pre\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.231787764Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1440671653603577926","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":221.187543,"event_ids":{"":"$mIVJSc63UQXsqYrbAv6XWGwvqPlhhZ8sjhUGCPzJglY"},"time":"2026-03-06T19:14:53.231972497Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"962","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.243037601Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"962","time":"2026-03-06T19:14:53.243164644Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BHpMmqcruEdYFlDX68ef270JQGOQQ_7cjGe86dzMIF8","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493243,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.243398127Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3235,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":20.445125,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.253207468Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3231,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":109.640496,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.263246101Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655432627486814","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.263346674Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655432627486814","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":232.083839,"time":"2026-03-06T19:14:53.263445849Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3237,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":13.803199,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.277782434Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3232,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":110.347019,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.280082897Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220878268629002","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.280168523Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281220878268629002","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":226.83785,"time":"2026-03-06T19:14:53.280257642Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3228,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493095685166_12?ts=1730044634804&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":186.399269,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"fühlt sich komisch an","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.282231453Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126172935622749","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":196.690242,"event_ids":{"":"$zN5q15D5_Cm8tTUeLKYZV7GTLtA-bB4KjZcT9uMbm8M"},"time":"2026-03-06T19:14:53.282323994Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"963","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.28322433Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"963","time":"2026-03-06T19:14:53.283293195Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mIVJSc63UQXsqYrbAv6XWGwvqPlhhZ8sjhUGCPzJglY","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493283,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.283473528Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3226,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493083591985_131?ts=1763151390359&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":208.636685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.292353757Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438985970186850386","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":230.156892,"event_ids":{"":"$2tf578KLrp1hki_F0E_sng8davfdfrFyFa2bRJaRJvc"},"time":"2026-03-06T19:14:53.292458381Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3239,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":17.099613,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.297831693Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3240,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.161213,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.300123845Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3241,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.619027,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.308641314Z","message":"Request completed"} +{"level":"debug","transaction_id":"964","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.320988233Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"964","time":"2026-03-06T19:14:53.321062545Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2tf578KLrp1hki_F0E_sng8davfdfrFyFa2bRJaRJvc","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493321,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.321298821Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$zN5q15D5_Cm8tTUeLKYZV7GTLtA-bB4KjZcT9uMbm8M","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493321,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.321294002Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3230,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493146592747_14?ts=1695161264342&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":202.780973,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bitte","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.349529469Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153814712673378354","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":213.84496,"event_ids":{"":"$cxPSBnJVOVbe9yAuKDuN-ziePG_12gykOKbCQ0jwdT8"},"time":"2026-03-06T19:14:53.34966196Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"965","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.363778541Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"965","time":"2026-03-06T19:14:53.363834624Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$cxPSBnJVOVbe9yAuKDuN-ziePG_12gykOKbCQ0jwdT8","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493363,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.364013071Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3243,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":94.260817,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.394713829Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3245,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":31.529017,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<111589 bytes>","time":"2026-03-06T19:14:53.406822515Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3234,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493214065159_89?ts=1756367952346&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":201.55601,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 solved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":23596,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/hhbMUheqKRHZfRcggqdIgPqg"},"time":"2026-03-06T19:14:53.415822664Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410534168995172403","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":767.023835,"event_ids":{"":"$BHpMmqcruEdYFlDX68ef270JQGOQQ_7cjGe86dzMIF8","1410534168898834444":"$8WnbJ69HzYB3L3PS_CgFp_YkS85bYYEDsSJs92ZYjuM"},"time":"2026-03-06T19:14:53.415968495Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3247,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.672322,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.427756815Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3198,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":663.529665,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1832892 bytes>","time":"2026-03-06T19:14:53.43875983Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3236,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493253412455_112?ts=1763554054017&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":199.633604,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"```\nimport { z } from \"zod\";\n\nimport {\n createTRPCRouter,\n protectedProcedure,\n publicProcedure,\n} from \"~/server/api/trpc\";\nimport { db } from \"~/server/db\";\n\nexport const userRouter = createTRPCRouter({\n createUser: protectedProcedure\n .input(z.object({ name: z.string().min(1), email: z.string().email() }))\n .mutation(async ({ input, ctx }) =\u003e {\n return await db.user.create({\n data: {\n name: input.name,\n email: input.email,\n },\n });\n }),\n\n getUser: publicProcedure\n .input(z.object({ id: z.string() }))\n .query(async ({ input }) =\u003e {\n return await db.user.findUnique({\n where: { id: input.id },\n });\n }),\n\n getAllUsers: publicProcedure.query(async () =\u003e {\n return await db.user.findMany();\n }),\n\n updateUser: protectedProcedure\n .input(z.object({ id: z.string(), name: z.string().optional() }))\n .mutation(async ({ input }) =\u003e {\n return await db.user.update({\n where: { id: input.id },\n data: { name: input.name },\n });\n }),\n});\n```","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cpre\u003e\u003ccode\u003eimport { z } from \u0026quot;zod\u0026quot;;\n\nimport {\n createTRPCRouter,\n protectedProcedure,\n publicProcedure,\n} from \u0026quot;~/server/api/trpc\u0026quot;;\nimport { db } from \u0026quot;~/server/db\u0026quot;;\n\nexport const userRouter = createTRPCRouter({\n createUser: protectedProcedure\n .input(z.object({ name: z.string().min(1), email: z.string().email() }))\n .mutation(async ({ input, ctx }) =\u0026gt; {\n return await db.user.create({\n data: {\n name: input.name,\n email: input.email,\n },\n });\n }),\n\n getUser: publicProcedure\n .input(z.object({ id: z.string() }))\n .query(async ({ input }) =\u0026gt; {\n return await db.user.findUnique({\n where: { id: input.id },\n });\n }),\n\n getAllUsers: publicProcedure.query(async () =\u0026gt; {\n return await db.user.findMany();\n }),\n\n updateUser: protectedProcedure\n .input(z.object({ id: z.string(), name: z.string().optional() }))\n .mutation(async ({ input }) =\u0026gt; {\n return await db.user.update({\n where: { id: input.id },\n data: { name: input.name },\n });\n }),\n});\n\u003c/code\u003e\u003c/pre\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.453394082Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1440674863978385459","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":221.17993,"event_ids":{"":"$L89gk8NEoJks9nIP8ZqwuwehvQj1fFIiPKOfafM1wTQ"},"time":"2026-03-06T19:14:53.453564846Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"966","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.457685817Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"966","time":"2026-03-06T19:14:53.457793653Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8WnbJ69HzYB3L3PS_CgFp_YkS85bYYEDsSJs92ZYjuM","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493457,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:53.457997383Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3249,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":20.591654,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.459711032Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3238,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493277910664_20?ts=1723733526712&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":193.776215,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hat das ein Multiplayer?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.471852963Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655467020914700","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":208.318833,"event_ids":{"":"$ccTfKykRQOXaunxZIfyFGRU_YJFz1HqIyb_Oyf-z85Q"},"time":"2026-03-06T19:14:53.471993067Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3251,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.352435,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.48431135Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3242,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493297962437_23?ts=1725537435133&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":193.124377,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ja. Wir haben heute ein Outdoor Event mit den neuen Azubis und Dualis","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.491211134Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281221607326744720","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":210.809128,"event_ids":{"":"$US2Tt8wKj_4aNgtSJaAeWg_f47WPhcnahihD-KDBH2Q"},"time":"2026-03-06T19:14:53.491278671Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"967","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.494972487Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"967","time":"2026-03-06T19:14:53.49511287Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$L89gk8NEoJks9nIP8ZqwuwehvQj1fFIiPKOfafM1wTQ","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493495,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.49528978Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$US2Tt8wKj_4aNgtSJaAeWg_f47WPhcnahihD-KDBH2Q","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493495,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.495320232Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$ccTfKykRQOXaunxZIfyFGRU_YJFz1HqIyb_Oyf-z85Q","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493495,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.495315063Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3253,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.997289,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.503802989Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3246,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":118.918266,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.513816339Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126225372680192","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.513897426Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126225372680192","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":231.264799,"time":"2026-03-06T19:14:53.51395791Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3244,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493308815012_114?ts=1763151457958&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":215.329387,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"rv there yet","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.524281918Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438986253717602315","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":231.594524,"event_ids":{"":"$o6mXSbxq38aNJtyhVcXdIwtw8b_ZiWL3Wfq16rer1T8"},"time":"2026-03-06T19:14:53.524372224Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3255,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.987581,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.527389827Z","message":"Request completed"} +{"level":"debug","transaction_id":"968","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.530367201Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"968","time":"2026-03-06T19:14:53.530432923Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$o6mXSbxq38aNJtyhVcXdIwtw8b_ZiWL3Wfq16rer1T8","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493530,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.530556893Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3256,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.682095,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.540660409Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3248,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":131.205122,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.559188784Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3252,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.840084,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.574503578Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3254,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":85.312981,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.589530832Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3257,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":67.855357,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.595523924Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3250,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493459909942_49?ts=1766782146486&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":157.466427,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":797,"mimetype":"image/png","size":1832892,"w":1230},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xZoHLXMCZAwiOfAvzCtDxhPo"},"time":"2026-03-06T19:14:53.617574303Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214465133482115","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":1164.841745,"event_ids":{"1454214464424509451":"$xZVT3BvgO98rFEjZuG_gOu1Rk2wx2It_UODuj5FJM0s"},"time":"2026-03-06T19:14:53.617703511Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3263,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.017755,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.632485828Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3259,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":75.804171,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.635165744Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153815021973930094","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"video_https://tenor.com/view/bugs-bunny-bugs-nod-nodding-yes-gif-17944083","time":"2026-03-06T19:14:53.63527372Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1153815021973930094","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":285.365217,"time":"2026-03-06T19:14:53.635403976Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3265,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.186489,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.646115749Z","message":"Request completed"} +{"level":"debug","transaction_id":"969","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.649269125Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"969","time":"2026-03-06T19:14:53.649375355Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xZVT3BvgO98rFEjZuG_gOu1Rk2wx2It_UODuj5FJM0s","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493649,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:53.649603669Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3260,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":86.191246,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.660900929Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655538453970964","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.66098914Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655538453970964","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":188.515348,"time":"2026-03-06T19:14:53.661031115Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3268,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.934778,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.67198957Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3261,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":91.331006,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.681067803Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281221796573741128","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.681160344Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281221796573741128","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":189.668863,"time":"2026-03-06T19:14:53.681221875Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3262,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":93.545284,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.689266931Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126249653375069","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.68940906Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126249653375069","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":175.369435,"time":"2026-03-06T19:14:53.689501042Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3270,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.516843,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.692201911Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3272,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":14.776939,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.704796979Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3258,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493540897035_132?ts=1763151470302&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":174.697623,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.715757949Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1438986305492095189","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":191.099022,"event_ids":{"":"$Dj7_R621n4oRcigFcL2Oza42VlWsh6dWtp1Q2qN75_k"},"time":"2026-03-06T19:14:53.715837569Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3267,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":83.951685,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1061 bytes>","time":"2026-03-06T19:14:53.732923981Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3275,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":22.974182,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.739303859Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3276,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":24.578248,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.757997551Z","message":"Request completed"} +{"level":"debug","transaction_id":"970","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.777129292Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"970","time":"2026-03-06T19:14:53.777250329Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Dj7_R621n4oRcigFcL2Oza42VlWsh6dWtp1Q2qN75_k","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493777,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.777485977Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3264,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":151.966841,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.784845881Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3266,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":148.28434,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.794789109Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3269,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":136.985683,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.809386275Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3273,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":144.612943,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.837150097Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3279,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":74.84803,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.859916149Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214521882153134","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.860038233Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214521882153134","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":242.042992,"time":"2026-03-06T19:14:53.860138457Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3271,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":179.325089,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<18420 bytes>","time":"2026-03-06T19:14:53.865229117Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3280,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":71.968575,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.866918182Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154097453663002807","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.867030698Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154097453663002807","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":231.514136,"time":"2026-03-06T19:14:53.867127988Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3283,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.84056,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.869606619Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3284,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":9.025851,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.874677514Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3285,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":11.121467,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.878809939Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3281,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":77.327709,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.886935383Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655556275437743","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.887050483Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655556275437743","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":225.403709,"time":"2026-03-06T19:14:53.887126472Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3289,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.809619,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.896495737Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3282,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":69.948249,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:53.907378204Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281221950458302526","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:53.907480802Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281221950458302526","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":226.148297,"time":"2026-03-06T19:14:53.907568035Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3274,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493704985972_13?ts=1730044664202&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":208.01921,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ok ich probiers. danke dir schonmal","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.913129991Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126296239767674","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":223.478927,"event_ids":{"":"$Rg8G0pRYFATa7TAjFbpCPujAWegijkOfVgz0_rB5LtU"},"time":"2026-03-06T19:14:53.913204023Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3291,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.159811,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.920297689Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3292,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.237057,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.925979215Z","message":"Request completed"} +{"level":"debug","transaction_id":"971","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.95023563Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"971","time":"2026-03-06T19:14:53.950325377Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Rg8G0pRYFATa7TAjFbpCPujAWegijkOfVgz0_rB5LtU","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493950,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.95055879Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3278,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493758204004_89?ts=1756374384295&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":199.871975,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cimg data-mx-emoticon src=\"mxc://matrix.theocloud.dev/iLewZGQIcXCOkXkOvqArvoxv\" alt=\":bingle:\" title=\":bingle:\" height=\"32\"/\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.958233403Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410561146544459806","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":541.90529,"event_ids":{"":"$98PskoBHotPj886JfSRYfhTKQ6nMVOl-um3qRGlYzds"},"time":"2026-03-06T19:14:53.958355068Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3277,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493739571634_115?ts=1763210001647&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":220.989121,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jungs bin ab jetzt on und hab den rest des tages zeit für zocken wenn ihr wollt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:53.960736199Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439231803746418709","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":244.727028,"event_ids":{"":"$fuxz5M33-dYmL5BgjFnn355oDgontW9N7zcSLADLITs"},"time":"2026-03-06T19:14:53.960831953Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3295,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":16.669873,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.97579153Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3296,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.491081,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:53.982035844Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3286,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":120.961711,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:53.990880105Z","message":"Request completed"} +{"level":"debug","transaction_id":"972","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:53.999208302Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"972","time":"2026-03-06T19:14:53.999304824Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$98PskoBHotPj886JfSRYfhTKQ6nMVOl-um3qRGlYzds","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824493999,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:53.999503525Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3290,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":125.276144,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.022142814Z","message":"Request completed"} +{"level":"debug","transaction_id":"973","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.023849339Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"973","time":"2026-03-06T19:14:54.023939505Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fuxz5M33-dYmL5BgjFnn355oDgontW9N7zcSLADLITs","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494024,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.024129965Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3293,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":124.398019,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.045149542Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3294,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":133.192412,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.059529079Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3299,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":92.372214,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.083454652Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214568644575496","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.083578063Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214568644575496","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":223.246841,"time":"2026-03-06T19:14:54.083673467Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3288,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493879056621_15?ts=1695229462676&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":206.844463,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Heut abend ja","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.086039792Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154100757218480282","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":218.738316,"event_ids":{"":"$Mtxd1Z02N1EPypHLDwZcOou2IR4mNzczTNqpfn__dg0"},"time":"2026-03-06T19:14:54.086100136Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3287,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493874865948_11?ts=1763561306772&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":222.251799,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":492,"mimetype":"image/png","size":18420,"w":565},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/gApAHWBbOWACTwTmizcUUSSZ"},"time":"2026-03-06T19:14:54.097360519Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1440705284237426801","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":643.527618,"event_ids":{"1440705284120248370":"$84D3EoPQ8RNlojUkaiGRtFaOaOfTGCAGrCFh6vhDkig"},"time":"2026-03-06T19:14:54.097498527Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3304,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.02593,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.102359476Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3305,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.043461,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.105584162Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3306,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":19.434647,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.11770095Z","message":"Request completed"} +{"level":"debug","transaction_id":"974","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.127294618Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"974","time":"2026-03-06T19:14:54.127418518Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Mtxd1Z02N1EPypHLDwZcOou2IR4mNzczTNqpfn__dg0","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494127,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.127606953Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3300,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":110.202864,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.132514766Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655694352056422","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.13259697Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655694352056422","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":245.332002,"time":"2026-03-06T19:14:54.132661365Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3310,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":8.993165,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.14208818Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3302,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":149.505671,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.194861038Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281221971639537737","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.194978093Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281221971639537737","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":287.261713,"time":"2026-03-06T19:14:54.195066444Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"975","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.201244128Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"975","time":"2026-03-06T19:14:54.201321304Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$84D3EoPQ8RNlojUkaiGRtFaOaOfTGCAGrCFh6vhDkig","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494201,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:54.201565612Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3303,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":153.176928,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.212868878Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126321745203234","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.212946054Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300126321745203234","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":299.486129,"time":"2026-03-06T19:14:54.212992848Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3312,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":18.158072,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.213831165Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3313,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":11.43855,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.224883278Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3297,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493976073902_77?ts=1756374511607&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":265.800664,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"warum schickst du sowas?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.242076339Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410561680529952768","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":283.411381,"event_ids":{"":"$YOZJ9oPNlIoG8nyu5pR48V5Cf4GhUli-TVXjd0mc8p4"},"time":"2026-03-06T19:14:54.242188646Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3298,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824493982260317_133?ts=1763210180531&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":280.393987,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lernen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.262833939Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439232554040426587","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":301.776605,"event_ids":{"":"$ClPKnW-Bwhu_BsFs59jgJHbmgdjxdnYRXz-d0xAazNI"},"time":"2026-03-06T19:14:54.26299262Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3316,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":20.117216,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.263373749Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3307,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":169.810762,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.27256792Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3318,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.391066,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.283291915Z","message":"Request completed"} +{"level":"debug","transaction_id":"976","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.286594684Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"976","time":"2026-03-06T19:14:54.286694279Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$YOZJ9oPNlIoG8nyu5pR48V5Cf4GhUli-TVXjd0mc8p4","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494286,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.286889488Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3308,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":194.201135,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.30004469Z","message":"Request completed"} +{"level":"debug","transaction_id":"977","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.321509442Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"977","time":"2026-03-06T19:14:54.321605475Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ClPKnW-Bwhu_BsFs59jgJHbmgdjxdnYRXz-d0xAazNI","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494321,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.321827154Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3319,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":82.446515,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.355235137Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214580094898379","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.355327747Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214580094898379","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":271.524024,"time":"2026-03-06T19:14:54.355457514Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3322,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":19.097868,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.37515421Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3321,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":76.86214,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.377105602Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154100794963005470","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.377191019Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154100794963005470","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":290.966984,"time":"2026-03-06T19:14:54.377287052Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3309,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494117958598_78?ts=1763563594859&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":275.196329,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ok","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.393347063Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1440714881170149548","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":295.513922,"event_ids":{"":"$bXNw1gedxZVrqARdRrspSwZqR6l17QBEISiGwkXONdo"},"time":"2026-03-06T19:14:54.393450639Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3311,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494142348622_21?ts=1723733602144&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":252.156495,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ah ja klingt ja interssant","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.394656465Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655783405650011","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":261.910242,"event_ids":{"":"$RSCjWFlebcxpmwvHS1ab7JYl_9fq0lwpu5j3iPsSIRE"},"time":"2026-03-06T19:14:54.394759133Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3324,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":19.976623,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.39779259Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3325,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.083829,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.413492425Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3314,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494214016386_24?ts=1725537714346&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":215.343564,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Gute Besserung. Wir vermissen dich hier auch sehr. Wann haste wieder Praxisphase?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.42951528Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281222778430689300","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":234.296021,"event_ids":{"":"$kzjA1_el1gXxyVXdHkMcn7jk4V6hHZYOdh1Fs0Y8AJU"},"time":"2026-03-06T19:14:54.429605725Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"978","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.432043429Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"978","time":"2026-03-06T19:14:54.432137786Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bXNw1gedxZVrqARdRrspSwZqR6l17QBEISiGwkXONdo","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494432,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.432368963Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3315,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494225067662_14?ts=1730046197008&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":215.170076,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Sorry dass ich dich nochmal nerve aber könntest du mir kurz deine meinung zu meinem use case sagen? Es geht darum dass man einen Arbeiter kauft und dann die Zahl der arbeiter erhöht wird die im urlaub sind. die müssen dann erst noch eingesetzt werden. bei 100 gekauften arbeitern spawnt die sekretärin und dann gibt neue features.","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.440424147Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300132725293842462","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":227.36439,"event_ids":{"":"$X3kRp0VU4r1LVS9zN_q9DlGDLM7IPfQJa_3SJTYg2C4"},"time":"2026-03-06T19:14:54.440529469Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3328,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.53333,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.444836011Z","message":"Request completed"} +{"level":"debug","transaction_id":"979","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.458100796Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"979","time":"2026-03-06T19:14:54.45824963Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$RSCjWFlebcxpmwvHS1ab7JYl_9fq0lwpu5j3iPsSIRE","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494458,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.458444489Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$kzjA1_el1gXxyVXdHkMcn7jk4V6hHZYOdh1Fs0Y8AJU","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494458,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.458472147Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$X3kRp0VU4r1LVS9zN_q9DlGDLM7IPfQJa_3SJTYg2C4","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494458,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.458506998Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3317,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494263637194_79?ts=1756374515619&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":215.940436,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"alexx","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003ca href=\"https://matrix.to/#/@discord_428870593358594048:matrix.theocloud.dev\"\u003ealexx\u003c/a\u003e","m.mentions":{"user_ids":["@discord_428870593358594048:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.479806294Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410561697357234259","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":237.306571,"event_ids":{"":"$zh7OEXJJPLnU5UbyoPUggVb6jstxch9QgOV98_K5uEc"},"time":"2026-03-06T19:14:54.479915387Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3330,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":17.857051,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.498539725Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3320,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494283546909_116?ts=1763210309475&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":224.219534,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"und wenn ihr mit dem lernen fertig seid","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.50790899Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439233094870761543","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":244.5446,"event_ids":{"":"$wJs2pQ7yp8_HU_hY8NyA0oLDHY7oMEkCeQi9SEWvwC8"},"time":"2026-03-06T19:14:54.507987982Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"980","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.512257926Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"980","time":"2026-03-06T19:14:54.51238008Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$zh7OEXJJPLnU5UbyoPUggVb6jstxch9QgOV98_K5uEc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494512,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.512569423Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3332,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":18.122592,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.526595279Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3327,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":142.044286,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.555927478Z","message":"Request completed"} +{"level":"debug","transaction_id":"981","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.567383838Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"981","time":"2026-03-06T19:14:54.567473027Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$wJs2pQ7yp8_HU_hY8NyA0oLDHY7oMEkCeQi9SEWvwC8","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494567,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.567699176Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3329,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":137.320088,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.582440566Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3323,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494375402848_50?ts=1766782180578&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":221.463001,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"immer gerner","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.597034378Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214608125563005","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":241.435504,"event_ids":{"":"$vVM6dRhvdlF1gBv2Jc5ffAI17br3NUt0uOABPaF5gsM"},"time":"2026-03-06T19:14:54.597130621Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3326,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494398008193_16?ts=1695237957271&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":215.439248,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"21:40?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.613671496Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154136386132250634","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":236.263337,"event_ids":{"":"$8FK1nKGIBQeXdWiFNbVEd3DmdwlZ9_GxdJuoZZNiOmQ"},"time":"2026-03-06T19:14:54.613766411Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"982","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.621470149Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"982","time":"2026-03-06T19:14:54.621565064Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vVM6dRhvdlF1gBv2Jc5ffAI17br3NUt0uOABPaF5gsM","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494621,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.621743721Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3336,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.661277,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.624956393Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3334,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":76.368705,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.632461011Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655852137582717","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.632541259Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273655852137582717","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":237.496541,"time":"2026-03-06T19:14:54.632602232Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"983","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.639943209Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"983","time":"2026-03-06T19:14:54.640012283Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8FK1nKGIBQeXdWiFNbVEd3DmdwlZ9_GxdJuoZZNiOmQ","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494640,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.640181021Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3338,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.011328,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.646041553Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3335,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":68.050216,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.650671603Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281222830914142310","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.650743122Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281222830914142310","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":220.802643,"time":"2026-03-06T19:14:54.6507925Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3341,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.024734,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.661238383Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3331,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494498742896_80?ts=1756374641916&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":225.375004,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://discord.com/channels/@me/1174621007575797790/1410560853232717924","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.724324284Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410562227085381695","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":244.112626,"event_ids":{"":"$mxSrdW3_kuPM-7KFSdONDiZKg2z87Y02324hgKdggLE"},"time":"2026-03-06T19:14:54.724487994Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3333,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494526759547_134?ts=1763239091472&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":241.911339,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:14:54.7687841Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439353815315906785","message_type":3,"author_id":"122672447207112706","action":"discord message create","handling_time":260.621373,"event_ids":{"":"$pq6BEEFYz7IiFb5LypSsZ-OnG7IvvzFxBAuLXFEukwU"},"time":"2026-03-06T19:14:54.76887706Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"984","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.771940829Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"984","time":"2026-03-06T19:14:54.772064241Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mxSrdW3_kuPM-7KFSdONDiZKg2z87Y02324hgKdggLE","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494772,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.772246878Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3337,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":153.054773,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.778326295Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3344,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.205282,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.785655538Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3339,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":160.880805,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.807271359Z","message":"Request completed"} +{"level":"debug","transaction_id":"985","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.809975859Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"985","time":"2026-03-06T19:14:54.81007301Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$pq6BEEFYz7IiFb5LypSsZ-OnG7IvvzFxBAuLXFEukwU","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494810,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:14:54.810289171Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3342,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":159.813546,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.821381305Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3345,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":60.201836,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.838783962Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154136500775178342","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.83889124Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154136500775178342","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":224.929131,"time":"2026-03-06T19:14:54.838996562Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3349,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":7.036255,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.846636254Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3301,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":810.005369,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<3550374 bytes>","time":"2026-03-06T19:14:54.850491615Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3347,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":46.234158,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.853766587Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273671116635897908","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.853904875Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1273671116635897908","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":221.210102,"time":"2026-03-06T19:14:54.853982749Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3351,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":7.95014,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.858991275Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3352,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":10.182927,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.864701226Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3348,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":45.489291,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:54.867041569Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281222977421185075","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:54.867110783Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1281222977421185075","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":216.210097,"time":"2026-03-06T19:14:54.86716505Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3355,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.36926,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.871940722Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3343,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":127.262457,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22694 bytes>","time":"2026-03-06T19:14:54.885103468Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3357,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":5.29027,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.890899744Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3346,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494785854379_135?ts=1763289958765&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":121.680807,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"seid ihr da?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.907695403Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439567168206536715","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":138.640455,"event_ids":{"":"$7o7FW0Hj_w5Co2IgUhKNvs2IlWz0m9nGi5oGoPssPNI"},"time":"2026-03-06T19:14:54.907822656Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3359,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.450357,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.923131444Z","message":"Request completed"} +{"level":"debug","transaction_id":"986","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:54.938032143Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"986","time":"2026-03-06T19:14:54.938144729Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7o7FW0Hj_w5Co2IgUhKNvs2IlWz0m9nGi5oGoPssPNI","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824494938,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:54.938376605Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3356,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":83.06874,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:54.955301472Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3350,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494846873927_17?ts=1695237997586&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":131.231033,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"oder so","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:54.978296537Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154136555225628672","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":139.194653,"event_ids":{"":"$i6ZcQaP67Y8mfqWhUMLTKHIW4KxV-pHkjE1K2iq9ZdY"},"time":"2026-03-06T19:14:54.978433777Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3362,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.555818,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:54.992764425Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3353,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494859227900_136?ts=1765646349122&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":155.889948,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2E6B958C-48B8-4E6E-8D2A-A31811745428.png","info":{"h":1080,"mimetype":"image/png","size":3550374,"w":1920},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/YnUWJErkownexOCzqeBHkhYt"},"time":"2026-03-06T19:14:55.015272899Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1449450585706201118","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":2309.156438,"event_ids":{"1449450585463193701":"$l2i0l8PD1G4GATB5EYgZsBRu2S83yg9PZm4aLRX1PDI"},"time":"2026-03-06T19:14:55.015342392Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3354,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494864968233_22?ts=1723828486674&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":153.802015,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ts?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.018928022Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1274053757969109074","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":164.843793,"event_ids":{"":"$mIUz2PdvYZneUAyt-QY57uDSqg9gYhDPg44uvaGfEiY"},"time":"2026-03-06T19:14:55.019019096Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"987","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.021729882Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"987","time":"2026-03-06T19:14:55.021816417Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$i6ZcQaP67Y8mfqWhUMLTKHIW4KxV-pHkjE1K2iq9ZdY","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495021,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.021987041Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3364,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":19.69928,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.035458071Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3365,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.784837,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.040353382Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3361,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":99.701597,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.055194716Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307403749932662785","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.055301714Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307403749932662785","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":188.11641,"time":"2026-03-06T19:14:55.055428199Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"988","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.057870651Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"988","time":"2026-03-06T19:14:55.057984773Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$l2i0l8PD1G4GATB5EYgZsBRu2S83yg9PZm4aLRX1PDI","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495058,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:55.058215532Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$mIUz2PdvYZneUAyt-QY57uDSqg9gYhDPg44uvaGfEiY","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495058,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.058283698Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3368,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":9.922835,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.065871917Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3358,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494891073023_15?ts=1730046199776&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":194.294165,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"use-case-diagram.vpd.png","info":{"h":364,"mimetype":"image/png","size":22694,"w":472},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ktCEPWZuqGExdkCASlWuheCP"},"time":"2026-03-06T19:14:55.085561768Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300132736903942235","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":644.732117,"event_ids":{"1300132736488571001":"$Y-GpbCKBmqLYQ_bLZCkcSn6yJEQVezY8JHcgZRo34TM"},"time":"2026-03-06T19:14:55.08568469Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3370,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.452657,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.095904214Z","message":"Request completed"} +{"level":"debug","transaction_id":"989","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.11055886Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"989","time":"2026-03-06T19:14:55.110658664Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Y-GpbCKBmqLYQ_bLZCkcSn6yJEQVezY8JHcgZRo34TM","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495110,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:55.110863232Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3363,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":122.372733,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.115534141Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824494923406203_117?ts=1763289982947&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":201.502301,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich mach mich gleich auf ins gym","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.1250697Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439567269633069167","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":216.889452,"event_ids":{"":"$snFMyEDiWPwL2CNLsxyVfdnrGIwtqyqPEU59iOWnPqI"},"time":"2026-03-06T19:14:55.125168806Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3367,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":120.35981,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.161054791Z","message":"Request completed"} +{"level":"debug","transaction_id":"990","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.172103552Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"990","time":"2026-03-06T19:14:55.172185477Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$snFMyEDiWPwL2CNLsxyVfdnrGIwtqyqPEU59iOWnPqI","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495172,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.172451855Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3372,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":106.543341,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.22223351Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154154009200967770","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.222346165Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154154009200967770","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":243.554796,"time":"2026-03-06T19:14:55.22240148Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3371,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":126.72593,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.222955189Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3366,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495035658239_137?ts=1765646350710&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":202.510334,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich erkenne kein einzigen Namen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.238328023Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1449450592366891059","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":222.905173,"event_ids":{"":"$TxdSgQf4YkAM_bc3FxgO7h_V9M3Ost7FWkOGomrG_7M"},"time":"2026-03-06T19:14:55.238460932Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3375,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":22.053731,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.24496478Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":29.274021,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.268399572Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3374,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":114.112004,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.275374436Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1274056944771924071","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.275481294Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1274056944771924071","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":256.273624,"time":"2026-03-06T19:14:55.275565245Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3340,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":630.241531,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<361477 bytes>","time":"2026-03-06T19:14:55.279107363Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3373,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":143.49009,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23387 bytes>","time":"2026-03-06T19:14:55.279268419Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3369,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495066049805_25?ts=1731779795521&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":217.763457,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Allet gut. Hab den eh erstmal durch den Link Check geballert und bei Norton getestet. Dachte mir schon, warum solltest du mir 50€ Steam schenken xD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.283984306Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307403964471443538","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":228.444988,"event_ids":{"":"$GiNhbmluvyqXv_-_j_HEzyzUEK5B0IAHy0H5FV7soSU"},"time":"2026-03-06T19:14:55.284090117Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"991","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.286403781Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"991","time":"2026-03-06T19:14:55.286509452Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$TxdSgQf4YkAM_bc3FxgO7h_V9M3Ost7FWkOGomrG_7M","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495286,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.286735322Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3380,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":13.261852,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.289312011Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3381,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.214778,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.292685041Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3382,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":14.649826,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.294595017Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3383,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.989396,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.296859651Z","message":"Request completed"} +{"level":"debug","transaction_id":"992","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.309652303Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"992","time":"2026-03-06T19:14:55.309703916Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$GiNhbmluvyqXv_-_j_HEzyzUEK5B0IAHy0H5FV7soSU","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495309,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.309898567Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3376,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":100.800354,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.323946423Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300136418395426939","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.324043224Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300136418395426939","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":238.005202,"time":"2026-03-06T19:14:55.3241072Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3378,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.31955,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.334628652Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3387,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":59.741227,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.356887929Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3388,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":58.056911,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.392890131Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154156462612955297","message_type":3,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.393037428Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154156462612955297","message_type":3,"author_id":"388409312340344833","action":"discord message create","handling_time":170.612202,"time":"2026-03-06T19:14:55.39317816Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3379,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495268621949_138?ts=1765646354387&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":136.006844,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ein feuchter Traum","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.404796694Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1449450607789211791","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":166.102,"event_ids":{"":"$wLYgNUef4UTM2abxfwjR3TX_4deviIMAUXUvsR662KA"},"time":"2026-03-06T19:14:55.404907883Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3384,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495289531665_23?ts=1725471906141&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":122.854784,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ts?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.41259856Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280946758813356113","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":136.956419,"event_ids":{"":"$Y4y_9eSkdNUa6bIGlJRlA-QE8vOMCLNtTjOh8FO6qc0"},"time":"2026-03-06T19:14:55.412711914Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3391,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.064972,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.432460153Z","message":"Request completed"} +{"level":"debug","transaction_id":"993","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.464305136Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"993","time":"2026-03-06T19:14:55.464431061Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$wLYgNUef4UTM2abxfwjR3TX_4deviIMAUXUvsR662KA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495464,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.464645757Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3386,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495294770391_90?ts=1756453689701&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":171.536772,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"**Your group is on a 3 day streak!** 🔥 Here are yesterday's results:\n👑 4/6: @alexx\n5/6: lagopodus\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cstrong\u003eYour group is on a 3 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 4/6: @alexx\u003cbr\u003e\n5/6: \u003ca href=\"https://matrix.to/#/@discord_1142482369744482355:matrix.theocloud.dev\"\u003elagopodus\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_1142482369744482355:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$gu3lVq0IHtWJdNT-nRjc5HFtxgPM7LLUvKWfo735xyg"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.466557199Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3385,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495292790364_118?ts=1763595516164&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":173.907358,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"B50C2FE1-D399-4F2D-B6C5-94742CA31CE0.png","info":{"h":1194,"mimetype":"image/png","size":361477,"w":2761},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/woVfPiduPPbrfkQGMkgcZIro"},"time":"2026-03-06T19:14:55.466939724Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1440848768827260990","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1073.294576,"event_ids":{"1440848768801964092":"$T7AqdcP8bwWvwDtwOaBkr98YW_8SVGPrTvfVqsiKZyU"},"time":"2026-03-06T19:14:55.467120267Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3389,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":129.087155,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.486167569Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307404253014396938","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.486307254Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307404253014396938","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":201.887761,"time":"2026-03-06T19:14:55.486435135Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3393,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":23.521676,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.490302159Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3394,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":23.472785,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.491597453Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3395,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":9.957197,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.496982499Z","message":"Request completed"} +{"level":"debug","transaction_id":"994","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.50107665Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"994","time":"2026-03-06T19:14:55.501228068Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Y4y_9eSkdNUa6bIGlJRlA-QE8vOMCLNtTjOh8FO6qc0","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495501,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.501436966Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$0Zod9bcinRK6dCHnrsmYHNE2jkvwt-xx9QJE5SW5fpA","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495501,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.501449398Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$T7AqdcP8bwWvwDtwOaBkr98YW_8SVGPrTvfVqsiKZyU","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495501,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:55.501434591Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3392,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":88.708989,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.521542239Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3399,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":41.665219,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.563390096Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280946856267874305","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.563493672Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280946856267874305","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":150.500363,"time":"2026-03-06T19:14:55.563579508Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3398,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495497177428_26?ts=1731780046285&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":69.619711,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Der einzig logische find ich","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.566947928Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307405016251764797","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":80.360957,"event_ids":{"":"$0Ytwn-Y2djWqfW1PNr4nxrj4SM6lvQifx_ChMJuuKYM"},"time":"2026-03-06T19:14:55.567040958Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3396,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495490482213_91?ts=1756453689701&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":83.673783,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"2 solved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":23387,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/KgyaCxkanaOzavjbAFABTmdI"},"time":"2026-03-06T19:14:55.574435434Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1410893777526325319","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":849.649493,"event_ids":{"":"$0Zod9bcinRK6dCHnrsmYHNE2jkvwt-xx9QJE5SW5fpA","1410893777022750780":"$nx0ZCGJABtzP1gBcgJAPHyAyXC1gGJ5fYkPrRaYVFuk"},"time":"2026-03-06T19:14:55.574565481Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3397,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495491785399_12?ts=1763906995835&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":83.885405,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"FYI: Ich habe einen neuen Branch für Login/Registrierung (Backend/Frontend) erstellt, weil ich bei meinem alten Branch ein bisschen den Überblick verloren hatte wegen der Änderungen auf dem Main. Jetzt habe ich einen frischen Branch vom aktuellen Stand des Mains erstellt und meine Login-/Registrierungs-Strukturen dort noch einmal übertragen. So konnte ich mich auch viel leichter an die neuen Strukturen anpassen.\nDafür gibt es jetzt auch einen neuen PR, ihr könnt also gerne mal reinschauen – sollte alles funktionieren.","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"FYI: Ich habe einen neuen Branch für Login/Registrierung (Backend/Frontend) erstellt, weil ich bei meinem alten Branch ein bisschen den Überblick verloren hatte wegen der Änderungen auf dem Main. Jetzt habe ich einen frischen Branch vom aktuellen Stand des Mains erstellt und meine Login-/Registrierungs-Strukturen dort noch einmal übertragen. So konnte ich mich auch viel leichter an die neuen Strukturen anpassen.\u003cbr\u003e\nDafür gibt es jetzt auch einen neuen PR, ihr könnt also gerne mal reinschauen – sollte alles funktionieren.","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.575882984Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442155209257259102","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":108.304832,"event_ids":{"":"$clIFeCHbJaue45iiJounhBf-T0qg8YM3wF_8GNCphuM"},"time":"2026-03-06T19:14:55.575993614Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3400,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.146477,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.582257275Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3401,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.009165,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.582758114Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3402,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":15.610506,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.590994957Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3403,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.708984,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.592322308Z","message":"Request completed"} +{"level":"debug","transaction_id":"995","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.595533444Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"995","time":"2026-03-06T19:14:55.595639605Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0Ytwn-Y2djWqfW1PNr4nxrj4SM6lvQifx_ChMJuuKYM","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495595,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.595840261Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"996","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.605838805Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"996","time":"2026-03-06T19:14:55.605976254Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nx0ZCGJABtzP1gBcgJAPHyAyXC1gGJ5fYkPrRaYVFuk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495606,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:55.606174537Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$clIFeCHbJaue45iiJounhBf-T0qg8YM3wF_8GNCphuM","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495606,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.60620408Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3404,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":48.999841,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.631577901Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3405,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":53.982036,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.636998217Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3408,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":63.950897,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.695780299Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280946951822508046","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.695894771Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280946951822508046","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":132.153928,"time":"2026-03-06T19:14:55.695971527Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3406,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495591165512_81?ts=1757416151240&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":111.939003,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"geotastic berlin jetzt!","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.703235329Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1414930633808941231","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":128.244998,"event_ids":{"":"$p6yVNH8LYAvBAxher3mfXabx2tnINgtaEkOPE5nXg-8"},"time":"2026-03-06T19:14:55.703324028Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3407,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495592492304_119?ts=1763907044803&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":111.566254,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Super dann mergen wir heute alles zusammen, dankeee Laura 🙂","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.70420844Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442155414643933294","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":127.930428,"event_ids":{"":"$FpdeEYZWZrLKk7mtwsuSo2YDNie8-AfplOb7y0bSzGg"},"time":"2026-03-06T19:14:55.704302937Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3409,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":72.255277,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.709425026Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307405042390667315","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.709519593Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307405042390667315","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":142.143322,"time":"2026-03-06T19:14:55.709619188Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3411,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.968935,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.71052546Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3412,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":14.748374,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.718945639Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3413,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_657236326822838283:matrix.theocloud.dev?user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":14.0283,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.719147204Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3414,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.471656,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.721587422Z","message":"Request completed"} +{"level":"debug","transaction_id":"997","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.727924905Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"997","time":"2026-03-06T19:14:55.728016888Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$p6yVNH8LYAvBAxher3mfXabx2tnINgtaEkOPE5nXg-8","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495728,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.728222433Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"998","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.737997552Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"998","time":"2026-03-06T19:14:55.738110067Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FpdeEYZWZrLKk7mtwsuSo2YDNie8-AfplOb7y0bSzGg","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495738,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.738347042Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3415,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":42.093981,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.752940157Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3418,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":38.235896,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.760127341Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3419,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":39.830325,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.792966528Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947010286915709","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.793071571Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947010286915709","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":96.976423,"time":"2026-03-06T19:14:55.79316914Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_657236326822838283:matrix.theocloud.dev","req_id":3417,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495719300997_13?ts=1763907064824&user_id=%40discord_657236326822838283%3Amatrix.theocloud.dev","duration":80.54094,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"klar doch 🙂","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.800019685Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442155498617962597","message_type":0,"author_id":"657236326822838283","action":"discord message create","handling_time":95.359016,"event_ids":{"":"$8lSCHzT2BQfjBNE1TLTnajoa9bEh_QnP9yWjsg6o6qI"},"time":"2026-03-06T19:14:55.800152036Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3416,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495719179681_82?ts=1757416157411&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":84.589764,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e","m.mentions":{"user_ids":["@discord_769998429991600219:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.803960323Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1414930659692118027","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":100.388565,"event_ids":{"":"$mJzeF6pbYukGXAJk6_vI_H7RYp0WE-C0XxpT_7vXn7Y"},"time":"2026-03-06T19:14:55.804061734Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3421,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":14.910897,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.808689969Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3420,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":57.998313,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.818349149Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307405160347074622","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.818468719Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307405160347074622","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":108.732755,"time":"2026-03-06T19:14:55.818555952Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3422,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":14.025367,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.818883093Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3424,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":4.946785,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.824049742Z","message":"Request completed"} +{"level":"debug","transaction_id":"999","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.831592493Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"999","time":"2026-03-06T19:14:55.831641592Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8lSCHzT2BQfjBNE1TLTnajoa9bEh_QnP9yWjsg6o6qI","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495831,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.83182402Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"1000","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.841854062Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1000","time":"2026-03-06T19:14:55.841945556Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mJzeF6pbYukGXAJk6_vI_H7RYp0WE-C0XxpT_7vXn7Y","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495842,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.842150752Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3423,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495808901661_24?ts=1725471966520&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":71.56363,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"uff das klingt schlecht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.880615242Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947012061364300","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":87.233921,"event_ids":{"":"$KShDCaSBxmGY5NBmgPZye-r5qM4ZKeksAOeLX2B4yFE"},"time":"2026-03-06T19:14:55.880685503Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3426,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495824198017_27?ts=1731781036846&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":68.334264,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Good","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.892646055Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307409170965725225","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":73.916754,"event_ids":{"":"$CQc5bLdDNYy4uXSnv21v-z4K89QKWCfRDHDXoR_RNE0"},"time":"2026-03-06T19:14:55.89270542Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3427,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.046038,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.8932145Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3425,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495819140741_90?ts=1757416159240&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":80.55826,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://geotastic.net/join/vsrwH8b4qp","com.beeper.linkpreviews":[{"og:title":"Geotastic - the free crowdfunded multiplayer geo quiz app","og:description":"Geotastic is a free to play multiplayer focused geo quiz app that can be played with friends simultaneously. A free alternative to geoguessr.","matched_url":"https://geotastic.net/join/vsrwH8b4qp"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.899855239Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1414930667363373148","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":95.445271,"event_ids":{"":"$0i-Mr9_HkDQB5gM4pPAm1o6S6sSagabYTqtXKBR8wSM"},"time":"2026-03-06T19:14:55.899940028Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3428,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.514189,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.903699774Z","message":"Request completed"} +{"level":"debug","transaction_id":"1001","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.910393523Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1001","time":"2026-03-06T19:14:55.910458267Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KShDCaSBxmGY5NBmgPZye-r5qM4ZKeksAOeLX2B4yFE","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495910,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.91060738Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":3430,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":11.580331,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.912024759Z","message":"Request completed"} +{"level":"debug","transaction_id":"1002","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:55.919153136Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1002","time":"2026-03-06T19:14:55.919250845Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0i-Mr9_HkDQB5gM4pPAm1o6S6sSagabYTqtXKBR8wSM","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495919,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.919470848Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$CQc5bLdDNYy4uXSnv21v-z4K89QKWCfRDHDXoR_RNE0","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824495919,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:55.919475597Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3429,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":42.584274,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.936072136Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3431,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":37.903168,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:55.941942864Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3410,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":317.186943,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<186325 bytes>","time":"2026-03-06T19:14:55.965103176Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3435,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":4.640527,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.970157588Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3433,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":39.406592,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:55.975642787Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947046055940106","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:55.975701035Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947046055940106","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":94.843092,"time":"2026-03-06T19:14:55.975812993Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":3432,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495912170240_52?ts=1757490798944&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":70.127743,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"geotastic groningen jetzt? 😔","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:55.982411547Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1415243728972677120","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":82.264507,"event_ids":{"":"$Y2y-f9cxF3AqLIeSSPFCb_CRRzaHagmAt47Nl-I09TQ"},"time":"2026-03-06T19:14:55.982473287Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3437,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":9.72546,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.985894229Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3438,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":15.563921,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:55.998444738Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3390,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":636.714717,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1783090 bytes>","time":"2026-03-06T19:14:56.007378607Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3434,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":68.207431,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:56.010264627Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307409582053785680","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:56.010313726Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307409582053785680","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":117.420989,"time":"2026-03-06T19:14:56.010372394Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1003","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.018747524Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1003","time":"2026-03-06T19:14:56.018789011Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Y2y-f9cxF3AqLIeSSPFCb_CRRzaHagmAt47Nl-I09TQ","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496018,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.018895031Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3441,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":16.334631,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.023923183Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3442,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":16.024181,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.026688516Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3436,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495970316409_16?ts=1730047154162&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":145.975914,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Bei seiner folie hatte er doch auch nur so ein oval","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.116454986Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3439,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495986061222_25?ts=1725471988877&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":142.917034,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"puh sehr gute Frage","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.129124506Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947105833287848","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":153.267861,"event_ids":{"":"$fND_gM4urqPUBE1dxQ8tHMJ7SQPoYEIGzqNnmxNZzJo"},"time":"2026-03-06T19:14:56.129214602Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3446,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":16.45888,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.133102928Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3447,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":8.745993,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.138603144Z","message":"Request completed"} +{"level":"debug","transaction_id":"1004","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.147935672Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1004","time":"2026-03-06T19:14:56.148000066Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$joNxPiyV3NCEjiaLhS7RqLwHqerTIfDuDQE1eO0kyjY","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496148,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.148182284Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3440,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824495998617458_83?ts=1757491640176&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":162.37871,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"nein","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.161128659Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1415247257355419719","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":178.526722,"event_ids":{"":"$3JoBScNM06ti31ANdjGppgMS65SFpidPnj8xyZxJrNk"},"time":"2026-03-06T19:14:56.161222667Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3444,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496026814092_28?ts=1731781317615&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":145.252628,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Das kann gut sein","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.172203052Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1307410348596527194","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":161.829262,"event_ids":{"":"$0J6x7H_hwp6vTv5jbci3DvhLuwmTKkOOCjzQ_B0AYZM"},"time":"2026-03-06T19:14:56.172299015Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":3450,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_285422022190825472:matrix.theocloud.dev?user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":18.456437,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.180217238Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3443,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496024060493_51?ts=1766782193705&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":160.758581,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":750,"mimetype":"image/png","size":1783090,"w":989},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/VAQeFsxROWiWLUzsXKfjADRY"},"time":"2026-03-06T19:14:56.185039704Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214663184322722","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":1587.685449,"event_ids":{"1454214662840123483":"$ujErCn6MazPWNFT6O7Woe5bViSImIMVaraClfLOyWQI"},"time":"2026-03-06T19:14:56.185175408Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3451,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.407199,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.191260971Z","message":"Request completed"} +{"level":"debug","transaction_id":"1005","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.194062203Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1005","time":"2026-03-06T19:14:56.194209221Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0J6x7H_hwp6vTv5jbci3DvhLuwmTKkOOCjzQ_B0AYZM","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496194,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.194407992Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$fND_gM4urqPUBE1dxQ8tHMJ7SQPoYEIGzqNnmxNZzJo","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496194,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.194425243Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$ujErCn6MazPWNFT6O7Woe5bViSImIMVaraClfLOyWQI","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496194,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:56.194432716Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$3JoBScNM06ti31ANdjGppgMS65SFpidPnj8xyZxJrNk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496194,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.194410366Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3453,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.944068,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.196962122Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3454,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":61.914996,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:56.253459107Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3455,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":67.104064,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:56.264470782Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3445,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":206.630886,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<82606 bytes>","time":"2026-03-06T19:14:56.275453053Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3448,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496133289198_17?ts=1730047154162&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":154.948615,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":798,"mimetype":"image/png","size":186325,"w":1220},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ANbhHcgBcNmewAjomfmBMqrj"},"time":"2026-03-06T19:14:56.288447618Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300136739888693260","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":964.240824,"event_ids":{"":"$joNxPiyV3NCEjiaLhS7RqLwHqerTIfDuDQE1eO0kyjY","1300136739905474700":"$Mgwx6wk_jnosrOcpqwHvvvIcPdEJbg-6HgNsNSYuPyU"},"time":"2026-03-06T19:14:56.28854868Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3458,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.676373,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.297487647Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3449,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496138801216_26?ts=1725472007958&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":162.00254,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Bist du morgen auf dem Azubi Event?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.300938552Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947185864671353","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":171.456942,"event_ids":{"":"$vNs9wNUoZceczbQScx5hqa-Tha-hQUhHyOt0vbmckfY"},"time":"2026-03-06T19:14:56.301043175Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3459,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.676718,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.306952666Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3461,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.463136,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.314237909Z","message":"Request completed"} +{"level":"debug","transaction_id":"1006","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.319418316Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1006","time":"2026-03-06T19:14:56.319542356Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Mgwx6wk_jnosrOcpqwHvvvIcPdEJbg-6HgNsNSYuPyU","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496319,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:56.319771858Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_285422022190825472:matrix.theocloud.dev","req_id":3452,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496180495769_2?ts=1757493183434&user_id=%40discord_285422022190825472%3Amatrix.theocloud.dev","duration":156.430667,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Möchte jemand fragen wann wir Pause machen?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.337111518Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1415253730248364062","message_type":0,"author_id":"285422022190825472","action":"discord message create","handling_time":175.696785,"event_ids":{"":"$LV7LTnTs5xWv8AY23NLKByLOubytDe0pBKysH4DETJk"},"time":"2026-03-06T19:14:56.33722578Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3456,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":97.43787,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:56.351095468Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022498113458217","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:56.351252613Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022498113458217","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":178.767399,"time":"2026-03-06T19:14:56.351379796Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":3464,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":13.638232,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.351593863Z","message":"Request completed"} +{"level":"debug","transaction_id":"1007","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.358510338Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1007","time":"2026-03-06T19:14:56.358631864Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vNs9wNUoZceczbQScx5hqa-Tha-hQUhHyOt0vbmckfY","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496358,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.358829517Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3465,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":11.734472,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.363914311Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3457,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":101.68791,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:56.366396294Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214791890735236","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:56.366487438Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454214791890735236","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":180.91379,"time":"2026-03-06T19:14:56.366543172Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3468,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":8.532555,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.375552261Z","message":"Request completed"} +{"level":"debug","transaction_id":"1008","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.380502608Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1008","time":"2026-03-06T19:14:56.38059466Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LV7LTnTs5xWv8AY23NLKByLOubytDe0pBKysH4DETJk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496380,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.380794549Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3462,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":92.101575,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:56.399425382Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3463,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":93.21912,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:56.407927975Z","message":"Request completed"} +{"level":"warn","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442803713067585536","message_type":0,"author_id":"388409312340344833","action":"discord message create","embed_type":"link","embed_index":0,"computed_embed_type":"link preview","error":"unexpected status 404 downloading https://images-ext-1.discordapp.net/external/nvMA2DVJvBKxUQqP93RmOze7L4DeQgavOZnVda7LHkM/https/lh7-us.googleusercontent.com/docs/AHkbwyKpu1tsnzHHmvLpSG9eyp5ws0UBrKVWLJ2AUVKyHhTXNKTmZKEgv6MruH8mUnoa7clD8V5BIBULCpKTS4eyaO-OoMe7z5_3XG1iXQeAb-IXodKFK6kM%3Dw1200-h630-p: {\"message\":\"Invalid resource \\\"https://images-ext-1.discordapp.net/external/nvMA2DVJvBKxUQqP93RmOze7L4DeQgavOZnVda7LHkM/https/lh7-us.googleusercontent.com/docs/AHkbwyKpu1tsnzHHmvLpSG9eyp5ws0UBrKVWLJ2AUVKyHhTXNKTmZKEgv6MruH8mUnoa7clD8V5BIBULCpKTS4eyaO-OoMe7z5_3XG1iXQeAb-IXodKFK6kM%3Dw1200-h630-p\\\"\"}","time":"2026-03-06T19:14:56.439980948Z","message":"Failed to reupload image in URL preview"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3472,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":33.971469,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.474192745Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3460,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496297779239_139?ts=1763290185755&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":176.17276,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://github.com/NexusOne23/noid-privacy?tab=readme-ov-file#-gaming--multiplayer-issues","com.beeper.linkpreviews":[{"og:title":"GitHub - NexusOne23/noid-privacy: Enterprise-Grade Security \u0026 Priva...","og:description":"Enterprise-Grade Security \u0026 Privacy Hardening Tool for Windows 11 25H2 - NexusOne23/noid-privacy","og:image":"mxc://matrix.theocloud.dev/aFmioAIPaXZHWzrhfzPmYXwQ","matrix:image:size":82606,"og:image:width":1200,"og:image:height":600,"og:image:type":"image/png","matched_url":"https://github.com/NexusOne23/noid-privacy?tab=readme-ov-file"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.474206085Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439568120271605760","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":1348.768665,"event_ids":{"":"$VTz3lZdmt5l60BIWJNLu2xTBGmRKbsOcPIzZ0MoMe6o"},"time":"2026-03-06T19:14:56.47431888Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3470,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":78.172102,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:56.477823353Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300137413502570496","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:56.477960523Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300137413502570496","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":189.074855,"time":"2026-03-06T19:14:56.478045242Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3474,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.965241,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.497108818Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3475,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.343087,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.50003828Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3471,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":97.643835,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:56.505772956Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947776196182047","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:56.505907542Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947776196182047","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":204.568235,"time":"2026-03-06T19:14:56.506016565Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1009","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.525413987Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1009","time":"2026-03-06T19:14:56.525493607Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3478,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":18.707241,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.525470909Z","message":"Request completed"} +{"level":"debug","message_checkpoint":{"event_id":"$VTz3lZdmt5l60BIWJNLu2xTBGmRKbsOcPIzZ0MoMe6o","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496525,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.525681203Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":3466,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496352021926_53?ts=1757498987402&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":184.036576,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Uni hier ist ganz unangenehm schwer","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.536252872Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1415278073854689401","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":198.752543,"event_ids":{"":"$ufqxpOdR2M2cXPgFZUJBu14v3RL4WuBlyh8kQ_s6cEw"},"time":"2026-03-06T19:14:56.536376004Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3467,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496364201712_29?ts=1734073065505&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":178.063739,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Bin jetzt schon vor Ort wegen BV","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.542451091Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022635938418750","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":190.892918,"event_ids":{"":"$f-9QbZ1T0aKOyHqDaA6EvP1Hy5YGbY7CUJeWGZcE1_U"},"time":"2026-03-06T19:14:56.542580369Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":3480,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":17.959301,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.555010609Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3481,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":18.227075,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.561648973Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3469,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496375837497_52?ts=1766782408908&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":188.082955,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"du kannst ingame beim map auswählen bei inspect einfach gucken wo industrial auf der map ist und da suchen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.564073756Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454215565811122176","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":197.428754,"event_ids":{"":"$QFh7otuLCJmyeMHR4LQE4E3sksC1XIWRSvLcK_fzGdU"},"time":"2026-03-06T19:14:56.564155401Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1010","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.568449232Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1010","time":"2026-03-06T19:14:56.568523753Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ufqxpOdR2M2cXPgFZUJBu14v3RL4WuBlyh8kQ_s6cEw","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496568,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.568685368Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3484,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.64843,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.58060129Z","message":"Request completed"} +{"level":"debug","transaction_id":"1011","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.587559183Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1011","time":"2026-03-06T19:14:56.588862089Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$f-9QbZ1T0aKOyHqDaA6EvP1Hy5YGbY7CUJeWGZcE1_U","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496589,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.589076016Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$QFh7otuLCJmyeMHR4LQE4E3sksC1XIWRSvLcK_fzGdU","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496589,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.589078461Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3477,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":112.243584,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:56.612696029Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496474474907_120?ts=1764061611192&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":332.875882,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Endpräsi: https://docs.google.com/presentation/d/1K3_szLCVToPgKPEOQOoYPbBm3JOCj49P7APxciZDV6s/edit?usp=sharing","com.beeper.linkpreviews":[{"og:title":"Backlog Manager Präsi","og:description":"Backlog-Manager Erschaffen von Laura, Domenik, Josh und Theo","matched_url":"https://docs.google.com/presentation/d/1K3_szLCVToPgKPEOQOoYPbBm3JOCj49P7APxciZDV6s/edit?usp=sharing"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.80758469Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442803713067585536","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1007.150491,"event_ids":{"":"$eR-alqFKb8dCToX_KkDSE1xqcno4v7cv8saHC3VxTSY"},"time":"2026-03-06T19:14:56.807755943Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3485,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":236.190282,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:56.818364349Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3479,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496525728487_27?ts=1725472168407&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":328.409262,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"mau also eher nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.854379821Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947858836688947","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":348.24613,"event_ids":{"":"$kNuZ5-poJGXxxzEGvZXgZEZS7V8JJ4vYEF9GBDMaJuY"},"time":"2026-03-06T19:14:56.854519925Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3487,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":248.914698,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:56.861816412Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300137477637406760","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:56.861893029Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300137477637406760","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":383.653625,"time":"2026-03-06T19:14:56.861943525Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3476,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496497385882_140?ts=1763290243299&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":370.6592,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bin ja schon wieder gewillt das mal zu testen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.868233446Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439568361628373116","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":393.595946,"event_ids":{"":"$6wNyG3YTQSvSPigcnlqf6k7qCuNBwokW2jGBEf2B1TY"},"time":"2026-03-06T19:14:56.868389264Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1012","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.873766278Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1012","time":"2026-03-06T19:14:56.873868806Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eR-alqFKb8dCToX_KkDSE1xqcno4v7cv8saHC3VxTSY","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496874,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.87411507Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3489,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":23.175048,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.878371534Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3491,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.401118,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.883580089Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":3482,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496555206237_54?ts=1757498993009&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":349.822679,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich würde gerne Eier aus dem Fenster werfen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.905200938Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1415278097372020799","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":368.616245,"event_ids":{"":"$r9sspIz0G3Pp77Pa2QUtN663QCJfat8nNOvfa7meavA"},"time":"2026-03-06T19:14:56.9053592Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3483,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496561830493_30?ts=1734073072221&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":355.994008,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Bei mir sinds also 9h","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:56.917968516Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022664107233402","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":375.089432,"event_ids":{"":"$cR42CU5fHHzMad94BMSKnXrt7DRK2oWcIfwkq7IC58E"},"time":"2026-03-06T19:14:56.918093114Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3494,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":16.503648,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.922615818Z","message":"Request completed"} +{"level":"debug","transaction_id":"1013","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.925240978Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1013","time":"2026-03-06T19:14:56.9253859Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$r9sspIz0G3Pp77Pa2QUtN663QCJfat8nNOvfa7meavA","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496925,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.925617776Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$kNuZ5-poJGXxxzEGvZXgZEZS7V8JJ4vYEF9GBDMaJuY","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496925,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.92563831Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$6wNyG3YTQSvSPigcnlqf6k7qCuNBwokW2jGBEf2B1TY","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496925,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.925628392Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3495,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.02355,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.931901551Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3488,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":126.916179,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:56.94547462Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454215779640803328","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:56.945634489Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454215779640803328","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":381.0666,"time":"2026-03-06T19:14:56.94575371Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1014","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:56.947964985Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1014","time":"2026-03-06T19:14:56.948063253Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$cR42CU5fHHzMad94BMSKnXrt7DRK2oWcIfwkq7IC58E","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824496948,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:56.948270265Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3498,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.119227,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:56.952502355Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3492,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":85.266186,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:56.963993357Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3497,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":57.052859,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:56.989276942Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3499,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":66.114259,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.01899935Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3500,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":59.566341,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.023766571Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947892789444739","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.023862883Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1280947892789444739","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":169.073507,"time":"2026-03-06T19:14:57.0239527Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3493,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496883749596_121?ts=1763290298456&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":158.821227,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hört sich echt geil an","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.04268669Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439568592973729844","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":173.888849,"event_ids":{"":"$eW7dR2juSeohSK9JecRBwAtzE44hQkaz5YlQys_uZwY"},"time":"2026-03-06T19:14:57.042742355Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3503,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.901691,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.052408729Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3496,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824496922792658_91?ts=1758092934129&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":147.263385,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://geotastic.net/join/vsrwH8b4qp","com.beeper.linkpreviews":[{"og:title":"Geotastic - the free crowdfunded multiplayer geo quiz app","og:description":"Geotastic is a free to play multiplayer focused geo quiz app that can be played with friends simultaneously. A free alternative to geoguessr.","matched_url":"https://geotastic.net/join/vsrwH8b4qp"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.070244199Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1417769266987401366","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":164.596062,"event_ids":{"":"$cT_wiRhU-tBcELRMLKDBhWVDBTEZDNr71NI5bmL9n0s"},"time":"2026-03-06T19:14:57.070369146Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1015","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.089704269Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1015","time":"2026-03-06T19:14:57.089781864Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eW7dR2juSeohSK9JecRBwAtzE44hQkaz5YlQys_uZwY","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497089,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.089930697Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3490,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":241.657182,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<9384780 bytes>","time":"2026-03-06T19:14:57.097935245Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3501,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":114.148741,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.103628784Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022695929548822","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.103739833Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022695929548822","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":185.289406,"time":"2026-03-06T19:14:57.103830907Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3506,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.492265,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.115719032Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3486,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":519.568976,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1400039 bytes>","time":"2026-03-06T19:14:57.119762827Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3507,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.076776,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.12357768Z","message":"Request completed"} +{"level":"debug","transaction_id":"1016","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.127932552Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1016","time":"2026-03-06T19:14:57.127994781Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$cT_wiRhU-tBcELRMLKDBhWVDBTEZDNr71NI5bmL9n0s","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497128,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.128170225Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3509,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.383373,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.129506936Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3502,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.873708,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.139045638Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454215807063035905","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.139117017Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454215807063035905","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":193.179063,"time":"2026-03-06T19:14:57.139183227Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3512,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":5.464596,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.145013517Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3505,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":96.594386,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.149308534Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3508,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":52.967368,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.169047834Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3510,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":48.433629,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.17229424Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3514,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":44.053614,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.193531096Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281634954261954674","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.19362699Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281634954261954674","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":169.546199,"time":"2026-03-06T19:14:57.193698648Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3517,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.307313,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.201526635Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3515,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":52.128702,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.221321878Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154451276935999549","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"1154451276390744086","time":"2026-03-06T19:14:57.221428317Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154451276935999549","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1827.977214,"time":"2026-03-06T19:14:57.221493131Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3504,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":192.287597,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<31767 bytes>","time":"2026-03-06T19:14:57.227254835Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3516,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":56.6051,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.229064936Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022774568550501","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.229165369Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022774568550501","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":125.161184,"time":"2026-03-06T19:14:57.229234024Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3511,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497129682868_122?ts=1765831173242&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":105.075886,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Free Epic Games wurden für Dezember geleaked","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.234898439Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3520,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":13.390151,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.243085205Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3519,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":15.75927,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.243381336Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3521,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.353973,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.24740788Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3513,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497145191125_53?ts=1766783148375&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":110.840174,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"immer motorhauben und die anderen gelblichen arcs öffnen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.256159949Z","message":"Request completed"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454218667360518269","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":116.934887,"event_ids":{"":"$xC-3fr-ETkwFfmN0kt_qc5vF9njbjDzsyWnENlWqbbc"},"time":"2026-03-06T19:14:57.256256122Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1017","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.258460343Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1017","time":"2026-03-06T19:14:57.258538636Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7A_W-cV52gdkE7HWcl3cSJqxu3E7C0FXiL4UIv0mOpc","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497258,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.258744182Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3525,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.037093,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.262964887Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3518,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":69.499443,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.271342113Z","message":"Request completed"} +{"level":"debug","transaction_id":"1018","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.273161294Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1018","time":"2026-03-06T19:14:57.273237841Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xC-3fr-ETkwFfmN0kt_qc5vF9njbjDzsyWnENlWqbbc","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497273,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.273445482Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3527,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":32.101933,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.30361474Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281635010046197800","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.303693382Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281635010046197800","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":109.863571,"time":"2026-03-06T19:14:57.303778171Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3526,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":42.36462,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.305605383Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3528,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.480733,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.313770498Z","message":"Request completed"} +{"level":"warn","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439568742345474058","message_type":0,"author_id":"122672447207112706","action":"discord message create","embed_type":"article","embed_index":0,"computed_embed_type":"link preview","error":"unexpected status 400 downloading https://images-ext-1.discordapp.net/external/8BNoFrnONxq-1R4RT5mT1hy4Cmxb_rXfd-YhIQO-67k/https/opengraph.githubassets.com/63d152336850b855ee1f5d4f42081d1346fbc251ed3246c57f4bd9aab2baad84/AndyFul/ConfigureDefender: {\"message\":\"Invalid resource \\\"https://images-ext-1.discordapp.net/external/8BNoFrnONxq-1R4RT5mT1hy4Cmxb_rXfd-YhIQO-67k/https/opengraph.githubassets.com/63d152336850b855ee1f5d4f42081d1346fbc251ed3246c57f4bd9aab2baad84/AndyFul/ConfigureDefender\\\"\"}","time":"2026-03-06T19:14:57.320611684Z","message":"Failed to reupload image in URL preview"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3522,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497243268331_31?ts=1734073104830&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":82.617349,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Betriebsversammlung","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.326057283Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022800879292427","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":96.717936,"event_ids":{"":"$lgUvLYsDXmoRxryp-zn53SYPrxKZxU7EQKYXpMuOi4g"},"time":"2026-03-06T19:14:57.326160649Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3531,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.085217,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.329902656Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3523,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497243550284_84?ts=1764084083462&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":101.154105,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wenn ich diesen punkt sage, welche habven wir denn aktuell","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.344845052Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3532,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.361102,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.345202784Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3524,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497247562581_123?ts=1765831173242&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":100.310341,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"IMG_1068.png","info":{"h":2622,"mimetype":"image/jpeg","size":1400039,"w":1206},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ZtNsfIrMGlyPfpjDDKajcPeh"},"time":"2026-03-06T19:14:57.348058423Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1450225794252013749","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1942.931794,"event_ids":{"":"$7A_W-cV52gdkE7HWcl3cSJqxu3E7C0FXiL4UIv0mOpc","1450225794277441707":"$-pGtiq4a7O9_tw-Sk-HJ-BbnYHcSGYjsxe7WQo4CimM"},"time":"2026-03-06T19:14:57.348172615Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3534,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":14.181604,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.359212995Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3536,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.153318,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.363016393Z","message":"Request completed"} +{"level":"debug","transaction_id":"1019","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.36523989Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1019","time":"2026-03-06T19:14:57.365345911Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$lgUvLYsDXmoRxryp-zn53SYPrxKZxU7EQKYXpMuOi4g","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497365,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.365547685Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3529,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":75.850266,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.381608115Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454219167971672115","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.38172545Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454219167971672115","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":125.195197,"time":"2026-03-06T19:14:57.381811286Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1020","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.386269106Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1020","time":"2026-03-06T19:14:57.386416193Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$IFzWMcsJr4wxgcPWRTrMXVFcol1HVamFQCW91EeOs8I","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497386,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.386659454Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$-pGtiq4a7O9_tw-Sk-HJ-BbnYHcSGYjsxe7WQo4CimM","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497386,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:57.386654146Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3540,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.897625,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.395238524Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3530,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":83.768,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.397818985Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3535,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":77.934288,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.423470568Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3542,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":63.358983,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.46135446Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281635108641837067","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.461486182Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281635108641837067","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":157.586207,"time":"2026-03-06T19:14:57.46158438Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3541,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":71.619643,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.467176578Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3545,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.054283,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.477203128Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3537,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":128.753449,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38488 bytes>","time":"2026-03-06T19:14:57.481616179Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3548,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":20.125038,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.50212074Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3533,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497330065668_141?ts=1763290334069&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":180.493689,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://github.com/AndyFul/ConfigureDefender","com.beeper.linkpreviews":[{"og:title":"GitHub - AndyFul/ConfigureDefender: Utility for configuring Windows...","og:description":"Utility for configuring Windows 10 built-in Defender antivirus settings. - AndyFul/ConfigureDefender","matched_url":"https://github.com/AndyFul/ConfigureDefender"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.51075268Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439568742345474058","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":467.889708,"event_ids":{"":"$eSVrxO5lU417Rv4GJanYCejwJU4ov1SxZtY1Yd0YtoQ"},"time":"2026-03-06T19:14:57.510883215Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3550,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":23.921032,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.535655555Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3543,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":115.021,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.538692156Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022848052629514","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.538781065Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022848052629514","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":212.347193,"time":"2026-03-06T19:14:57.538869834Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3538,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497359413163_85?ts=1764084083462&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":181.303509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":325,"mimetype":"image/png","size":31767,"w":959},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/yUqPLQXNmHAPIHjtLQeFrMQF"},"time":"2026-03-06T19:14:57.540957907Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442897968599662656","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":732.890677,"event_ids":{"":"$IFzWMcsJr4wxgcPWRTrMXVFcol1HVamFQCW91EeOs8I","1442897968695873566":"$qGfx_kcm7lENKGzQUVY8-3FRiL5X255m-oUQmWWjyHM"},"time":"2026-03-06T19:14:57.541095217Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3539,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497363187157_113?ts=1765871512338&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":181.36511,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Slime rancher 2","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.544700333Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1450394988683989042","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":196.200018,"event_ids":{"":"$rkOLWSMns778yECZADwYJVn2vF4ig1Dqu-TMLlOVGpY"},"time":"2026-03-06T19:14:57.544805655Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3552,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.379887,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.553831506Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3553,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":12.316397,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.554344358Z","message":"Request completed"} +{"level":"debug","transaction_id":"1021","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.564300996Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1021","time":"2026-03-06T19:14:57.564408273Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$eSVrxO5lU417Rv4GJanYCejwJU4ov1SxZtY1Yd0YtoQ","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497564,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.564590073Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"1022","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.583539107Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1022","time":"2026-03-06T19:14:57.583637515Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$qGfx_kcm7lENKGzQUVY8-3FRiL5X255m-oUQmWWjyHM","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497583,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:57.583785441Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$rkOLWSMns778yECZADwYJVn2vF4ig1Dqu-TMLlOVGpY","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497583,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.58380339Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3544,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":129.22209,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<21189 bytes>","time":"2026-03-06T19:14:57.586258903Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3546,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":122.159505,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.589454115Z","message":"Request completed"} +{"level":"error","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454219200733253702","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!CPKFhtXonmSscuplvu:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !CPKFhtXonmSscuplvu:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.589538485Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","message_id":"1454219200733253702","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":207.629351,"time":"2026-03-06T19:14:57.589637731Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","action":"initial backfill","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:14:57.589704081Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3557,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":10.649823,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.597524455Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3547,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":124.361001,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.601945119Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3556,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":25.053385,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<205280 bytes>","time":"2026-03-06T19:14:57.608133419Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3560,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":10.30138,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.61881509Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3554,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":76.971792,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.631275991Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3559,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":64.119845,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.666232096Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281635172713889844","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.666374015Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281635172713889844","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":204.648484,"time":"2026-03-06T19:14:57.66646027Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3549,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497502302609_18?ts=1730048188885&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":169.928864,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"So ungefähr?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.672411317Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3564,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":12.306131,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.679317805Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3565,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":12.264854,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.684818789Z","message":"Request completed"} +{"level":"debug","transaction_id":"1023","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.709758261Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1023","time":"2026-03-06T19:14:57.709848777Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8Yg5QiPfWOhKBxiMOjbD7T5_WyziZKtUcoWz1_KoYfY","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497710,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.710075415Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3551,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497535901120_142?ts=1763290336905&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":187.304493,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das auch cool für rentner","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.723385807Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439568754240655370","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":212.168885,"event_ids":{"":"$L_wE9srBxnXc1lvXGeqeXGImjjnsCuPOuQv901Vm6_w"},"time":"2026-03-06T19:14:57.72349078Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3562,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":94.080554,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.725551754Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022992462647309","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.725639127Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317022992462647309","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":186.635405,"time":"2026-03-06T19:14:57.725716232Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3555,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497554516449_86?ts=1764084087074&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":172.096557,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"steam?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.726779301Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442897983749492858","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":185.253576,"event_ids":{"":"$kjSYTFx-p06z7ewO9GVLflSDNlCnHRoH6BDYRCNdSzA"},"time":"2026-03-06T19:14:57.726860458Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3568,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.364177,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.7455626Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3569,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.865435,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.747288541Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3563,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":122.504734,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<377863 bytes>","time":"2026-03-06T19:14:57.768969874Z","message":"Request completed"} +{"level":"debug","transaction_id":"1024","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.769244563Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1024","time":"2026-03-06T19:14:57.76935198Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$L_wE9srBxnXc1lvXGeqeXGImjjnsCuPOuQv901Vm6_w","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497769,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.769553335Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3572,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.055603,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.777426161Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3558,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497597696756_92?ts=1764150494334&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":196.560754,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"\u003e Maja used /play\nMaja and alexx were playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cblockquote\u003e\n\u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e used \u003cfont color=\"#3771bb\"\u003e/play\u003c/font\u003e\n\u003c/blockquote\u003e\nMaja and alexx were playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.794515856Z","message":"Request completed"} +{"level":"debug","transaction_id":"1025","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.798848239Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1025","time":"2026-03-06T19:14:57.798947974Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kjSYTFx-p06z7ewO9GVLflSDNlCnHRoH6BDYRCNdSzA","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497799,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.799151284Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3574,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":16.564621,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.811313889Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3561,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497619090198_114?ts=1765871532086&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":213.59681,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/l3gacord-stare-laughing-emoji-blue-slime-gif-14668909583579328987","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":480,"mimetype":"video/mp4","size":205280,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/cNfEbPCNpGbfMRVbWDmcucYc"},"time":"2026-03-06T19:14:57.832895487Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1450395071513100319","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":287.869899,"event_ids":{"video_https://tenor.com/view/l3gacord-stare-laughing-emoji-blue-slime-gif-14668909583579328987":"$v4z5CYNRrq7pI49ky5W5tu_wRl2XZuOrLmQCKlqcoOE"},"time":"2026-03-06T19:14:57.833005349Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1026","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.835312936Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1026","time":"2026-03-06T19:14:57.835427827Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SPMQELQ2XYdzT7WhSM4C6sdwu40CgejKU13dgLB1umU","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497835,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.835650344Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3570,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":111.383756,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.857292704Z","message":"Request completed"} +{"level":"debug","transaction_id":"1027","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.864408999Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1027","time":"2026-03-06T19:14:57.864519489Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$v4z5CYNRrq7pI49ky5W5tu_wRl2XZuOrLmQCKlqcoOE","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497864,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:57.864742006Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3573,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":102.523571,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.880273102Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3566,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497679489547_28?ts=1725662628239&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":206.841041,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ohhh mein Gott der neue Fließbandbaumodus ist ja crazy🤯","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.886519512Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281746705272016956","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":219.921792,"event_ids":{"":"$im8jkasLdBRImpntKP2o6aKqm25VluMgXAiekPHfjMU"},"time":"2026-03-06T19:14:57.886614776Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3567,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497684978518_19?ts=1730048188885&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":214.031508,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"usecaseneu.png","info":{"h":463,"mimetype":"image/png","size":38488,"w":578},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/hNYQNIxJhUzgnAeuIotBzFxo"},"time":"2026-03-06T19:14:57.899171082Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141079831646258","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":1037.112527,"event_ids":{"":"$8Yg5QiPfWOhKBxiMOjbD7T5_WyziZKtUcoWz1_KoYfY","1300141079563337779":"$HfQ2kbzFwimxwzmgAquBTB5uETitrDZ7aBZgvDPQ3CE"},"time":"2026-03-06T19:14:57.899258385Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3578,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.335884,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.899707331Z","message":"Request completed"} +{"level":"debug","transaction_id":"1028","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.906231293Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1028","time":"2026-03-06T19:14:57.906306513Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$im8jkasLdBRImpntKP2o6aKqm25VluMgXAiekPHfjMU","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497906,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.906457163Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3571,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497747479420_124?ts=1764084125734&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":182.425315,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja eig steam","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:57.93003562Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442898145901285480","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":202.944613,"event_ids":{"":"$ccV_p2L7g3c8dWdRo4GGDeMW3KnHwX5EGCaoAXuUAos"},"time":"2026-03-06T19:14:57.930117056Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3576,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":75.259401,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.932750178Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023029259407380","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:57.932827772Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023029259407380","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":207.027938,"time":"2026-03-06T19:14:57.932923526Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1029","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.935017466Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1029","time":"2026-03-06T19:14:57.935101835Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HfQ2kbzFwimxwzmgAquBTB5uETitrDZ7aBZgvDPQ3CE","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497935,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:57.935357039Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3580,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":15.41425,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.946133974Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3581,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.993311,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.949369136Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3577,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":79.927585,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:57.960399039Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154451339837968415","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"1154451339489837056","time":"2026-03-06T19:14:57.960493536Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154451339837968415","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":738.917852,"time":"2026-03-06T19:14:57.960586985Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1030","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.962123444Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1030","time":"2026-03-06T19:14:57.962204042Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ccV_p2L7g3c8dWdRo4GGDeMW3KnHwX5EGCaoAXuUAos","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497962,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:57.962428096Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3575,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497811575379_93?ts=1764150494334&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":168.749508,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 unfinished and 1 finished games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":21189,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xfcyyBmHUUKVdaYXJtQWocEL"},"time":"2026-03-06T19:14:57.980629679Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1443176515985739827","message_type":23,"author_id":"1211781489931452447","action":"discord message create","handling_time":910.055475,"event_ids":{"":"$SPMQELQ2XYdzT7WhSM4C6sdwu40CgejKU13dgLB1umU","1443183675327123456":"$DHOdD6Zgm8Okp-DjTJsyP8CvYqsjZebG5ysWNwca-Pc"},"time":"2026-03-06T19:14:57.980740379Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3584,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":11.542545,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:57.992942235Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3579,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":95.72897,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:57.995768052Z","message":"Request completed"} +{"level":"debug","transaction_id":"1031","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:57.998714625Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1031","time":"2026-03-06T19:14:57.998828748Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$DHOdD6Zgm8Okp-DjTJsyP8CvYqsjZebG5ysWNwca-Pc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824497999,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:57.999039951Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3583,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":64.11789,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:58.013802782Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3586,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":31.702505,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:58.027653962Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281746778563153984","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:58.027745805Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1281746778563153984","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":140.815621,"time":"2026-03-06T19:14:58.027824168Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3588,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":5.30773,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.033700413Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3582,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497946293563_87?ts=1764084135524&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":101.681344,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"nur?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.048133519Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442898186963390579","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":117.764123,"event_ids":{"":"$1T2XO7Km8gb9-YFWpxFZxh67gWK6mNxJ5J2DREBioLM"},"time":"2026-03-06T19:14:58.048240937Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3590,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.809833,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.061635558Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3587,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.289197,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:58.064272941Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023035211120640","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:58.064380777Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023035211120640","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":131.353117,"time":"2026-03-06T19:14:58.064457534Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1032","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.070093801Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1032","time":"2026-03-06T19:14:58.070179638Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1T2XO7Km8gb9-YFWpxFZxh67gWK6mNxJ5J2DREBioLM","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498070,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.070417241Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3592,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":7.120485,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.072043587Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3585,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824497993120612_92?ts=1764152211219&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":92.541581,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das wort ist bunny","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.085816684Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1443183717123100683","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":104.826689,"event_ids":{"":"$VlC5D255WZzRwJv1_L3c1e4Ev6R7dwzclTpo2K_xbg8"},"time":"2026-03-06T19:14:58.08592438Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1033","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.102277938Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1033","time":"2026-03-06T19:14:58.102381305Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$VlC5D255WZzRwJv1_L3c1e4Ev6R7dwzclTpo2K_xbg8","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498102,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.102578609Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3589,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498033875578_29?ts=1725992483646&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":98.295812,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ahh ich muss erstmal was am Satisfactory Server fixen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.132327277Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283130219124887562","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":104.37474,"event_ids":{"":"$iu_aToVrBmdPIMjof6MAvm29jMMS_KSmlAUvXgWoXMM"},"time":"2026-03-06T19:14:58.13242799Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1034","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.149564269Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1034","time":"2026-03-06T19:14:58.149647242Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$iu_aToVrBmdPIMjof6MAvm29jMMS_KSmlAUvXgWoXMM","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498149,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.149877861Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3591,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498061800665_125?ts=1764084136408&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":103.718502,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber selbst das wurde ja nixht fertig","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.165732186Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442898190671155310","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":117.24757,"event_ids":{"":"$8fWAQ-8x6ChpN16aEWdH4VHzULwHIR0PSPRN2BDb22Y"},"time":"2026-03-06T19:14:58.165821096Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3593,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498072205830_32?ts=1734073198046&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":96.055483,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wem sagst du das. Ich hätte die Vertikalen Kabelführungen und Kabelkästen fertig machen können","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.168418528Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023191855661056","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":103.853507,"event_ids":{"":"$A0rs0t8V6shWWYeOP_WRgQeQXfpCa030AByuXJiK2uY"},"time":"2026-03-06T19:14:58.168503456Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3596,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.567687,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.17963519Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3595,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":13.594091,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.180129603Z","message":"Request completed"} +{"level":"debug","transaction_id":"1035","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.184784587Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1035","time":"2026-03-06T19:14:58.184848493Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8fWAQ-8x6ChpN16aEWdH4VHzULwHIR0PSPRN2BDb22Y","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498184,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.185021422Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3594,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":99.660948,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<85123 bytes>","time":"2026-03-06T19:14:58.186771599Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3600,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":6.248086,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.193244646Z","message":"Request completed"} +{"level":"debug","transaction_id":"1036","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.198202467Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1036","time":"2026-03-06T19:14:58.198286138Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$A0rs0t8V6shWWYeOP_WRgQeQXfpCa030AByuXJiK2uY","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498198,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.198552306Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3597,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":39.879842,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:58.219834211Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3598,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498180278227_88?ts=1764084140539&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":86.078451,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ok ok","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.266529607Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442898207997694214","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":100.446393,"event_ids":{"":"$ueEicjW2EO-FS88kS90VeX34t6JJUJnBbwCkUqLohrI"},"time":"2026-03-06T19:14:58.266630739Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3599,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":91.416562,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24820 bytes>","time":"2026-03-06T19:14:58.273782513Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3602,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":65.542042,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:58.285541151Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023228954148905","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:58.285619025Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023228954148905","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":116.900804,"time":"2026-03-06T19:14:58.285701439Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3603,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.678186,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.28602397Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3604,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":23.543885,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.297658288Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3605,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":19.396234,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.3056078Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3601,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498193437620_143?ts=1766837445670&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":126.24737,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"85E8651A-0049-47C3-AC4F-C508A8465EDE.png","info":{"h":902,"mimetype":"image/webp","size":85123,"w":230},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ALhKMqoTkdHoPjrMvekDxSCM"},"time":"2026-03-06T19:14:58.319853729Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454446406721998959","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":486.511881,"event_ids":{"1454446406415683685":"$bslb877Msqgu0zuSLq8Sp1SgaIZZwBsxgiommr3uZMo"},"time":"2026-03-06T19:14:58.319951578Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1037","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.320820555Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1037","time":"2026-03-06T19:14:58.320912188Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ueEicjW2EO-FS88kS90VeX34t6JJUJnBbwCkUqLohrI","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498321,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.321130585Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3609,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":11.590877,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.332196597Z","message":"Request completed"} +{"level":"debug","transaction_id":"1038","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.34223942Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1038","time":"2026-03-06T19:14:58.342358292Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bslb877Msqgu0zuSLq8Sp1SgaIZZwBsxgiommr3uZMo","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498342,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:58.342556365Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3607,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":72.675588,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:58.370640274Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3608,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498305765714_33?ts=1734073216788&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":103.151663,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Yess","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.409088141Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023270465306636","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":123.296117,"event_ids":{"":"$2mCmp-0y5ZuW7QkNmaQycmSWbgCLbLwl7WKrQmJY6_c"},"time":"2026-03-06T19:14:58.409194091Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3606,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498286207236_126?ts=1764084149193&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":133.20219,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"du kannst aktuell nur csv importiere","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.419594926Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442898244295196915","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":152.667777,"event_ids":{"":"$mJiB92Fh6utfJ37bgABQ5DDPGTrVlsQ2sa5tUx81-ig"},"time":"2026-03-06T19:14:58.419706813Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3612,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.746355,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.430753689Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3614,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":21.511616,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.441903442Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3611,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":74.610287,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:58.445433547Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141422174928897","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"1300141422061551697","time":"2026-03-06T19:14:58.445557657Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141422174928897","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":545.972829,"time":"2026-03-06T19:14:58.445637277Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3610,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498332383285_144?ts=1766837448015&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":120.729554,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ciao","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.453244912Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454446416557772840","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":133.01145,"event_ids":{"":"$AsZ5iMBpTFr1w8142un_aTqWp6F5Xdp29XphysesafM"},"time":"2026-03-06T19:14:58.453313985Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1039","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.455251688Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1039","time":"2026-03-06T19:14:58.455376846Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2mCmp-0y5ZuW7QkNmaQycmSWbgCLbLwl7WKrQmJY6_c","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498455,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.455551311Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3617,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.841766,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.47408227Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3618,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.455321,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.474302692Z","message":"Request completed"} +{"level":"debug","transaction_id":"1040","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.483102813Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1040","time":"2026-03-06T19:14:58.483223501Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$mJiB92Fh6utfJ37bgABQ5DDPGTrVlsQ2sa5tUx81-ig","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498483,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.483429535Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$AsZ5iMBpTFr1w8142un_aTqWp6F5Xdp29XphysesafM","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498483,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.483492463Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3615,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":76.418782,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:58.507484595Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3619,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":42.01925,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:58.516450801Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3616,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498442136226_89?ts=1764084155063&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":118.963105,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ok danke","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.561237898Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442898268916023416","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":141.258699,"event_ids":{"":"$AeUCYbQP1yuoDLBVmOQk3tQ88CSrQN7ozmeCt97IVZE"},"time":"2026-03-06T19:14:58.561325061Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3621,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":69.242982,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:58.576954494Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023304325926935","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:58.577067988Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023304325926935","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":167.607797,"time":"2026-03-06T19:14:58.577209768Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3623,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":20.146969,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.581946188Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3620,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498474511521_127?ts=1766838009021&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":119.874477,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wunderland für dich oder","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.59453532Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454448769587351585","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":141.002309,"event_ids":{"":"$9vYOSY3mgUWhqP36IIdM9YtnFxshKx_ZIc5PCVXx9Cs"},"time":"2026-03-06T19:14:58.594605371Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3625,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.336028,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.595268174Z","message":"Request completed"} +{"level":"debug","transaction_id":"1041","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.599684089Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1041","time":"2026-03-06T19:14:58.599760775Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3622,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":83.195154,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:58.599840256Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141433902075965","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:58.599912682Z","message":"Failed to send part of message to Matrix"} +{"level":"debug","message_checkpoint":{"event_id":"$AeUCYbQP1yuoDLBVmOQk3tQ88CSrQN7ozmeCt97IVZE","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498599,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.599950327Z","message":"Sent message checkpoint"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141433902075965","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":154.130343,"time":"2026-03-06T19:14:58.599979451Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3627,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":18.042762,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.613202471Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3613,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":198.575981,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<91362 bytes>","time":"2026-03-06T19:14:58.613553638Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3629,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.154574,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.613639404Z","message":"Request completed"} +{"level":"debug","transaction_id":"1042","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.620724898Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1042","time":"2026-03-06T19:14:58.620816391Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$9vYOSY3mgUWhqP36IIdM9YtnFxshKx_ZIc5PCVXx9Cs","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498620,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.6210072Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3632,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":10.977173,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.624915013Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3628,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":53.249949,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:58.648776749Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3631,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":44.391162,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:58.658279902Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3624,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":99.357902,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<16070 bytes>","time":"2026-03-06T19:14:58.668698058Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3636,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":6.362766,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.675781945Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3626,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498582151035_90?ts=1764085637421&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":112.907644,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"will jemand ganz fix guecken ob ok so aussieht?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.69525773Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442904486376116325","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":133.842922,"event_ids":{"":"$iNOXXwsgFhSJJtocUvIL-j7Yi-Cs1UH9EFhGeMW9_V8"},"time":"2026-03-06T19:14:58.695423256Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3638,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.175667,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.710376128Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3634,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":64.273777,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:58.713245177Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023333736255542","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:58.713350219Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1317023333736255542","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":135.967802,"time":"2026-03-06T19:14:58.713444646Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1043","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.728059272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1043","time":"2026-03-06T19:14:58.728240233Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$iNOXXwsgFhSJJtocUvIL-j7Yi-Cs1UH9EFhGeMW9_V8","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498728,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.728469805Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3640,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":15.766743,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.729763422Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3630,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498613460119_145?ts=1766838211130&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":122.4138,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"null","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.736058512Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449617293938709","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":141.255138,"event_ids":{"":"$3fiZrbks7V-wvztPhOU53Wvg-koFk97p5SDRqKm2UJk"},"time":"2026-03-06T19:14:58.736167186Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3635,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":78.552951,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:58.737056837Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141485194219630","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:58.737176057Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141485194219630","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":137.104763,"time":"2026-03-06T19:14:58.73728131Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3642,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.065806,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.751043302Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3643,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.276032,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.754186621Z","message":"Request completed"} +{"level":"debug","transaction_id":"1044","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.766459646Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1044","time":"2026-03-06T19:14:58.766585572Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3fiZrbks7V-wvztPhOU53Wvg-koFk97p5SDRqKm2UJk","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498766,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.766739644Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3633,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498625062799_146?ts=1763290404279&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":154.178115,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"theo https://github.com/CorentinTh/it-tools","com.beeper.linkpreviews":[{"og:title":"GitHub - CorentinTh/it-tools: Collection of handy online tools for ...","og:description":"Collection of handy online tools for developers, with great UX. - GitHub - CorentinTh/it-tools: Collection of handy online tools for developers, with great UX.","og:image":"mxc://matrix.theocloud.dev/ruezXwrEuuPlGJFPiLIbkXGp","matrix:image:size":91362,"og:image:width":1200,"og:image:height":600,"og:image:type":"image/png","matched_url":"https://github.com/CorentinTh/it-tools"}],"format":"org.matrix.custom.html","formatted_body":"\u003ca href=\"https://matrix.to/#/@theo:matrix.theocloud.dev\"\u003etheo\u003c/a\u003e https://github.com/CorentinTh/it-tools","m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.779454701Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439569036827430912","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":1055.634754,"event_ids":{"":"$FTrRjDv6dhb2U3hzZ5eBnq4KV_DBxI07dknV9Yx0x8w"},"time":"2026-03-06T19:14:58.779578601Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3647,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":18.520692,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.798719422Z","message":"Request completed"} +{"level":"debug","transaction_id":"1045","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.813648617Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1045","time":"2026-03-06T19:14:58.813745Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FTrRjDv6dhb2U3hzZ5eBnq4KV_DBxI07dknV9Yx0x8w","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498813,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.813894881Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3645,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":99.172682,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:58.8538072Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3637,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498675997269_94?ts=1764236962840&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":197.061034,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"\u003e Maja used /play\n**Your group is on a 1 day streak!** 🔥 Here are yesterday's results:\n👑 4/6: @alexx\nX/6: Maja\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"\u003cblockquote\u003e\n\u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e used \u003cfont color=\"#3771bb\"\u003e/play\u003c/font\u003e\n\u003c/blockquote\u003e\n\u003cstrong\u003eYour group is on a 1 day streak!\u003c/strong\u003e 🔥 Here are yesterday's results:\u003cbr\u003e\n👑 4/6: @alexx\u003cbr\u003e\nX/6: \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_769998429991600219:matrix.theocloud.dev"]},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.873444739Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3651,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":24.60423,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.898357183Z","message":"Request completed"} +{"level":"debug","transaction_id":"1046","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.918691817Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1046","time":"2026-03-06T19:14:58.918842537Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1lFcQOqftDRCf1N8T-B1mGSi7mO0ha0UKAuZTVp69kk","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498919,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.919052552Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3639,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498710604721_128?ts=1764085651477&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":224.73448,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo einen moment","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.935513597Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442904545331253520","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":239.788344,"event_ids":{"":"$UuRtg_OnZtUkTBm5fSD3BFN6d44iQX9AkzhFQ6AOVZQ"},"time":"2026-03-06T19:14:58.935633656Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3641,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498729975463_34?ts=1754055523110&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":211.594922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Sag mal Theo. Krieg ich vielleicht durch dich als Student die Möglichkeit 30% beim Kauf eines Samsung Artikels zu sparen?🤣","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.941728019Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400835137800896543","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":228.130139,"event_ids":{"":"$Q9vlT0SLu-4qo6IiMxizccwvNKfw41sHUnc7fHXz3qE"},"time":"2026-03-06T19:14:58.941805614Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3653,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.86613,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.959181103Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3644,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498751318550_129?ts=1766838217382&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":228.004703,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"what","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:58.97957657Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449643516858421","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":243.05689,"event_ids":{"":"$QN8ptbrdf4f7GwIAco8i3UmGfy9jZ0AGXp5PI8c-8ig"},"time":"2026-03-06T19:14:58.979682102Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1047","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:58.980531872Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1047","time":"2026-03-06T19:14:58.980582927Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$UuRtg_OnZtUkTBm5fSD3BFN6d44iQX9AkzhFQ6AOVZQ","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824498980,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:58.980768567Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3656,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":19.586414,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:58.999984539Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3650,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":148.795864,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.002851213Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141634914353214","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.002956256Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141634914353214","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":265.521852,"time":"2026-03-06T19:14:59.003049286Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3655,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":40.289607,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<203699 bytes>","time":"2026-03-06T19:14:59.007186949Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3658,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.714144,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.011430213Z","message":"Request completed"} +{"level":"debug","transaction_id":"1048","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.01341464Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1048","time":"2026-03-06T19:14:59.013513537Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Q9vlT0SLu-4qo6IiMxizccwvNKfw41sHUnc7fHXz3qE","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499013,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.013725159Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$QN8ptbrdf4f7GwIAco8i3UmGfy9jZ0AGXp5PI8c-8ig","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499013,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.013735426Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3659,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":7.568453,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.015245764Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3649,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498798972810_147?ts=1763290406031&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":239.021965,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"kennste das?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.038177342Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439569044176113851","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":258.377341,"event_ids":{"":"$5si5P_Z-8Iaz1gER03SqVbxXXdozL86CmuAjy8wYTVA"},"time":"2026-03-06T19:14:59.038277845Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3648,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":251.754412,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<137610 bytes>","time":"2026-03-06T19:14:59.050726035Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3662,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":15.378281,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.054404834Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3663,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.996867,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.061142514Z","message":"Request completed"} +{"level":"debug","transaction_id":"1049","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.068135816Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1049","time":"2026-03-06T19:14:59.068255107Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5si5P_Z-8Iaz1gER03SqVbxXXdozL86CmuAjy8wYTVA","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499068,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.068493967Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3654,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":124.340817,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.083975056Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3660,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":97.663181,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.109487654Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3652,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824498898592551_95?ts=1764236962840&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":219.976059,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 solved and 1 unsolved games of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":16070,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/kfFGEAGZenBlOavJHhPaKEJA"},"time":"2026-03-06T19:14:59.118848887Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1443539191186194473","message_type":23,"author_id":"1211781489931452447","action":"discord message create","handling_time":1032.693119,"event_ids":{"":"$1lFcQOqftDRCf1N8T-B1mGSi7mO0ha0UKAuZTVp69kk","1443539190691270737":"$7lb29-9C9aDcQkZMFCLvHkGf51mgQ5qBWeY79iymkV0"},"time":"2026-03-06T19:14:59.118972368Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1050","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.146516746Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1050","time":"2026-03-06T19:14:59.146637154Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$7lb29-9C9aDcQkZMFCLvHkGf51mgQ5qBWeY79iymkV0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499146,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:59.146868052Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3665,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":97.668769,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.15919325Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3666,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":80.73559,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.164948598Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879485657546903","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.165073406Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879485657546903","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":223.120286,"time":"2026-03-06T19:14:59.16517356Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3657,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499000279413_148?ts=1766838217573&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":183.464777,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"die spielen alle in gruppen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.183953088Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449644317970584","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":203.979464,"event_ids":{"":"$SB3aMUGB9nGolckDEesoVYSllm_V3gxxzpb03XYr23o"},"time":"2026-03-06T19:14:59.184046397Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3669,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.468103,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.186290498Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3670,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.276945,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.204951293Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3667,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":110.559549,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.220248068Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141732767334422","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.220365403Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141732767334422","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":217.179367,"time":"2026-03-06T19:14:59.22046423Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3661,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499015531489_91?ts=1764085672665&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":211.622788,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/sans-dance-goosebones-literally-no-one-gif-18776666","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":640,"mimetype":"video/mp4","size":203699,"w":640},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/JLvwHKsPcgLneomeZNwSRXIR"},"time":"2026-03-06T19:14:59.22743169Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442904634200162511","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":291.488843,"event_ids":{"video_https://tenor.com/view/sans-dance-goosebones-literally-no-one-gif-18776666":"$76OHmd9sh5t0P6oAFaoTe2nq8uNUSN7TWNtpSgFNvQk"},"time":"2026-03-06T19:14:59.227567254Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1051","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.229550424Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1051","time":"2026-03-06T19:14:59.229653721Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SB3aMUGB9nGolckDEesoVYSllm_V3gxxzpb03XYr23o","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499229,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.229872886Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3673,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":20.817174,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.241864657Z","message":"Request completed"} +{"level":"debug","transaction_id":"1052","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.259569661Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1052","time":"2026-03-06T19:14:59.259718984Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$76OHmd9sh5t0P6oAFaoTe2nq8uNUSN7TWNtpSgFNvQk","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499259,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:14:59.259919781Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3664,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499054664717_149?ts=1763290412365&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":214.564683,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bestimmt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.269438857Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439569070742573057","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":230.878919,"event_ids":{"":"$uEgu19T5_f-aqu3f3Owa_BhqUuNGUfkJjxdl91ehPz4"},"time":"2026-03-06T19:14:59.269574142Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3668,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":111.698465,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.271120309Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283155553975275573","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.271207332Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283155553975275573","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1138.472316,"time":"2026-03-06T19:14:59.271275009Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3675,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.037799,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.285786408Z","message":"Request completed"} +{"level":"debug","transaction_id":"1053","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.294871835Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1053","time":"2026-03-06T19:14:59.294970871Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uEgu19T5_f-aqu3f3Owa_BhqUuNGUfkJjxdl91ehPz4","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499295,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.295160213Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3671,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":121.582537,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.308257098Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3646,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":567.443308,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<3290889 bytes>","time":"2026-03-06T19:14:59.340996829Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3676,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":59.272863,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.345318876Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3678,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.650245,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.355990908Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3677,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":50.194562,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.35869478Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879506046062623","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.358798356Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879506046062623","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":193.460667,"time":"2026-03-06T19:14:59.35888943Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3672,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499205196300_150?ts=1766838223563&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":160.474461,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"und die haben schon seit 3 wochen alle gezockt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.365827138Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449669441716346","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":181.504375,"event_ids":{"":"$jzJluxfaHQBKec_7yI25bx7GDBungpyegTNVjsUAwm4"},"time":"2026-03-06T19:14:59.365930505Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3681,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.17392,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.37164758Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3674,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499242069644_20?ts=1730048370549&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":140.177821,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"OK da muss ich mich nochmal ransetzen. Welches Tool habt ihr benutzt? Meins ist scheiße","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.382450357Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141841785819146","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":161.866557,"event_ids":{"":"$uCwhWAnv47MMmLv2jqkLYSQcgxtSr9tovXsOWov_pDc"},"time":"2026-03-06T19:14:59.382569158Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3682,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.197949,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.382841892Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3686,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.118111,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.39144401Z","message":"Request completed"} +{"level":"debug","transaction_id":"1054","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.398120089Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1054","time":"2026-03-06T19:14:59.398225271Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$jzJluxfaHQBKec_7yI25bx7GDBungpyegTNVjsUAwm4","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499398,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.39842062Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"1055","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.41597295Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1055","time":"2026-03-06T19:14:59.416084069Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uCwhWAnv47MMmLv2jqkLYSQcgxtSr9tovXsOWov_pDc","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499416,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.41629164Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3679,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":73.219588,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.418749737Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283155634182815815","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.418892774Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283155634182815815","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":147.531929,"time":"2026-03-06T19:14:59.419008363Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3688,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.381699,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.431078147Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3680,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":80.102191,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.436449643Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3684,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":76.976402,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.448927446Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3687,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":66.24221,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.458046746Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3683,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":94.382761,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22599 bytes>","time":"2026-03-06T19:14:59.466290364Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3693,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":6.543518,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.473517428Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3689,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":61.592813,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.493092039Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3690,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":59.264692,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.495934758Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154776108269580308","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"1154776107766251570","time":"2026-03-06T19:14:59.496037775Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154776108269580308","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1535.354477,"time":"2026-03-06T19:14:59.496126963Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3695,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":36.820822,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<96306 bytes>","time":"2026-03-06T19:14:59.513354736Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3685,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499383038498_151?ts=1766838234266&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":140.520537,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dadurch wurde das alles irgendwie voll abgschwächt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.523709266Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449714333352048","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":157.508821,"event_ids":{"":"$QewpspZW-X0cv6q-kk3wQJeccTIlmSHBgwEXz9N8jIA"},"time":"2026-03-06T19:14:59.52379566Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3697,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":27.636919,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.524363129Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3691,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":78.327709,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.527451203Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879540770836553","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.527595567Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879540770836553","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":168.587754,"time":"2026-03-06T19:14:59.527709619Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":23.027262,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.536842049Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3699,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.753129,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.545176112Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3701,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.97369,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.548250428Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3692,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":103.716966,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.561932311Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141891668410460","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.562000477Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141891668410460","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":179.100616,"time":"2026-03-06T19:14:59.562053557Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1056","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.564471564Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1056","time":"2026-03-06T19:14:59.564565991Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QewpspZW-X0cv6q-kk3wQJeccTIlmSHBgwEXz9N8jIA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499564,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.564754984Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3705,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.980593,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.571491407Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3696,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.427474,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.600701452Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283155717171449937","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.600841276Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283155717171449937","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":181.685057,"time":"2026-03-06T19:14:59.600952395Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3707,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":8.858369,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.610462252Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3704,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":75.1714,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.623819718Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3706,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":72.410117,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.644209458Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3694,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499473855744_96?ts=1764271454205&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":194.755332,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Maja was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Maja was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$1lFcQOqftDRCf1N8T-B1mGSi7mO0ha0UKAuZTVp69kk"}},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.668933607Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3711,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":19.538922,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.68876866Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3700,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499524562808_18?ts=1695390914176&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":186.758117,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"🥹","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.711488337Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154777933890715648","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":215.180272,"event_ids":{"":"$KzQTOeVg-sSx6ZcmALkSEKaSTDg8Jh7JGq_xbMff6K8"},"time":"2026-03-06T19:14:59.711573893Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1057","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.714118735Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1057","time":"2026-03-06T19:14:59.714255765Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gmOgDuYM60h5fHl2lwglzsZ0PkNLAYMB_-NyYnWXXXs","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499714,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.714477235Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3713,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":20.409157,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.732620011Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3702,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499537048084_130?ts=1764085748896&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":205.104902,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"voice-message.ogg","info":{"mimetype":"audio/ogg","size":96306},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":25379},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/JteDqTZqsjcGjpueKcZrlSwn"},"time":"2026-03-06T19:14:59.742377529Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442904953936154786","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":514.539007,"event_ids":{"1442904953390891240":"$lq-0Ub5eQ2MYNl8KrFBh_NsB_Zv4DZ3UnWFxd-o_aC0"},"time":"2026-03-06T19:14:59.742486902Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3703,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499545431875_131?ts=1766838250031&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":199.716923,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"was wurde abgeschwächt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.745294489Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449780456558614","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":221.26367,"event_ids":{"":"$nhM9g9DWHnDBfA2TGKXmB_7uYmOJfdekG34MZW4NItI"},"time":"2026-03-06T19:14:59.745411754Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3709,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":123.864772,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.747818099Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879603186274445","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.747900582Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879603186274445","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":220.050022,"time":"2026-03-06T19:14:59.747998152Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3716,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.210451,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.762351777Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3715,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":21.267168,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.7645106Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3717,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.048906,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.764557115Z","message":"Request completed"} +{"level":"debug","transaction_id":"1058","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.767465695Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1058","time":"2026-03-06T19:14:59.767597068Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KzQTOeVg-sSx6ZcmALkSEKaSTDg8Jh7JGq_xbMff6K8","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499767,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.767786061Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$nhM9g9DWHnDBfA2TGKXmB_7uYmOJfdekG34MZW4NItI","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499767,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.767867078Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$lq-0Ub5eQ2MYNl8KrFBh_NsB_Zv4DZ3UnWFxd-o_aC0","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499767,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.audio"},"time":"2026-03-06T19:14:59.767852342Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3710,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":133.554683,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.777976322Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141934932656138","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.778066628Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141934932656138","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":215.969838,"time":"2026-03-06T19:14:59.778183544Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3721,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.4859,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.786248575Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3708,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499610653830_30?ts=1726044745170&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":196.027159,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"vielleicht habe ich den Satisfactory Server gefixt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.806851892Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283349419844042785","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":205.740816,"event_ids":{"":"$t-8mbEhhJDAIEPWG6XenwC2T40eI_NUmlGV_mj5voOs"},"time":"2026-03-06T19:14:59.806948345Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3723,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.744176,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.815456455Z","message":"Request completed"} +{"level":"debug","transaction_id":"1059","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.828910303Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1059","time":"2026-03-06T19:14:59.829038254Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$t-8mbEhhJDAIEPWG6XenwC2T40eI_NUmlGV_mj5voOs","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499829,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.829273133Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3720,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":70.399499,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.835292905Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3722,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":66.353678,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.852985687Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3712,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499689003539_97?ts=1764271454205&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":183.684081,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 unfinished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":22599,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/byWLMqtWPMbdvaTSaxYQFKnV"},"time":"2026-03-06T19:14:59.872949459Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1443683858456510534","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":753.640313,"event_ids":{"":"$gmOgDuYM60h5fHl2lwglzsZ0PkNLAYMB_-NyYnWXXXs","1443684336812429363":"$hyzRrR8WJAi-l4XJGgSVgdDYSJr5zW00APPBSeaEFOs"},"time":"2026-03-06T19:14:59.873128954Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3727,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":18.460139,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.892819014Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3714,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499732854820_19?ts=1695390918802&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":176.88096,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Mein Baby","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.909896277Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154777953293570059","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":198.056005,"event_ids":{"":"$uL8G6U_b8tzxVuXVPd8AeUo0OhiF1j-m3irkU5FFYLc"},"time":"2026-03-06T19:14:59.909966259Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1060","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.914316871Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1060","time":"2026-03-06T19:14:59.914452645Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hyzRrR8WJAi-l4XJGgSVgdDYSJr5zW00APPBSeaEFOs","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499914,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:14:59.914664197Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3729,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.207173,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.930698296Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3718,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499762571291_132?ts=1766838265203&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":175.367479,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dieses erste mal wie sie wow spielen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.938101363Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449844092534915","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":192.398017,"event_ids":{"":"$l-Xy4s-NgHDK8Z0xe6Q0QqM36-zDR2F_hvrkJjLel40"},"time":"2026-03-06T19:14:59.938194742Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3719,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499764723410_92?ts=1764085792958&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":174.177577,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"also wenn mans nicht erkennen kann machen wir einfach das dokument auf","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:14:59.939054988Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442905138745446491","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":196.258756,"event_ids":{"":"$M4A78j5r4jsgScjLx2XlsowLo6Jn_sYlZ2lFtYdynlI"},"time":"2026-03-06T19:14:59.939188317Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3724,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":126.125495,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:14:59.941983543Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3725,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":107.596352,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.943035297Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879622568153251","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.943090682Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400879622568153251","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":194.951658,"time":"2026-03-06T19:14:59.943152632Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3732,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":15.913552,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.955720392Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3731,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":17.300827,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.95613714Z","message":"Request completed"} +{"level":"debug","transaction_id":"1061","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:14:59.962410229Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1061","time":"2026-03-06T19:14:59.962494529Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$uL8G6U_b8tzxVuXVPd8AeUo0OhiF1j-m3irkU5FFYLc","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499962,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.962626251Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$l-Xy4s-NgHDK8Z0xe6Q0QqM36-zDR2F_hvrkJjLel40","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499962,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.962646296Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$M4A78j5r4jsgScjLx2XlsowLo6Jn_sYlZ2lFtYdynlI","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824499962,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:14:59.96269316Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3726,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":136.271056,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:14:59.989427298Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141948966928434","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:14:59.989526684Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141948966928434","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":211.214002,"time":"2026-03-06T19:14:59.989642133Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3738,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.67196,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:14:59.998912851Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3733,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":74.40069,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:00.016585169Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283363498121760769","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:00.016654313Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283363498121760769","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":209.330776,"time":"2026-03-06T19:15:00.016707742Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3740,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":11.493377,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.028625411Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3730,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":99.612268,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:00.030676467Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3737,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":51.935798,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<884393 bytes>","time":"2026-03-06T19:15:00.038498518Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3743,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":7.400761,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.046215595Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499893017995_98?ts=1764358275528&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":170.015469,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Nobody got yesterday's Wordle... but today is a new day Maja 🌞\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Nobody got yesterday's Wordle... but today is a new day \u003ca href=\"https://matrix.to/#/@discord_769998429991600219:matrix.theocloud.dev\"\u003eMaja\u003c/a\u003e 🌞\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{"user_ids":["@discord_769998429991600219:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$1lFcQOqftDRCf1N8T-B1mGSi7mO0ha0UKAuZTVp69kk"}},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.063278819Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1444048013478596689","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":189.82894,"event_ids":{"":"$GohOjqRfY5Ic8n7MPwcBjAyr2uhl688nvib9DrqXBGc"},"time":"2026-03-06T19:15:00.063417596Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3739,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":81.619094,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:00.080950998Z","message":"Request completed"} +{"level":"debug","transaction_id":"1062","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.095024067Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1062","time":"2026-03-06T19:15:00.095175835Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$GohOjqRfY5Ic8n7MPwcBjAyr2uhl688nvib9DrqXBGc","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500095,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.09542119Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3742,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":79.321425,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:00.110185907Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154779531421429930","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:00.110271673Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154779531421429930","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":200.096516,"time":"2026-03-06T19:15:00.110324195Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3735,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499955894369_93?ts=1764085808193&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":163.568123,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bei flos präsi war auch so groß und das ging ja","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.119621103Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442905202645799046","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":180.211945,"event_ids":{"":"$tALBAXPm8xAA8LPpdX4rapCwCQIPQXxdxjDWhpKf11k"},"time":"2026-03-06T19:15:00.119745283Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3736,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824499956297917_152?ts=1766838268962&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":166.112475,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"die leute die neu anfangen, dieses blind reingehen, dieses erleben von dieser welt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.122586395Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449859858792461","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":184.143573,"event_ids":{"":"$S7zyjKE4okUmcnlmaAvA9dOfMi4AUoXH53mDO7VA80s"},"time":"2026-03-06T19:15:00.122685571Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3746,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":21.618754,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.132395666Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3747,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":22.689854,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.143181471Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3748,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.845252,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.145166527Z","message":"Request completed"} +{"level":"debug","transaction_id":"1063","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.155845473Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1063","time":"2026-03-06T19:15:00.155937944Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tALBAXPm8xAA8LPpdX4rapCwCQIPQXxdxjDWhpKf11k","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500156,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.156152709Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3745,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":102.523292,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:00.183670547Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141965999865876","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:00.18374884Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141965999865876","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":193.926654,"time":"2026-03-06T19:15:00.183824339Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1064","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.187294939Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1064","time":"2026-03-06T19:15:00.187399004Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$S7zyjKE4okUmcnlmaAvA9dOfMi4AUoXH53mDO7VA80s","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500187,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.187572632Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3752,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":11.491281,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.195782237Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3734,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":252.147624,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<77429 bytes>","time":"2026-03-06T19:15:00.203005599Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3741,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500028891789_31?ts=1726057346697&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":181.107462,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hat leider noch nicht funktioniert","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.210155488Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283402274479145043","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":193.361351,"event_ids":{"":"$JjNYqMbPvHUWsb1ozkqQtWwccF7AyYFWICzxuyz-lfc"},"time":"2026-03-06T19:15:00.21024754Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3754,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":10.81919,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.214380943Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3755,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":11.957479,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.222896386Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3744,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500046442233_35?ts=1754066491610&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":194.403047,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/thanos-i-finally-rest-avengers-endgame-infinity-war-gif-26712715","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":360,"mimetype":"video/mp4","size":884393,"w":640},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/ZSBXCUFoObDUwVNXdjtkkHfd"},"time":"2026-03-06T19:15:00.241046426Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881143024455701","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":297.815221,"event_ids":{"video_https://tenor.com/view/thanos-i-finally-rest-avengers-endgame-infinity-war-gif-26712715":"$SOfGlzvypfsXMykF6INQSVK1Wmkspx531UvZ9g3g3Z8"},"time":"2026-03-06T19:15:00.241141272Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1065","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.243199382Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1065","time":"2026-03-06T19:15:00.243310571Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$JjNYqMbPvHUWsb1ozkqQtWwccF7AyYFWICzxuyz-lfc","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500243,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.243455564Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3758,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":8.196195,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.249994961Z","message":"Request completed"} +{"level":"debug","transaction_id":"1066","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.261213579Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1066","time":"2026-03-06T19:15:00.261311847Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$SOfGlzvypfsXMykF6INQSVK1Wmkspx531UvZ9g3g3Z8","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500261,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:15:00.26151851Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3749,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500132635504_20?ts=1695391441230&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":168.880882,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"😈😤","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.301687499Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154780144515424360","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":191.269785,"event_ids":{"":"$e23ldymS8pc8FLnC_CH9yHrEp-9f6lTjuBa2Ij18T5k"},"time":"2026-03-06T19:15:00.301781018Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3760,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":17.467751,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.319837259Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3750,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500143435208_94?ts=1764085811126&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":184.204686,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wir gucken ienfach","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.327779228Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442905214947688589","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":207.764564,"event_ids":{"":"$wFlKUQBrLICN1MdW6l07zqxDFxoswTDTp1qHaSPNhYQ"},"time":"2026-03-06T19:15:00.327890417Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3751,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500145414606_153?ts=1766838272363&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":184.531477,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"die dich dann in den bann zieht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.330140803Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449874123882661","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":207.218119,"event_ids":{"":"$bYtW1RXFbYDMpwg3l315e5v4kDcpKyQtfZxc5Ya7744"},"time":"2026-03-06T19:15:00.330259116Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1067","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.346445262Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1067","time":"2026-03-06T19:15:00.346535358Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$e23ldymS8pc8FLnC_CH9yHrEp-9f6lTjuBa2Ij18T5k","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500346,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.346755012Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3762,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":19.835751,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.348396025Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3763,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.796221,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.350809982Z","message":"Request completed"} +{"level":"debug","transaction_id":"1068","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.370260763Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1068","time":"2026-03-06T19:15:00.370395629Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$wFlKUQBrLICN1MdW6l07zqxDFxoswTDTp1qHaSPNhYQ","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500370,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.370583225Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$bYtW1RXFbYDMpwg3l315e5v4kDcpKyQtfZxc5Ya7744","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500370,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.370583225Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3753,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500196057485_21?ts=1730048404573&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":187.415473,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"OK perfekt danke dir","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.383642674Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141984492556380","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":199.724327,"event_ids":{"":"$tL10O3xJHwwo8VPAJqIOocnGcrMICBKyT9ATIPsy-PI"},"time":"2026-03-06T19:15:00.383741361Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3767,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.423816,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.397836989Z","message":"Request completed"} +{"level":"debug","transaction_id":"1069","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.417248728Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1069","time":"2026-03-06T19:15:00.417321294Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tL10O3xJHwwo8VPAJqIOocnGcrMICBKyT9ATIPsy-PI","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500417,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.417482281Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3756,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500214641873_154?ts=1763290449217&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":216.503922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://github.com/memstechtips/UnattendedWinstall","com.beeper.linkpreviews":[{"og:title":"GitHub - memstechtips/UnattendedWinstall: Personalized Unattended A...","og:description":"Personalized Unattended Answer Files that helps automatically debloat and customize Windows 10 \u0026 11 during the installation process. - memstechtips/UnattendedWinstall","og:image":"mxc://matrix.theocloud.dev/NZDnUhpuCNiQirZBLpqvVdmu","matrix:image:size":77429,"og:image:width":1200,"og:image:height":600,"og:image:type":"image/png","matched_url":"https://github.com/memstechtips/UnattendedWinstall"}],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.431384027Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439569225311195137","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":1161.487145,"event_ids":{"":"$FBmRoxmG3Ct6T6gEyqa_1NnLnno1t1MNe8PAUuGt9Hg"},"time":"2026-03-06T19:15:00.431504435Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3757,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500223102770_32?ts=1726057356475&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":209.345653,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich time beim joinen immer aus","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.432593345Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283402315491184692","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":222.072792,"event_ids":{"":"$urB0fwKgXDsuaOyf5hbwhvtTujbEN-80WNbGd4Xmy0E"},"time":"2026-03-06T19:15:00.432691124Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3769,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":20.466636,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.452718243Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3770,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.947848,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.453232003Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3759,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500250147497_36?ts=1754066495820&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":220.434992,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Du einfach","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.470787266Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881160682213377","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":229.40413,"event_ids":{"":"$fL6F9nPDJ_cbFX2oaKrl1EoYdsEDc4M02rmAXFXvLF8"},"time":"2026-03-06T19:15:00.470925204Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1070","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.478162954Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1070","time":"2026-03-06T19:15:00.478282943Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FBmRoxmG3Ct6T6gEyqa_1NnLnno1t1MNe8PAUuGt9Hg","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500478,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.478494286Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3773,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.486394,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.485212619Z","message":"Request completed"} +{"level":"debug","transaction_id":"1071","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.496275279Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1071","time":"2026-03-06T19:15:00.496397922Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fL6F9nPDJ_cbFX2oaKrl1EoYdsEDc4M02rmAXFXvLF8","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500496,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.496622116Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$urB0fwKgXDsuaOyf5hbwhvtTujbEN-80WNbGd4Xmy0E","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500496,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.496609125Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3766,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":130.782855,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<16119 bytes>","time":"2026-03-06T19:15:00.500904073Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3775,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":9.330573,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.510905899Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3768,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":134.311773,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:00.532514525Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3761,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500320070602_21?ts=1695391668512&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":230.144388,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]}},"time":"2026-03-06T19:15:00.550403844Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154781097805217822","message_type":3,"author_id":"248879308200869889","action":"discord message create","handling_time":248.454995,"event_ids":{"":"$D3doHViAJGIsARH5piA1uLlwdAGRzGigBnDIF1Mct9k"},"time":"2026-03-06T19:15:00.550529141Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3764,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500348564485_95?ts=1764085817998&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":225.843365,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"so haben wirs einfach einmal drin","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.574555426Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442905243770687558","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":246.433062,"event_ids":{"":"$3J_lqLCXQ5Nwj76qEVDt4KuXOY4shRI8oVQSvJRAfeI"},"time":"2026-03-06T19:15:00.574674646Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3778,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.394144,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.575613745Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3765,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500351041090_133?ts=1766838280442&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":227.705428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"verstehe","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.578899682Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449908009406586","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":248.305184,"event_ids":{"":"$u64Gegkipv1EN_n4XtnBUG2BN-eq8hXrgt9Rld2QALE"},"time":"2026-03-06T19:15:00.578997391Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3772,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":130.864639,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:00.584503334Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3779,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.893721,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.595231868Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3781,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":17.535288,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.597201559Z","message":"Request completed"} +{"level":"debug","transaction_id":"1072","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.602541486Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1072","time":"2026-03-06T19:15:00.602635005Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$D3doHViAJGIsARH5piA1uLlwdAGRzGigBnDIF1Mct9k","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500602,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:15:00.602830144Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3774,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":128.64233,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:00.614268275Z","message":"Request completed"} +{"level":"debug","transaction_id":"1073","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.626071123Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1073","time":"2026-03-06T19:15:00.626155981Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$3J_lqLCXQ5Nwj76qEVDt4KuXOY4shRI8oVQSvJRAfeI","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500626,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.626374867Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$u64Gegkipv1EN_n4XtnBUG2BN-eq8hXrgt9Rld2QALE","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500626,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.626406366Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3777,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":112.926222,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:00.645637144Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141998367445115","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:00.645774942Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300141998367445115","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":261.831458,"time":"2026-03-06T19:15:00.645929154Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3786,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":8.409074,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.65498797Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500452941459_155?ts=1763290454639&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":222.713245,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das auch big","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.675825469Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439569248052838523","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":243.991658,"event_ids":{"":"$onlp6XTlhXNdvUhTnNiHEcsDFvXOIM1VGQ0xfeZVpIY"},"time":"2026-03-06T19:15:00.675930931Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3782,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":94.517137,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:00.679239985Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283411374478852191","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:00.679392521Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283411374478852191","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":246.502556,"time":"2026-03-06T19:15:00.679496935Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3788,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":28.702292,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.705547876Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3789,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":25.47607,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.705629871Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3780,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":133.202817,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:00.709108363Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3785,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":108.77047,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:00.723231998Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881188666867916","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:00.723312666Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881188666867916","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":252.030359,"time":"2026-03-06T19:15:00.723383207Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1074","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.727352061Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1074","time":"2026-03-06T19:15:00.727423649Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$onlp6XTlhXNdvUhTnNiHEcsDFvXOIM1VGQ0xfeZVpIY","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500727,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.727592388Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3793,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.891825,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.734702187Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3776,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500511166340_99?ts=1764401744947&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":238.294767,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"alexx was playing\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"alexx was playing\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$GohOjqRfY5Ic8n7MPwcBjAyr2uhl688nvib9DrqXBGc"}},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.749735797Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3795,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":14.300895,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.764257602Z","message":"Request completed"} +{"level":"debug","transaction_id":"1075","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.782051586Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1075","time":"2026-03-06T19:15:00.782181702Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ctoxiSQBIT-8wgC67TidYHDuJsZhr_1jqff0UjPG5jM","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500782,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.782362174Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3792,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":104.043268,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:00.813384346Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154886488010543124","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:00.813491833Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154886488010543124","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":262.684092,"time":"2026-03-06T19:15:00.81359059Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3783,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500595365267_134?ts=1764085909469&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":229.067771,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.824586411Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1442905627428126853","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":249.629112,"event_ids":{"":"$rTS4eT7MMR-_NlIwxpTTh3dsIf5fcmwhr1PSoDY406Q"},"time":"2026-03-06T19:15:00.824686215Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3784,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500597392228_156?ts=1766838285101&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":231.269058,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jetzt spielen alle in gruppen und hc in gruppe ist halt einfach","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.828807675Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449927550926964","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":249.534337,"event_ids":{"":"$tuIRN4HnIU5IfIUZr0hWCEPPaVoOFLGZKGUxFdJje0M"},"time":"2026-03-06T19:15:00.828919842Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3797,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":19.100313,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.833263609Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3798,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":16.963141,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.842319283Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3799,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.049674,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.845669614Z","message":"Request completed"} +{"level":"debug","transaction_id":"1076","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.857293805Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1076","time":"2026-03-06T19:15:00.857421687Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$rTS4eT7MMR-_NlIwxpTTh3dsIf5fcmwhr1PSoDY406Q","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500857,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.857613962Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3794,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":128.345709,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:00.863368473Z","message":"Request completed"} +{"level":"debug","transaction_id":"1077","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.883520121Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1077","time":"2026-03-06T19:15:00.883627817Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tuIRN4HnIU5IfIUZr0hWCEPPaVoOFLGZKGUxFdJje0M","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500883,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.883822538Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3787,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500655208602_22?ts=1730050047638&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":232.404483,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Woher hast du eigentlich die ganzen Informationen? Ich weiß nur von der einen Folie aus seiner Präsi","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.887764223Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300148876006916146","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":241.692731,"event_ids":{"":"$P9V7O6B8QhFNJKhkgJuJ5juogdQmgpV8XDLcFs43ohI"},"time":"2026-03-06T19:15:00.887860117Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3804,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.670427,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.900270522Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3791,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500706010022_33?ts=1726172379760&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":208.039603,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Satisfactory sollte gleich laufen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.914214592Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283884758115553372","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":234.54396,"event_ids":{"":"$_At4PUzToeZKOHrCwZyoGTRrEG8WibJqw1ik1Kwjthk"},"time":"2026-03-06T19:15:00.914307692Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1078","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.919988519Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1078","time":"2026-03-06T19:15:00.920078616Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$P9V7O6B8QhFNJKhkgJuJ5juogdQmgpV8XDLcFs43ohI","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500920,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.92028025Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3806,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.759691,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.932755609Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3790,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500705789111_135?ts=1763291168088&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":239.035863,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"das ist huge danke, hab sowas letztes auf der arbeit gebraucht","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@discord_122672447207112706:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$FTrRjDv6dhb2U3hzZ5eBnq4KV_DBxI07dknV9Yx0x8w"}},"msgtype":"m.text"},"time":"2026-03-06T19:15:00.945034571Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439572240474570752","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":268.909689,"event_ids":{"":"$2gsbMswMmYbDtO1g37Z5u6dBfHcqE95ubkYpPAr7m10"},"time":"2026-03-06T19:15:00.945164128Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3808,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.287207,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.961483742Z","message":"Request completed"} +{"level":"debug","transaction_id":"1079","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:00.972010503Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1079","time":"2026-03-06T19:15:00.972107933Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_At4PUzToeZKOHrCwZyoGTRrEG8WibJqw1ik1Kwjthk","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500972,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.972307402Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$2gsbMswMmYbDtO1g37Z5u6dBfHcqE95ubkYpPAr7m10","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824500972,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:00.972386114Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3803,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":117.369724,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:00.980923419Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881226562404506","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:00.981026296Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881226562404506","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":257.532599,"time":"2026-03-06T19:15:00.981098443Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3810,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.681117,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:00.997388724Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3796,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500764622668_100?ts=1764401744947&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":250.891371,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"1 finished game of Wordle","com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"filename":"preview.png","info":{"h":280,"mimetype":"image/png","size":16119,"w":512},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/flqdnoeRpEIfywIYmqQKCYug"},"time":"2026-03-06T19:15:01.015771897Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1444230337436713143","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":952.140304,"event_ids":{"":"$ctoxiSQBIT-8wgC67TidYHDuJsZhr_1jqff0UjPG5jM","1444233827412217948":"$vO8cZd5G4l_Zdtz3cW865UlpqZXEVr0MJ_3UuuFjbe0"},"time":"2026-03-06T19:15:01.015862552Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3812,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_428870593358594048:matrix.theocloud.dev?user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":24.321439,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.040771782Z","message":"Request completed"} +{"level":"debug","transaction_id":"1080","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.062417774Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1080","time":"2026-03-06T19:15:01.062544189Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$vO8cZd5G4l_Zdtz3cW865UlpqZXEVr0MJ_3UuuFjbe0","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501062,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:15:01.062748198Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3805,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":174.508699,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:01.075097142Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3800,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500833506032_22?ts=1695416816974&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":253.939426,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"kann erst ab 0:30 wieder","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.087629422Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154886578099994684","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":273.962494,"event_ids":{"":"$0l0HF_DRXzCmZwdUKAf3YkB2WQGda0Zts_Dm8CoKDC8"},"time":"2026-03-06T19:15:01.08779844Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3815,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":28.162272,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.116756913Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3801,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500842567781_115?ts=1764149001475&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":282.909004,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ist in der risikomatrix, dass die api down ist?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.125637911Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170254481002566","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":300.690556,"event_ids":{"":"$lb5s8c10BjvRPloaO-jHS_Gd779jLDi9ttDvJKgXFKk"},"time":"2026-03-06T19:15:01.125738414Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3802,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500845840378_157?ts=1766838294398&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":282.377086,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dauert zwar länger, aber es ist deutlich einfacher","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.128354984Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449966545109002","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":299.120782,"event_ids":{"":"$1hm_XdoNNLtmQKvr_caLbTyFh5z-jqZh7TyDSZIWjk0"},"time":"2026-03-06T19:15:01.128418261Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3807,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":197.537846,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:01.130617034Z","message":"Request completed"} +{"level":"debug","transaction_id":"1081","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.145205608Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1081","time":"2026-03-06T19:15:01.145348715Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0l0HF_DRXzCmZwdUKAf3YkB2WQGda0Zts_Dm8CoKDC8","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501145,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.145586737Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3817,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":21.415094,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.147894883Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3818,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.130764,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.147955436Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3811,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":172.283665,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:01.170070768Z","message":"Request completed"} +{"level":"debug","transaction_id":"1082","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.173555267Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1082","time":"2026-03-06T19:15:01.173671205Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$1hm_XdoNNLtmQKvr_caLbTyFh5z-jqZh7TyDSZIWjk0","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501173,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.173906853Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$lb5s8c10BjvRPloaO-jHS_Gd779jLDi9ttDvJKgXFKk","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501173,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.173902034Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3814,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":121.233536,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:01.196532592Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300148950296428564","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:01.196633793Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300148950296428564","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":308.456732,"time":"2026-03-06T19:15:01.196741909Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3819,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":88.446661,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:01.219327907Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283884835990929491","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:01.219538272Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283884835990929491","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":304.978798,"time":"2026-03-06T19:15:01.2196767Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3823,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":23.601784,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.244164362Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3809,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824500961746279_136?ts=1763291183683&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":282.79104,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"tatsächlich nicht","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@discord_122672447207112706:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$uEgu19T5_f-aqu3f3Owa_BhqUuNGUfkJjxdl91ehPz4"}},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.244750897Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439572305884872764","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":299.305305,"event_ids":{"":"$TFxoahPP4ewROWfybd_tUWL1GSm1B2OomqKb-5wbF8c"},"time":"2026-03-06T19:15:01.244864601Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3816,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":130.807439,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:01.247986478Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3825,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":19.351186,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.264974972Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3822,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":111.60816,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:01.281850879Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881276214317106","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:01.281952849Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881276214317106","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":300.729737,"time":"2026-03-06T19:15:01.282042876Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1083","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.285642544Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1083","time":"2026-03-06T19:15:01.285739974Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$TFxoahPP4ewROWfybd_tUWL1GSm1B2OomqKb-5wbF8c","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501285,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.285939792Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_428870593358594048:matrix.theocloud.dev","req_id":3813,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501041010084_93?ts=1764402571206&user_id=%40discord_428870593358594048%3Amatrix.theocloud.dev","duration":253.550405,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"tuff","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.294729577Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1444233803018141728","message_type":0,"author_id":"428870593358594048","action":"discord message create","handling_time":278.64367,"event_ids":{"":"$ywJwFSGfmazMwpCCImGiJrDjF8zWkVxYVzdIaTjV6PI"},"time":"2026-03-06T19:15:01.294842651Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3828,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_1211781489931452447:matrix.theocloud.dev?user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":12.752702,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.308507423Z","message":"Request completed"} +{"level":"debug","transaction_id":"1084","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.323220177Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1084","time":"2026-03-06T19:15:01.323297771Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ywJwFSGfmazMwpCCImGiJrDjF8zWkVxYVzdIaTjV6PI","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501323,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.323535026Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3830,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":19.545766,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<42751 bytes>","time":"2026-03-06T19:15:01.331046417Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3831,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":8.541076,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.340033645Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3826,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":102.961412,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:01.351135068Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154886686367551518","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:01.351230053Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154886686367551518","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":263.10559,"time":"2026-03-06T19:15:01.351299197Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3820,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501148069908_96?ts=1764149035931&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":213.713445,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"glaube nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.361927508Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170399000072264","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":235.875083,"event_ids":{"":"$-HqbpwyUL3RaR1aK5cEhfXans27HHr176EKfz_52AH0"},"time":"2026-03-06T19:15:01.362047566Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3821,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501148186824_137?ts=1766838301766&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":217.763177,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja dann ist wirklich arsch","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.366092409Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3824,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":121.608659,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:01.366151566Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454449997448876043","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":237.5675,"event_ids":{"":"$AISvwZIyGPIzJpZhdV2NoYOM6H0uNQG0bbHJQvhf-sw"},"time":"2026-03-06T19:15:01.366187814Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3833,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":19.510287,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.371412082Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3834,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":17.400842,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.380235041Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3836,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.543318,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.382425503Z","message":"Request completed"} +{"level":"debug","transaction_id":"1085","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.392176945Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1085","time":"2026-03-06T19:15:01.392270883Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$-HqbpwyUL3RaR1aK5cEhfXans27HHr176EKfz_52AH0","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501392,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.392483273Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"1086","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.408516394Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1086","time":"2026-03-06T19:15:01.408617386Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$AISvwZIyGPIzJpZhdV2NoYOM6H0uNQG0bbHJQvhf-sw","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501408,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.408796811Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3835,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":64.541063,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:01.430880015Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283885550327304244","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:01.430981286Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283885550327304244","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":211.136198,"time":"2026-03-06T19:15:01.431078926Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3840,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":12.873599,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.444523764Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3827,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501265209362_158?ts=1763291184426&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":191.61739,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hast du schon aufgesetzt?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.457017072Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439572309001113730","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":211.814854,"event_ids":{"":"$_-esvAsNkcnc4dNx4SB2wkuJbExVUW8cIVnJhh5xvns"},"time":"2026-03-06T19:15:01.457116807Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3842,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.047019,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.472891652Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1211781489931452447:matrix.theocloud.dev","req_id":3829,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501308766677_101?ts=1764488302109&user_id=%40discord_1211781489931452447%3Amatrix.theocloud.dev","duration":187.03567,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Nobody got yesterday's Wordle... but today is a new day @alexx 🌞\nThis message contains interactive elements. Use the Discord app to interact with the message.","com.beeper.linkpreviews":[],"com.beeper.per_message_profile":{"avatar_url":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","displayname":"Wordle","has_fallback":false,"id":"33c167c1a8ffbe58877d390bb385215791aa22275b79784a728fd1312d32c970"},"fi.mau.discord.webhook_metadata":{"avatar_id":"2b5cd2dc89eb963155f55520a6fa0495","avatar_mxc":"mxc://matrix.theocloud.dev/kBLQBJcAUzFuLZdJzpprmKir","avatar_url":"https://cdn.discordapp.com/avatars/1211781489931452447/2b5cd2dc89eb963155f55520a6fa0495.png","id":"1211781489931452447","name":"Wordle"},"format":"org.matrix.custom.html","formatted_body":"Nobody got yesterday's Wordle... but today is a new day @alexx 🌞\n\u003cp\u003eThis message contains interactive elements. Use the Discord app to interact with the message.\u003c/p\u003e","m.mentions":{},"m.relates_to":{"m.in_reply_to":{"event_id":"$GohOjqRfY5Ic8n7MPwcBjAyr2uhl688nvib9DrqXBGc"}},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.49612397Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1444593384487391354","message_type":19,"author_id":"1211781489931452447","action":"discord message create","handling_time":201.10399,"event_ids":{"":"$n7M41WdWExJebP524bUjX87yfQxkFlwQFdItwV590-A"},"time":"2026-03-06T19:15:01.496306119Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1087","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.501379179Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1087","time":"2026-03-06T19:15:01.5014405Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_-esvAsNkcnc4dNx4SB2wkuJbExVUW8cIVnJhh5xvns","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501501,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.501618109Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":3844,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_769998429991600219:matrix.theocloud.dev?user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":19.46461,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.51649164Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3832,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501340233534_37?ts=1754066538239&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":200.508096,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://tenor.com/view/i-used-to-pray-for-times-like-this-i-used-to-pray-meek-mill-dreams-and-nightmares-dreams-and-nightmares-michael-jordan-gif-4600240804856944817","info":{"fi.mau.autoplay":true,"fi.mau.discord.gifv":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":282,"mimetype":"video/mp4","size":42751,"w":498},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/sHuqJYsWFODcQKFetvoRZKAJ"},"time":"2026-03-06T19:15:01.540975462Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881338600394853","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":258.803099,"event_ids":{"video_https://tenor.com/view/i-used-to-pray-for-times-like-this-i-used-to-pray-meek-mill-dreams-and-nightmares-dreams-and-nightmares-michael-jordan-gif-4600240804856944817":"$cPtGyjj6YkaFw5vmgHsmB-H5cb4O-nEqqLxAERSXI8g"},"time":"2026-03-06T19:15:01.54108267Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1088","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.541267053Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1088","time":"2026-03-06T19:15:01.541439074Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$n7M41WdWExJebP524bUjX87yfQxkFlwQFdItwV590-A","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501541,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.541628975Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$cPtGyjj6YkaFw5vmgHsmB-H5cb4O-nEqqLxAERSXI8g","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501541,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:15:01.54166236Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3847,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":16.868644,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.558693038Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3837,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501371648777_23?ts=1695419627076&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":197.870924,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wär in 20 min da","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.569731951Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154898364522045500","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":218.316956,"event_ids":{"":"$OsEZv9GqLgei079bJMk30KE0zLNuMbnj-1_OE1YfQtA"},"time":"2026-03-06T19:15:01.569857528Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1089","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.589240701Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1089","time":"2026-03-06T19:15:01.589322138Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$OsEZv9GqLgei079bJMk30KE0zLNuMbnj-1_OE1YfQtA","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501589,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.589516858Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3849,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.013639,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.590469925Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3838,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501380413698_116?ts=1764149058607&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":220.412642,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"mach rein","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.600961554Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170494110240861","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":238.473493,"event_ids":{"":"$yWvMY5FKWpaaEGrUXMvpeGmFDVWuhyUUXJ_dW8lNTiY"},"time":"2026-03-06T19:15:01.601029162Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3839,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501382593893_138?ts=1766838322163&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":221.844966,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"damit geht dann eig das was cool dran wäre zuzuschauen weg","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.604572397Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454450083000090755","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":238.016935,"event_ids":{"":"$50YMHOm3c_vp4Zr7xlGcPN3tyrm8ppyZc9toOCt6KyU"},"time":"2026-03-06T19:15:01.604631694Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3851,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":16.504277,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.618074157Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3852,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.96761,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.621039938Z","message":"Request completed"} +{"level":"debug","transaction_id":"1090","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.626051187Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1090","time":"2026-03-06T19:15:01.626159163Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$yWvMY5FKWpaaEGrUXMvpeGmFDVWuhyUUXJ_dW8lNTiY","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501626,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.6263997Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$50YMHOm3c_vp4Zr7xlGcPN3tyrm8ppyZc9toOCt6KyU","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501626,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.6263997Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3841,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501444780434_34?ts=1726172635744&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":217.253189,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ts?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.662193772Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283885831790133330","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":230.94918,"event_ids":{"":"$C96mXnIgVgThUj1VyXPNttmiNVJsh9xlFy7REaJCvtU"},"time":"2026-03-06T19:15:01.662263544Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3855,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.77072,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.67463812Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3850,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":96.035927,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:01.68679416Z","message":"Request completed"} +{"level":"debug","transaction_id":"1091","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.692623262Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1091","time":"2026-03-06T19:15:01.692703441Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$C96mXnIgVgThUj1VyXPNttmiNVJsh9xlFy7REaJCvtU","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501692,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.692950962Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3843,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501473082461_139?ts=1763291193598&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":233.790851,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ne später","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.707021866Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439572347471401042","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":249.58602,"event_ids":{"":"$xbtDUeTa88jQwzMOBuySaqBY4MqmlgrlKe9DhG4TZN8"},"time":"2026-03-06T19:15:01.707155963Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3858,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":22.243143,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.730269131Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_769998429991600219:matrix.theocloud.dev","req_id":3845,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501516732596_55?ts=1770729220613&user_id=%40discord_769998429991600219%3Amatrix.theocloud.dev","duration":215.622304,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"https://share.google/BvUT1cQOnd2UkAUfV","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.732488507Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1470769693932392565","message_type":0,"author_id":"769998429991600219","action":"discord message create","handling_time":235.89855,"event_ids":{"":"$Zm68K_bRpskXiBlUSkFrracdiefrLD5X1iTdax8C2Hs"},"time":"2026-03-06T19:15:01.732602909Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1092","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.758043918Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1092","time":"2026-03-06T19:15:01.758138066Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xbtDUeTa88jQwzMOBuySaqBY4MqmlgrlKe9DhG4TZN8","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501758,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.758346754Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3848,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501558956762_38?ts=1754066575830&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":218.141513,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Weiß nicht. Will eigentlich nur schauen, wie günstig das Fold 7 mit dem Rabatt wird, weil ich es mir vielleicht holen will","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.777289922Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881496268603464","message_type":19,"author_id":"395335060477313025","action":"discord message create","handling_time":235.916779,"event_ids":{"":"$tkO_Wdq8Zto_kVay_AjSl-kqCIgSqb0l2fdzNEiWs-A"},"time":"2026-03-06T19:15:01.777391123Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3860,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":15.13062,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.793079573Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3846,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":260.736891,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<123273 bytes>","time":"2026-03-06T19:15:01.794860131Z","message":"Request completed"} +{"level":"debug","transaction_id":"1093","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.799965109Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1093","time":"2026-03-06T19:15:01.800033834Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Zm68K_bRpskXiBlUSkFrracdiefrLD5X1iTdax8C2Hs","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501800,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.800217379Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3862,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":9.596881,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.804888008Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3857,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":138.916959,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:01.825908144Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154898417974255686","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:01.826019892Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154898417974255686","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":255.961358,"time":"2026-03-06T19:15:01.826142465Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3853,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501618255607_97?ts=1764149066634&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":215.528645,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich hab die datei nicht hier","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.833913949Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170527777783880","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":232.723034,"event_ids":{"":"$tx1N2r66YTnGA9X3L3jS96HB1n-_vChc9t-gcD8SC-Y"},"time":"2026-03-06T19:15:01.834020948Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3856,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":160.393444,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:01.835463888Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3854,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501621236893_140?ts=1766838335925&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":222.421444,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"miese","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.843834828Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454450140722233387","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":239.0946,"event_ids":{"":"$7UL53THaH_GEta5MTe14fFROnRHXldraxrvGpBNJ75g"},"time":"2026-03-06T19:15:01.843973535Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1094","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.845059093Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1094","time":"2026-03-06T19:15:01.845171469Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tkO_Wdq8Zto_kVay_AjSl-kqCIgSqb0l2fdzNEiWs-A","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501845,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.845413053Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3864,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":25.244823,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.852188308Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3865,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":24.791546,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.85987242Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3867,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":19.90301,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.864725407Z","message":"Request completed"} +{"level":"debug","transaction_id":"1095","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:01.881209919Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1095","time":"2026-03-06T19:15:01.881294777Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$tx1N2r66YTnGA9X3L3jS96HB1n-_vChc9t-gcD8SC-Y","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501881,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.881503396Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$7UL53THaH_GEta5MTe14fFROnRHXldraxrvGpBNJ75g","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824501881,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:01.881540622Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3861,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":121.866655,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:01.915319117Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3866,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":92.407972,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:01.928162753Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283886004918423654","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:01.928253269Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283886004918423654","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":265.763575,"time":"2026-03-06T19:15:01.928322762Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3872,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.620139,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.93846525Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501730529154_159?ts=1763291340381&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":236.080489,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich werd mal alles jetzt testen außer IT-Tools, diese Testversion ist aber echt cool","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:01.966800451Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439572963123920969","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":259.200851,"event_ids":{"":"$q8nxE5KmvnztGIREzVkeW3jZH0EvAAuFXAZM-l3jZoE"},"time":"2026-03-06T19:15:01.96691178Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3874,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":17.099194,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:01.984608753Z","message":"Request completed"} +{"level":"debug","transaction_id":"1096","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.007955543Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1096","time":"2026-03-06T19:15:02.008036001Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$q8nxE5KmvnztGIREzVkeW3jZH0EvAAuFXAZM-l3jZoE","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502008,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.008232327Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3863,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501805082938_23?ts=1730058615319&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":211.577391,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"finale Meinung?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.016791981Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3876,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":15.515731,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.032451028Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3871,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":119.811758,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:02.035414713Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881500932673566","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:02.0355046Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881500932673566","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":257.902204,"time":"2026-03-06T19:15:02.035590436Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3878,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":9.99107,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.046051544Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3868,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501852448400_24?ts=1695420508338&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":199.099099,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]}},"time":"2026-03-06T19:15:02.051660155Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1154902060802785290","message_type":3,"author_id":"248879308200869889","action":"discord message create","handling_time":225.334493,"event_ids":{"":"$xOf1ejjkneB4I_RuOgnR646Lu-MdFiCdESKl37G6IXg"},"time":"2026-03-06T19:15:02.051747877Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1097","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.053054275Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1097","time":"2026-03-06T19:15:02.053120137Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$WetTzyS7C9b-I77FJx8SY9mbR_3kca3O6m6YuOBkVvk","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502053,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.053348032Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3869,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501860117286_98?ts=1764149075471&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":217.535701,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich müsste risikomatric jetzt komplett neu erstellen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.077863422Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170564842983435","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":243.502762,"event_ids":{"":"$gdaC60sIDYxHDS1IOxVVhFMg3MgZdrcGiMpaeUh__9I"},"time":"2026-03-06T19:15:02.077954077Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3873,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":140.194164,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:02.078969444Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3870,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501865011690_160?ts=1766838339443&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":218.125518,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja leider","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.083279757Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454450155477536901","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":238.91308,"event_ids":{"":"$t-aBowPHm8NfQ0cpwREHMDSqlrtMxuEdkHLTPHHm34s"},"time":"2026-03-06T19:15:02.083376837Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3880,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":14.760735,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.093410721Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3883,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.417041,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.097311479Z","message":"Request completed"} +{"level":"debug","transaction_id":"1098","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.099517935Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1098","time":"2026-03-06T19:15:02.099608101Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gdaC60sIDYxHDS1IOxVVhFMg3MgZdrcGiMpaeUh__9I","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502099,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.099842212Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$t-aBowPHm8NfQ0cpwREHMDSqlrtMxuEdkHLTPHHm34s","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502099,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.099863095Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$xOf1ejjkneB4I_RuOgnR646Lu-MdFiCdESKl37G6IXg","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502099,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:15:02.099844587Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3881,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":66.682495,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:02.145827173Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283886017878954004","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:02.145940178Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283886017878954004","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":217.4785,"time":"2026-03-06T19:15:02.146022801Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":19.223304,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.165750577Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3875,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824501984767644_161?ts=1763291346740&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":234.577833,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"find das mit dem decrypt encrypt text lustig","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.219505625Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439572989795373109","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":252.367835,"event_ids":{"":"$meJR48M57kkxa3b8qEB4TySl3GJUP4Isq7GpvPpGR8U"},"time":"2026-03-06T19:15:02.219610179Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3877,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502032645119_24?ts=1730058615319&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":210.412213,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"use-case.png","info":{"h":882,"mimetype":"image/png","size":123273,"w":586},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/HdajmLmziglhkadwRMVHkVBz"},"time":"2026-03-06T19:15:02.243252262Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300184811465343049","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":1046.397907,"event_ids":{"":"$WetTzyS7C9b-I77FJx8SY9mbR_3kca3O6m6YuOBkVvk","1300184811406889055":"$4WcLMZud2M-aJJJJGHZv1BeLeFU_LKLw2EKqn5HfzY0"},"time":"2026-03-06T19:15:02.243370993Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3889,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":29.868238,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.250185081Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3879,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502046200029_39?ts=1754066603508&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":208.15596,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Interessant","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.254476885Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881612358680730","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":218.800683,"event_ids":{"":"$bLtqKnMHfSngLsMc0lJWJE0j81xjpOnjFtTQacnDzik"},"time":"2026-03-06T19:15:02.25456321Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1099","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.26439085Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1099","time":"2026-03-06T19:15:02.264476407Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$meJR48M57kkxa3b8qEB4TySl3GJUP4Isq7GpvPpGR8U","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502264,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.264679228Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3890,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.43011,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.265655972Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3882,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":187.141691,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<99924 bytes>","time":"2026-03-06T19:15:02.26798081Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3892,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.320457,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.275485707Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3894,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.139003,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.285457082Z","message":"Request completed"} +{"level":"debug","transaction_id":"1100","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.304362465Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1100","time":"2026-03-06T19:15:02.304500613Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$bLtqKnMHfSngLsMc0lJWJE0j81xjpOnjFtTQacnDzik","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502304,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.304744362Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$4WcLMZud2M-aJJJJGHZv1BeLeFU_LKLw2EKqn5HfzY0","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502304,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:15:02.304737098Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3884,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502093567377_117?ts=1764149092212&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":224.440024,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ist die nt in der gruppe?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.318162521Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170635059560448","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":239.877042,"event_ids":{"":"$oaLSUatjmrlJv50TQV-4IWeHugd25wpYUBtyfkP4JtM"},"time":"2026-03-06T19:15:02.318250871Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3885,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502097489367_162?ts=1766838348899&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":227.220792,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"find aber auch mehrere menschen im stream immer sehr anstrengend, dachte wird einfach cozy","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.324841742Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454450195138875505","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":241.271023,"event_ids":{"":"$LrYnKs0PIP4MwthrudSECxU52bM1muhMq-83iY_ZbbU"},"time":"2026-03-06T19:15:02.324932607Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3897,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":23.019998,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.342281417Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3898,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":22.976067,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.34855241Z","message":"Request completed"} +{"level":"debug","transaction_id":"1101","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.359564504Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1101","time":"2026-03-06T19:15:02.359640772Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$oaLSUatjmrlJv50TQV-4IWeHugd25wpYUBtyfkP4JtM","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502359,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.359851277Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3887,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":213.726994,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<367710 bytes>","time":"2026-03-06T19:15:02.368905763Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3901,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":9.256959,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.378492097Z","message":"Request completed"} +{"level":"debug","transaction_id":"1102","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.391402852Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1102","time":"2026-03-06T19:15:02.391475348Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LrYnKs0PIP4MwthrudSECxU52bM1muhMq-83iY_ZbbU","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502391,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.391614125Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3893,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":143.706948,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:02.40967288Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3895,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":136.096101,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:02.4118822Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3896,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":142.910957,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:02.428680163Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3888,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502165996421_35?ts=1726173624081&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":265.754565,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:15:02.431865807Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1283889977176096841","message_type":3,"author_id":"204925152230768641","action":"discord message create","handling_time":285.745646,"event_ids":{"":"$z3dA0-b3Su6ZxNp_LZ4z-65VXswMuJ4O3a9jwwsGrgY"},"time":"2026-03-06T19:15:02.431983701Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1103","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.460414376Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1103","time":"2026-03-06T19:15:02.460502587Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$z3dA0-b3Su6ZxNp_LZ4z-65VXswMuJ4O3a9jwwsGrgY","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502460,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:15:02.460722101Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3891,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502250399496_141?ts=1763291697856&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":267.895997,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"same","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.518432734Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439574462482612296","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":298.484728,"event_ids":{"":"$DlML5r2aNSHbypNeu0Pab5fn-WduZM7Iz9PuEMXWEmM"},"time":"2026-03-06T19:15:02.518521503Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3903,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":131.151341,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:02.54098451Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300190655040983090","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:02.541074187Z","message":"Failed to send part of message to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3906,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":21.860757,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.541098842Z","message":"Request completed"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300190655040983090","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":297.262909,"time":"2026-03-06T19:15:02.541167077Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3904,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":131.995035,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:02.544023834Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881644247847013","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:02.544110648Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881644247847013","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":289.296424,"time":"2026-03-06T19:15:02.544196903Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3908,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.007772,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.560784991Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3909,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.730427,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.562395064Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3905,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":139.126346,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:02.568002696Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1156974134782328853","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:02.568096844Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1156974134782328853","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":516.058284,"time":"2026-03-06T19:15:02.56817807Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1104","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.575716561Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1104","time":"2026-03-06T19:15:02.57579199Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$DlML5r2aNSHbypNeu0Pab5fn-WduZM7Iz9PuEMXWEmM","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502575,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.576001098Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3912,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.025373,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.588646662Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3899,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502342481864_118?ts=1764149112049&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":271.494478,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"looser","com.beeper.linkpreviews":[],"m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$W444BN50KSYjrtoC_3Pg2ulm0YFEP4HDRZsGXOnKnNI"}},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.614173018Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170718262235136","message_type":19,"author_id":"316966695430520833","action":"discord message create","handling_time":295.603457,"event_ids":{"":"$f3hsAbR8tIHOG5bdPwWXNgK8aUKiIZqNHHT76P208xI"},"time":"2026-03-06T19:15:02.614299153Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3900,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502348728832_142?ts=1766838390456&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":272.168387,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jetzt kannst du anderen zuschauen wie sie auch wie du stundenlang grinden nur bei denen auf easy mode wegen der gruppen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.621115196Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454450369441824904","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":295.957278,"event_ids":{"":"$_aDZaEZCQYnaCqaDHU2uUqmuCqeM-whLIvzpRrfEAVY"},"time":"2026-03-06T19:15:02.621251598Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3914,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":21.672602,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.636732617Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3915,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.86208,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.639941657Z","message":"Request completed"} +{"level":"debug","transaction_id":"1105","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.65543413Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1105","time":"2026-03-06T19:15:02.655557681Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$f3hsAbR8tIHOG5bdPwWXNgK8aUKiIZqNHHT76P208xI","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502655,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.655741296Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OrvuoraTBNeztQFAyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502378670544_25?ts=1772658819848&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":285.979338,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"IMG_3292.png","info":{"h":316,"mimetype":"image/jpeg","size":367710,"w":1206},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/BkFPMhydbOHywxZJlfDgCwPw"},"time":"2026-03-06T19:15:02.664855847Z","message":"Request completed"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","message_id":"1478863019722407976","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":931.941302,"event_ids":{"1478863019382538331":"$DXAO6kP9ny3acMA8iXUGeNZu8MS5mHSf1MeQFPAe4OI"},"time":"2026-03-06T19:15:02.664977931Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","action":"initial backfill","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:15:02.665259395Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","transaction_id":"1106","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.685787143Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1106","time":"2026-03-06T19:15:02.685892465Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$_aDZaEZCQYnaCqaDHU2uUqmuCqeM-whLIvzpRrfEAVY","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502686,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.686078106Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3910,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":135.877146,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:02.696971328Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3911,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":135.922543,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:02.698637275Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3913,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":120.476655,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:02.709456465Z","message":"Request completed"} +{"level":"debug","transaction_id":"1107","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.71105683Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1107","time":"2026-03-06T19:15:02.711188203Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$DXAO6kP9ny3acMA8iXUGeNZu8MS5mHSf1MeQFPAe4OI","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502711,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:15:02.711424828Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3907,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502541298171_163?ts=1763291739061&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":227.26179,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"U2FsdGVkX1+9QP+H6mas2ZS8Eb84cClJtJSOyFvr2FcbE4BsScoybq+PnkEbR1fs","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.768761665Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439574635309043713","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":249.963866,"event_ids":{"":"$OWk96OGHSPqoXkrpsttkYYSTEbZ75svFd2jQHWMfzE8"},"time":"2026-03-06T19:15:02.768867476Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3918,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":72.70506,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:02.769890106Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300191311227392071","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:02.76999466Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300191311227392071","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":228.600666,"time":"2026-03-06T19:15:02.770074839Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3919,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":77.79607,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:02.776627297Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881723109277707","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:02.776725076Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881723109277707","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":232.425575,"time":"2026-03-06T19:15:02.776820201Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3921,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":28.321023,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.797925754Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3922,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":27.309429,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.797992733Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3923,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":27.015113,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.804404669Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3920,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":98.402531,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:02.808066008Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1156974226717294684","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:02.808167628Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1156974226717294684","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":239.928446,"time":"2026-03-06T19:15:02.808280144Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3927,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":14.109317,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.822965171Z","message":"Request completed"} +{"level":"debug","transaction_id":"1108","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.826499397Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1108","time":"2026-03-06T19:15:02.826570985Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$OWk96OGHSPqoXkrpsttkYYSTEbZ75svFd2jQHWMfzE8","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502826,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.826760327Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3916,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502637009332_99?ts=1764149128837&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":212.593874,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"oh ja da ist ja die risikomatrix","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.849792269Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170788676079626","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":235.194191,"event_ids":{"":"$AO9ChBwfYXujFLSzAwFWuzqdukI8HM-7W0GURlqmblM"},"time":"2026-03-06T19:15:02.849912956Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3917,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502640158238_143?ts=1766838393145&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":210.438613,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"lol","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.850760492Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454450380720181310","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":229.1432,"event_ids":{"":"$iqrJSIVCBENWOhC3By9Jgoug9USAr8Sl2H04ct3XU3w"},"time":"2026-03-06T19:15:02.85086749Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3930,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":12.753261,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.863430291Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3931,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":24.47118,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.876072712Z","message":"Request completed"} +{"level":"debug","transaction_id":"1109","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.881911382Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1109","time":"2026-03-06T19:15:02.882009022Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$AO9ChBwfYXujFLSzAwFWuzqdukI8HM-7W0GURlqmblM","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502882,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.882218688Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"1110","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:02.902589221Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1110","time":"2026-03-06T19:15:02.902681692Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$iqrJSIVCBENWOhC3By9Jgoug9USAr8Sl2H04ct3XU3w","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824502902,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:02.902821517Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3925,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":110.624362,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:02.909054935Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3926,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502804655681_40?ts=1754066640491&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":153.60038,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Alles gut. Dann warte ich einfach mal auf ein gutes Angebot von Samsung oder Corporate Benefits","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.95844666Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881767476498627","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":181.48426,"event_ids":{"":"$HYCK7KtsSupn7PIThAquA9G5CkkYMzdUL-6pAoZ7LWE"},"time":"2026-03-06T19:15:02.958543741Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3934,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":58.122283,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:02.967382554Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300191346467803137","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:02.967513299Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300191346467803137","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":197.29207,"time":"2026-03-06T19:15:02.967613872Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3928,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502823142360_25?ts=1696024713150&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":157.771288,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"gleich bisschen apex?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.981060526Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157436279462563890","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":172.646844,"event_ids":{"":"$QvrGGO9QWs5l-kxFsX09TVPprXed6B_jrf7kYTxX2k0"},"time":"2026-03-06T19:15:02.981172483Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3935,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.996321,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.981199512Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3924,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502798205822_164?ts=1763291746536&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":190.26699,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"s-key: Rentner","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:02.988643995Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1439574666661597355","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":219.496242,"event_ids":{"":"$SNRFWYjL0RIGwOLJ1TkMKhaF7a94T3Im10cqZudO6os"},"time":"2026-03-06T19:15:02.988753368Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3936,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_283971167717687296:matrix.theocloud.dev?user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":20.940935,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:02.9891023Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3938,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.079849,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.000991822Z","message":"Request completed"} +{"level":"debug","transaction_id":"1111","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.006169226Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1111","time":"2026-03-06T19:15:03.006256878Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HYCK7KtsSupn7PIThAquA9G5CkkYMzdUL-6pAoZ7LWE","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503006,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.00647751Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3940,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_257943768903188481:matrix.theocloud.dev?user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":19.657165,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.009113076Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3932,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502863602591_100?ts=1764149131355&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":173.341425,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ich sehe sie","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.037124628Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170799237206068","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":186.930278,"event_ids":{"":"$9ArgHEBFGELRsbJLbY7A6UA7T2n4zsT96poKDa2Adtc"},"time":"2026-03-06T19:15:03.037250694Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1112","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.041932078Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1112","time":"2026-03-06T19:15:03.042036632Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$QvrGGO9QWs5l-kxFsX09TVPprXed6B_jrf7kYTxX2k0","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503042,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.04232096Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$SNRFWYjL0RIGwOLJ1TkMKhaF7a94T3Im10cqZudO6os","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503042,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.04232096Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3933,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502876362278_144?ts=1766838419780&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":184.65838,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"und das auf ganz twitch","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.061166279Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3943,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_1142482369744482355:matrix.theocloud.dev?user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":23.16122,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.061191282Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454450492435468454","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":210.011458,"event_ids":{"":"$fd4e2IdhWpxPyUbHPqBH4O-ES2oqNgoYpPhWZzMW09I"},"time":"2026-03-06T19:15:03.061255188Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3929,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":238.334996,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26033 bytes>","time":"2026-03-06T19:15:03.068498525Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3945,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.746974,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.073718044Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3946,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":9.297467,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.078119921Z","message":"Request completed"} +{"level":"debug","transaction_id":"1113","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.086391615Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1113","time":"2026-03-06T19:15:03.08650015Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$fd4e2IdhWpxPyUbHPqBH4O-ES2oqNgoYpPhWZzMW09I","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503086,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.086760103Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$9ArgHEBFGELRsbJLbY7A6UA7T2n4zsT96poKDa2Adtc","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503086,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.086762477Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3937,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":120.258049,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.101855452Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3941,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":108.498155,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.109898623Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_283971167717687296:matrix.theocloud.dev","req_id":3939,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824502989303585_26?ts=1730060578806&user_id=%40discord_283971167717687296%3Amatrix.theocloud.dev","duration":157.230708,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hm aber das system ist ja das was die sekretärin aktiviert. aber ok ich lasse es raus denke ich. danke dir","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.146687737Z","message":"Request completed"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300193046926987264","message_type":0,"author_id":"283971167717687296","action":"discord message create","handling_time":178.936765,"event_ids":{"":"$LV-dE6Y-wo2GHcdKvJAMCc8LP8TNQjRmtgfrxUfZBUI"},"time":"2026-03-06T19:15:03.146770011Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3951,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.461596,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.155939737Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3949,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":56.110966,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.158115602Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881792407572571","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.158191031Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881792407572571","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":199.375255,"time":"2026-03-06T19:15:03.158275331Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3953,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":14.459855,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.173213745Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3950,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":66.948315,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.177002616Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464210905759764","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.17708056Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464210905759764","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":195.575349,"time":"2026-03-06T19:15:03.177161996Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1114","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.178728976Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1114","time":"2026-03-06T19:15:03.178805384Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$LV-dE6Y-wo2GHcdKvJAMCc8LP8TNQjRmtgfrxUfZBUI","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503178,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.179006949Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_257943768903188481:matrix.theocloud.dev","req_id":3942,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503009313453_54?ts=1767219769666&user_id=%40discord_257943768903188481%3Amatrix.theocloud.dev","duration":175.658651,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"guten rutsch jungs","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.185109553Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1456049989787844722","message_type":0,"author_id":"257943768903188481","action":"discord message create","handling_time":196.038752,"event_ids":{"":"$8UbL-DXGSdgO2FgHQvOA7RFthNJdlwYvLO8xplppZAs"},"time":"2026-03-06T19:15:03.185175833Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3955,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.38876,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.195067169Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3956,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.965378,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.204569344Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_1142482369744482355:matrix.theocloud.dev","req_id":3944,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503061418130_101?ts=1764149157304&user_id=%40discord_1142482369744482355%3Amatrix.theocloud.dev","duration":163.1175,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"vollidiot","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.224676013Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170908075462767","message_type":0,"author_id":"1142482369744482355","action":"discord message create","handling_time":187.047683,"event_ids":{"":"$CUvUQSXr8Rx6NqBqV4hce3PezzWfvhBXW4i7BijuODg"},"time":"2026-03-06T19:15:03.224755773Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1115","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.229779175Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1115","time":"2026-03-06T19:15:03.229859773Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$8UbL-DXGSdgO2FgHQvOA7RFthNJdlwYvLO8xplppZAs","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503230,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.230058614Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3947,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503073904523_145?ts=1766838432652&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":167.881509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"deswegen guck ich gerade kein twitch","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.241915729Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454450546424545371","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":180.314473,"event_ids":{"":"$l4sHifuGhMX4ImjdP1XtepRPUzNSAcWqg0q9ZDO7ZAY"},"time":"2026-03-06T19:15:03.242007152Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3959,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/typing/@discord_316966695430520833:matrix.theocloud.dev?user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":24.374938,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.249724648Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3948,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503078284050_36?ts=1726249389355&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":175.659418,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"image.png","info":{"h":358,"mimetype":"image/png","size":26033,"w":1265},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/BUQuHobMbExwhOuEgdwKMyGl"},"time":"2026-03-06T19:15:03.254114302Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1284207759767900274","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":821.845855,"event_ids":{"1284207759583346790":"$nb4AVZP_O1Q1RWVusUsfw388QJyo7D7LO7uu1WtZJHE"},"time":"2026-03-06T19:15:03.25422151Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3960,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":13.729655,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.256425591Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3962,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.618256,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.267450955Z","message":"Request completed"} +{"level":"debug","transaction_id":"1116","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.272669077Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1116","time":"2026-03-06T19:15:03.272790254Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$CUvUQSXr8Rx6NqBqV4hce3PezzWfvhBXW4i7BijuODg","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503272,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.272981342Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$nb4AVZP_O1Q1RWVusUsfw388QJyo7D7LO7uu1WtZJHE","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503272,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.image"},"time":"2026-03-06T19:15:03.27299126Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$l4sHifuGhMX4ImjdP1XtepRPUzNSAcWqg0q9ZDO7ZAY","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503272,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.272981342Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3952,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":135.701003,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.29195084Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3957,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":115.177167,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.310538511Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3964,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":100.945347,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.368694807Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3954,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503173399386_41?ts=1754066692579&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":202.536663,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Dann genieß deinen Urlaub und nicht zu viel Leg days, sonst läufst du wieder so, als hättest du 3 Tage dauerdünnschiss","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.376090191Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400881985949270136","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":217.674128,"event_ids":{"":"$Fl5hIxwr71dKyCugiEGOYghMwxxc_IHUytv9_tc0Xmc"},"time":"2026-03-06T19:15:03.376172675Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3968,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.523198,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.387492144Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3965,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":97.037464,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.389149989Z","message":"Request completed"} +{"level":"error","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300194856437678091","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.38922912Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","message_id":"1300194856437678091","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":242.1444,"time":"2026-03-06T19:15:03.38932222Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","action":"initial backfill","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:15:03.389410501Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3966,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":92.056595,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.402787592Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464247371042836","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.402900178Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464247371042836","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":225.638307,"time":"2026-03-06T19:15:03.4030055Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1117","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.409084707Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1117","time":"2026-03-06T19:15:03.409208607Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Fl5hIxwr71dKyCugiEGOYghMwxxc_IHUytv9_tc0Xmc","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503409,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.409443277Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3970,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":31.53174,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.435155972Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3958,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503204730051_146?ts=1767220468984&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":230.374168,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wünsch ich euch auch","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.435323454Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1456052922940002315","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":250.046559,"event_ids":{"":"$FIW_x339fVHAs-e-w3rQPIJyY7C5l-6n87bHA_GKtv0"},"time":"2026-03-06T19:15:03.435475081Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3972,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.325132,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.452549481Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_316966695430520833:matrix.theocloud.dev","req_id":3961,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503249904213_119?ts=1764149174535&user_id=%40discord_316966695430520833%3Amatrix.theocloud.dev","duration":210.998747,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"looser","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.461036149Z","message":"Request completed"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","message_id":"1443170980347510971","message_type":0,"author_id":"316966695430520833","action":"discord message create","handling_time":236.016233,"event_ids":{"":"$JtyiffXkgqMwX7evggK5VSXjF7_6oa6j3feQzhxwTrU"},"time":"2026-03-06T19:15:03.461125059Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","action":"initial backfill","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:15:03.461353932Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3963,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503256574146_165?ts=1766838577573&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":212.377643,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja verständlich ich vielleicht auch nicht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.469105301Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454451154267279410","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":226.772406,"event_ids":{"":"$ITei3yWF8po_zs_9KxaxHmVraaQKQJakghbWVFB6hGs"},"time":"2026-03-06T19:15:03.469207481Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1118","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.47844621Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1118","time":"2026-03-06T19:15:03.478538193Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FIW_x339fVHAs-e-w3rQPIJyY7C5l-6n87bHA_GKtv0","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503478,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.478767764Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3974,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":16.997852,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.486923939Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3967,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":129.182699,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.498064264Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1307403835228160010","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.498179503Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1307403835228160010","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":243.735755,"time":"2026-03-06T19:15:03.498299772Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","transaction_id":"1119","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.502237546Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1119","time":"2026-03-06T19:15:03.50235104Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$JtyiffXkgqMwX7evggK5VSXjF7_6oa6j3feQzhxwTrU","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503502,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.502539404Z","message":"Sent message checkpoint"} +{"level":"debug","message_checkpoint":{"event_id":"$ITei3yWF8po_zs_9KxaxHmVraaQKQJakghbWVFB6hGs","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503502,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.50255002Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3976,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":6.986528,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.505906498Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3969,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":125.669984,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.513442824Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":3971,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503435435900_26?ts=1696031387473&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":124.118508,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Macht nix","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.559709877Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464273602232410","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":156.533334,"event_ids":{"":"$B4Z8oDbCnTzqOnEbj3thXynVWTwL_0p7J_Yg4lcEY4U"},"time":"2026-03-06T19:15:03.559797599Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3978,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":47.096221,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.560705338Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400882113879871679","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.560782444Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400882113879871679","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":184.184361,"time":"2026-03-06T19:15:03.560854102Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3980,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.145428,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.577421028Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3979,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":17.22449,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.577794125Z","message":"Request completed"} +{"level":"debug","transaction_id":"1120","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.593885844Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1120","time":"2026-03-06T19:15:03.59397196Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$B4Z8oDbCnTzqOnEbj3thXynVWTwL_0p7J_Yg4lcEY4U","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503594,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.594213404Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3973,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21HNFPoLVIWlXajxrqyf:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503452793789_166?ts=1767359910989&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":152.093743,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ey danke ❤️","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.605045934Z","message":"Request completed"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","message_id":"1456637785099206716","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":169.294208,"event_ids":{"":"$xO-L_e_3XNy3Dc40TBzjlh_RUyMwM9nF8kvnHKG-Zl4"},"time":"2026-03-06T19:15:03.605165574Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","action":"initial backfill","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:15:03.605486638Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3975,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503487122920_167?ts=1766838589202&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":145.34405,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"vielleicht wenn sich die spreu vom weizen trennt","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.632672167Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454451203042836641","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":163.120783,"event_ids":{"":"$cup9fjaWEd2c_LFixEtG66V_pBbEg8ii4d7dnbe9jxA"},"time":"2026-03-06T19:15:03.63273719Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3983,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.93471,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.645199208Z","message":"Request completed"} +{"level":"debug","transaction_id":"1121","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.652302722Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1121","time":"2026-03-06T19:15:03.652397148Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$xO-L_e_3XNy3Dc40TBzjlh_RUyMwM9nF8kvnHKG-Zl4","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503652,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.652573779Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":3977,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503506097796_37?ts=1732106225186&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":161.987872,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Oh okay. Habe ich tatsächlich nicht mal mitbekommen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.668232616Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1308773109721071697","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":169.753909,"event_ids":{"":"$06Q9I3AYlZ9U0XquhQ-CeGFIX-itYHtBL01VineSAUA"},"time":"2026-03-06T19:15:03.668310909Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1122","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.67443719Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1122","time":"2026-03-06T19:15:03.674519115Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$cup9fjaWEd2c_LFixEtG66V_pBbEg8ii4d7dnbe9jxA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503674,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.674720191Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3985,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.056719,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.675941452Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3981,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":106.841008,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.684584288Z","message":"Request completed"} +{"level":"debug","transaction_id":"1123","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.689751565Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1123","time":"2026-03-06T19:15:03.689804715Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$06Q9I3AYlZ9U0XquhQ-CeGFIX-itYHtBL01VineSAUA","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503689,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.689928266Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3982,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":115.200284,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.69325115Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3986,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":40.953178,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.717136493Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3987,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":34.674152,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.719370257Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400882174688886934","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.719417051Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400882174688886934","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":158.4695,"time":"2026-03-06T19:15:03.71947956Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3990,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_395335060477313025:matrix.theocloud.dev?user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":8.797816,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.728643978Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3988,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":40.273054,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.733641119Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464298432512134","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.733732194Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464298432512134","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":173.615905,"time":"2026-03-06T19:15:03.73381335Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3992,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":3.178449,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.737452689Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3984,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503645407548_147?ts=1766838615405&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":102.932357,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"jo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.748468694Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454451312946188433","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":115.519673,"event_ids":{"":"$2zGeKF7pVEO46q7qJ0XZNx2Xn2yPAL2L5MhiZGxLe0w"},"time":"2026-03-06T19:15:03.74856361Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3994,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":10.856276,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.760040574Z","message":"Request completed"} +{"level":"debug","transaction_id":"1124","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.765458445Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1124","time":"2026-03-06T19:15:03.765534154Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$2zGeKF7pVEO46q7qJ0XZNx2Xn2yPAL2L5MhiZGxLe0w","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503765,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.765722378Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3989,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":58.689053,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.77592996Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1308773180059418649","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.776013351Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1308773180059418649","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":107.460159,"time":"2026-03-06T19:15:03.776082774Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3996,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.066704,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.781665194Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3993,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":51.987411,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.789707177Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_395335060477313025:matrix.theocloud.dev","req_id":3991,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503728800425_42?ts=1754066791988&user_id=%40discord_395335060477313025%3Amatrix.theocloud.dev","duration":83.383867,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Werd ich mit Sicherheit haben. Hab heute erstmal noch Ole bei ein paar Sachen geholfen und mich nochmal bisschen Online zu Subtasks und so belesen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.81232677Z","message":"Request completed"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400882402901102662","message_type":0,"author_id":"395335060477313025","action":"discord message create","handling_time":92.805375,"event_ids":{"":"$Y_bxFcCHSp8coUkc63lyBmDv_tnzD2DDOfT5pg8t0Qo"},"time":"2026-03-06T19:15:03.812439775Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3999,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.314997,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.821324684Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":3997,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":47.239607,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.829193458Z","message":"Request completed"} +{"level":"debug","transaction_id":"1125","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.831182705Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1125","time":"2026-03-06T19:15:03.83126463Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Y_bxFcCHSp8coUkc63lyBmDv_tnzD2DDOfT5pg8t0Qo","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503831,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.831498042Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":3998,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":53.159992,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.84301314Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464330581835776","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.843099605Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464330581835776","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":109.198323,"time":"2026-03-06T19:15:03.843184393Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4002,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":7.483386,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.851192712Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":3995,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503760200233_168?ts=1766838827227&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":100.368798,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"was geth bei dir","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.860696843Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454452201392177263","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":111.894233,"event_ids":{"":"$MKAd2iLLdnvZaqwMTK0Ag9KzkFocyZcJFSLmQg29Bps"},"time":"2026-03-06T19:15:03.860787358Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4004,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":9.722177,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.877274873Z","message":"Request completed"} +{"level":"debug","transaction_id":"1126","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.880456257Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1126","time":"2026-03-06T19:15:03.880526308Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MKAd2iLLdnvZaqwMTK0Ag9KzkFocyZcJFSLmQg29Bps","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503880,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.88071579Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4001,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":63.283065,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.892625287Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1308773309495775302","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.892714895Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1308773309495775302","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":116.544538,"time":"2026-03-06T19:15:03.892822102Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":4006,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":5.050711,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.898381753Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4000,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":79.051764,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:03.900686337Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4008,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":36.153549,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:03.937014632Z","message":"Request completed"} +{"level":"error","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400882936663773315","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !KfHnoQOJhKTOJBBygs:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:03.937127218Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","message_id":"1400882936663773315","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":124.45445,"time":"2026-03-06T19:15:03.937220597Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","action":"initial backfill","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:15:03.937307411Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4003,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503851352023_27?ts=1696031405554&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":91.53236,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"👍","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.943104176Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464349439426600","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":99.789876,"event_ids":{"":"$5GgEMFgtWymdaFQ440Y8oZVGyMZFJH0OathgHTxiQrs"},"time":"2026-03-06T19:15:03.943211524Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4009,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":7.457754,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.952444387Z","message":"Request completed"} +{"level":"debug","transaction_id":"1127","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.958317489Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1127","time":"2026-03-06T19:15:03.958439085Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$5GgEMFgtWymdaFQ440Y8oZVGyMZFJH0OathgHTxiQrs","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503958,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.958620465Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4005,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503877487613_148?ts=1766838851144&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":92.592356,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"arc raiders sucht","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.970216091Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454452301707350057","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":103.032791,"event_ids":{"":"$JFETmngVy4xyVXJOyry6otiDdNMaMJ_5SNAoKLHFsu0"},"time":"2026-03-06T19:15:03.970295711Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4011,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.697455,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.981573624Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":4007,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503898546301_38?ts=1732106287070&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":88.129996,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"uff wie frech","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:03.986791327Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1308773369281384498","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":93.837154,"event_ids":{"":"$wVZjI0_I8XMpRvlGaPXTKE-ImDUqSuAdh8fr_MNIPaM"},"time":"2026-03-06T19:15:03.986860401Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1128","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.988785533Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1128","time":"2026-03-06T19:15:03.988961046Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$JFETmngVy4xyVXJOyry6otiDdNMaMJ_5SNAoKLHFsu0","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503989,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.989137049Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4013,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.427718,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:03.991752291Z","message":"Request completed"} +{"level":"debug","transaction_id":"1129","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:03.996860202Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1129","time":"2026-03-06T19:15:03.996907974Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$wVZjI0_I8XMpRvlGaPXTKE-ImDUqSuAdh8fr_MNIPaM","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824503997,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:03.997041792Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4010,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":55.450608,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.008314607Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4014,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":30.644116,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.02271768Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4015,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30.237494,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.038776783Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464362492104844","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.038858918Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464362492104844","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":94.328843,"time":"2026-03-06T19:15:04.038929947Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4017,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":9.506086,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.048968371Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4012,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824503981722248_149?ts=1766838879443&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":76.280773,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hab max schon wegen seinem knowledge gefragt wegen was bestimmtem haha","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.058127131Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454452420401958963","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":87.568813,"event_ids":{"":"$0fOWxY32Sn2axt1w-vsuLxhULBq87R-7ytR-vrNkvIQ"},"time":"2026-03-06T19:15:04.058217297Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4019,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.610432,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.070442132Z","message":"Request completed"} +{"level":"debug","transaction_id":"1130","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.075104589Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1130","time":"2026-03-06T19:15:04.075188749Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0fOWxY32Sn2axt1w-vsuLxhULBq87R-7ytR-vrNkvIQ","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504075,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.075449191Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4016,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":61.139677,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.084004235Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1308773466056425522","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.084088535Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1308773466056425522","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":97.076017,"time":"2026-03-06T19:15:04.084182123Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":4021,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":3.594709,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.088316015Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4018,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504049141789_28?ts=1696031416458&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":73.970183,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Du auch","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.123263808Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464395174117426","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":84.213593,"event_ids":{"":"$jPDP9yAcBSJ9zzX8gE2QB9ioeuxkvSLnWnLQN7hQevw"},"time":"2026-03-06T19:15:04.123370108Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4023,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.815553,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.129891347Z","message":"Request completed"} +{"level":"debug","transaction_id":"1131","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.141020846Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1131","time":"2026-03-06T19:15:04.141101932Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$jPDP9yAcBSJ9zzX8gE2QB9ioeuxkvSLnWnLQN7hQevw","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504141,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.141325707Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4020,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504070602280_150?ts=1766838901771&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":84.88331,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"sonst eig nur chillen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.15561836Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454452514052243549","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":97.161504,"event_ids":{"":"$RVlwt0fxynQ5vBSmGoM7XkQN_oKZdPZSly2_7Yu4nVY"},"time":"2026-03-06T19:15:04.155706012Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4025,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":20.66869,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.176983447Z","message":"Request completed"} +{"level":"debug","transaction_id":"1132","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.185606797Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1132","time":"2026-03-06T19:15:04.185665953Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$RVlwt0fxynQ5vBSmGoM7XkQN_oKZdPZSly2_7Yu4nVY","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504185,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.185846216Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":4022,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504088503471_39?ts=1762017990573&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":108.400305,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Aha hat dich die Satisfactory sucht mal wieder gepackt?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.197047722Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1434232146930962544","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":112.701678,"event_ids":{"":"$0KBIxIQ4BVkVs1zA-TaqiiDnJnkhUU10qeUZCUD4UyA"},"time":"2026-03-06T19:15:04.197134047Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4027,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":8.985202,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.206754814Z","message":"Request completed"} +{"level":"debug","transaction_id":"1133","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.212306223Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1133","time":"2026-03-06T19:15:04.212402535Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$0KBIxIQ4BVkVs1zA-TaqiiDnJnkhUU10qeUZCUD4UyA","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504212,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.2126173Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4024,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":89.045977,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.219241766Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4028,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":34.251397,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.241313656Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4029,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":33.639788,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.253079487Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464423590547476","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.253162669Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157464423590547476","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":129.493915,"time":"2026-03-06T19:15:04.253232721Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4026,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504177189202_151?ts=1766838921301&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":87.760112,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"seele baumeln lassen wie die eier","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.265099823Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454452595966873703","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":109.155789,"event_ids":{"":"$MNiyH8jmI9-OURYRYAxoJWL4scKZk1IxwZAIV3X6nCA"},"time":"2026-03-06T19:15:04.265206123Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4031,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.860677,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.265643894Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4032,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.436524,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.276302237Z","message":"Request completed"} +{"level":"debug","transaction_id":"1134","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.280680576Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1134","time":"2026-03-06T19:15:04.280777797Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$MNiyH8jmI9-OURYRYAxoJWL4scKZk1IxwZAIV3X6nCA","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504280,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.281004854Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4030,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":55.583518,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.297079322Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1434234504410562750","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.297160967Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1434234504410562750","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":99.746295,"time":"2026-03-06T19:15:04.29722201Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":4035,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_204925152230768641:matrix.theocloud.dev?user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":3.918707,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.301604749Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4033,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":44.17025,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.31018361Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4037,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":29.806987,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.34020557Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157777815928848474","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.340285749Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157777815928848474","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":86.923262,"time":"2026-03-06T19:15:04.34037396Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4034,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21sihFRVuDSrkMxeUIrc:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504276500310_152?ts=1766839014357&user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":71.422478,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bei dir sonst?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.348075742Z","message":"Request completed"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","message_id":"1454452986272153813","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":82.802641,"event_ids":{"":"$kR9WK9faUtOh_nJuhbcLyueTCdxOYGzWqxzTsg_YU9M"},"time":"2026-03-06T19:15:04.348374597Z","message":"Finished handling Discord message"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","action":"initial backfill","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:15:04.348900509Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4038,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":10.266667,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.351082101Z","message":"Request completed"} +{"level":"debug","transaction_id":"1135","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.365475117Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1135","time":"2026-03-06T19:15:04.365567169Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$kR9WK9faUtOh_nJuhbcLyueTCdxOYGzWqxzTsg_YU9M","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504365,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.365750784Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_204925152230768641:matrix.theocloud.dev","req_id":4036,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504301800377_40?ts=1762020769364&user_id=%40discord_204925152230768641%3Amatrix.theocloud.dev","duration":74.267291,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja nice. Ich hatte letztens auch irgendwann mit Tobi angefangen und wir sind auch in Stufe 9","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.376251284Z","message":"Request completed"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1434243802025164801","message_type":0,"author_id":"204925152230768641","action":"discord message create","handling_time":78.975636,"event_ids":{"":"$UXSM_QssyH-24dYAsNek_xHNn1iM8JdNOR4eSDaB4t4"},"time":"2026-03-06T19:15:04.3763902Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1136","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.380062225Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1136","time":"2026-03-06T19:15:04.380139261Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$UXSM_QssyH-24dYAsNek_xHNn1iM8JdNOR4eSDaB4t4","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504380,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.380311701Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4040,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.435891,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.383600572Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4039,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504351301335_29?ts=1696106260740&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":52.840325,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"wollte jz grade mit nem kumpel spielen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.404352025Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157778314845495316","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":63.899422,"event_ids":{"":"$GEcbAXnw-1BTn-uxzyjo_ik4KCibNkxOtil5KDYaZ1g"},"time":"2026-03-06T19:15:04.404455112Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4041,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":26.493881,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.410464127Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4042,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.602603,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.41091475Z","message":"Request completed"} +{"level":"debug","transaction_id":"1137","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.414999472Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1137","time":"2026-03-06T19:15:04.415107798Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$GEcbAXnw-1BTn-uxzyjo_ik4KCibNkxOtil5KDYaZ1g","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504415,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.415321445Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4043,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":18.944844,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.42961766Z","message":"Request completed"} +{"level":"error","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1434244606425432064","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !LCTHPEwNuXCWPnXilT:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.429763421Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","message_id":"1434244606425432064","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":53.050829,"time":"2026-03-06T19:15:04.429879498Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","action":"initial backfill","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:15:04.429948642Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4044,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":21.961399,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.433303723Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4045,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":8.82736,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.442422255Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157778358755672125","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.442524504Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1157778358755672125","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":37.672059,"time":"2026-03-06T19:15:04.44264994Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4046,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":1.627394,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.444835094Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4047,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504445024436_30?ts=1696181500194&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":22.509312,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bock zsm apex?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.467715338Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158093891988357190","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":24.968038,"event_ids":{"":"$4aDuaPppzz73BEYm9Hw1lMG0hAMvRiPZpPvmrMwaRu4"},"time":"2026-03-06T19:15:04.467854114Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1138","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.471564343Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1138","time":"2026-03-06T19:15:04.471668757Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4aDuaPppzz73BEYm9Hw1lMG0hAMvRiPZpPvmrMwaRu4","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504471,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.471863407Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4048,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.281747,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.472913346Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4049,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":11.750676,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.485046547Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4050,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":10.419482,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.49567828Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158094383934099566","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.495785488Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158094383934099566","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":27.578321,"time":"2026-03-06T19:15:04.495880403Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4051,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":1.988548,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.498480001Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4052,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.057912,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.510873015Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4053,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":10.643118,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.52171232Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158094408827289700","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.521773362Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158094408827289700","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":25.687343,"time":"2026-03-06T19:15:04.521813311Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4054,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":2.133052,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.524375543Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4055,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.287347,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.541008679Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4056,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":10.280357,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.551509249Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158094523126251630","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.551648444Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158094523126251630","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":29.782332,"time":"2026-03-06T19:15:04.551744617Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":1.788869,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.554102421Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4058,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504554247483_31?ts=1696181657291&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":23.889114,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"yo","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.578271394Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158094550900953249","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":26.453582,"event_ids":{"":"$WfyoaPq81Kp3IKtv0Y31JeLx043ofyX9Evc01WRu7Bs"},"time":"2026-03-06T19:15:04.578425954Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4059,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":4.065237,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.583423166Z","message":"Request completed"} +{"level":"debug","transaction_id":"1139","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.585806741Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1139","time":"2026-03-06T19:15:04.585918698Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$WfyoaPq81Kp3IKtv0Y31JeLx043ofyX9Evc01WRu7Bs","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504586,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.586139609Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4060,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504583674598_32?ts=1696185135152&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":27.679313,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{"user_ids":["@theo:matrix.theocloud.dev"]}},"time":"2026-03-06T19:15:04.611501208Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158109138107240490","message_type":3,"author_id":"248879308200869889","action":"discord message create","handling_time":32.759427,"event_ids":{"":"$EqTUW-SJwkj_indwRnTZA687uVb2HkhKAi-Qtas8-SY"},"time":"2026-03-06T19:15:04.611627622Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":5.206179,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.617610727Z","message":"Request completed"} +{"level":"debug","transaction_id":"1140","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.620044728Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1140","time":"2026-03-06T19:15:04.620109332Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$EqTUW-SJwkj_indwRnTZA687uVb2HkhKAi-Qtas8-SY","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504620,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:15:04.620310338Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4062,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504617812501_33?ts=1696270674306&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":32.027201,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"naa lust auf apex?","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.650015495Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158467915323023491","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":38.056192,"event_ids":{"":"$4dhvR-kdYgGCaFCmxVAqPMH8Wt6UQczrrXTEupWAqtU"},"time":"2026-03-06T19:15:04.65012808Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4063,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":5.109029,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.656129972Z","message":"Request completed"} +{"level":"debug","transaction_id":"1141","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.65872943Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1141","time":"2026-03-06T19:15:04.658843762Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4dhvR-kdYgGCaFCmxVAqPMH8Wt6UQczrrXTEupWAqtU","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504659,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.659081994Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4064,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":18.841268,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.675318426Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4065,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":14.125241,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.689655289Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158471023566540922","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.689769411Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1158471023566540922","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":39.178067,"time":"2026-03-06T19:15:04.689861463Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4066,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":2.740399,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.693225135Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4067,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.158065,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.705726824Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4068,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":11.756333,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.717641559Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1167170506487771257","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.717718176Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1167170506487771257","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":27.67624,"time":"2026-03-06T19:15:04.717797516Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4069,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":1.933443,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.720117885Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4070,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504720293119_34?ts=1698345552617&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":27.631401,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"war aus versehen, aber trd schade","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.748078662Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1167170585722368020","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":30.229323,"event_ids":{"":"$4U7MyVdv3_XcNRf0e1gB5e_CzTht2z1mn-_PGxvW-Os"},"time":"2026-03-06T19:15:04.748166733Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4071,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.067402,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.752787634Z","message":"Request completed"} +{"level":"debug","transaction_id":"1142","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.754908184Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1142","time":"2026-03-06T19:15:04.754987525Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4U7MyVdv3_XcNRf0e1gB5e_CzTht2z1mn-_PGxvW-Os","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504755,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.755213185Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4072,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.366616,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.767399955Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4073,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":10.276236,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.777812384Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1167170644857860137","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.777910512Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1167170644857860137","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":29.495769,"time":"2026-03-06T19:15:04.777991808Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4074,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":1.852496,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.780648188Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4075,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.780637,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:04.791814423Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4076,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":10.533465,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:04.802490855Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1167170741805006889","message_type":19,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:04.802571104Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1167170741805006889","message_type":19,"author_id":"388409312340344833","action":"discord message create","handling_time":24.470761,"time":"2026-03-06T19:15:04.8026436Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4077,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":2.573547,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:04.805645699Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4078,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824504805887423_35?ts=1698345596970&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":30.780657,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"okii","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:04.836807275Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1167170771752329307","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":34.092645,"event_ids":{"":"$4mLmcdJxf-qlw-YEF5iKerG274XSPxXSrB7Mn2RN3qI"},"time":"2026-03-06T19:15:04.836902889Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1143","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:04.844049635Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1143","time":"2026-03-06T19:15:04.84411822Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$4mLmcdJxf-qlw-YEF5iKerG274XSPxXSrB7Mn2RN3qI","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824504844,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:04.844379849Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":2148,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1265_910_0_358_376_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.806304,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:15:05.231144523Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4080,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":133.395721,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<96870 bytes>","time":"2026-03-06T19:15:06.263001694Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4081,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":2.768476,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.26624824Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4082,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":14.895391,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:06.281512677Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4083,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":13.60373,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:06.295281723Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168155567349563484","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:06.295401014Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168155567349563484","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":1458.238172,"time":"2026-03-06T19:15:06.295472183Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4084,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":2.361016,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.298380693Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4085,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824506298648747_36?ts=1698580455918&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":25.899593,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"schon gesehen","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:06.324717219Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168155841577373747","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":29.139644,"event_ids":{"":"$gg5wGWkXrnn3J0dxugVhh_tPKir6cIiBIIdrrwZO0b4"},"time":"2026-03-06T19:15:06.324806408Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4086,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":4.069847,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.329416274Z","message":"Request completed"} +{"level":"debug","transaction_id":"1144","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:06.331480601Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1144","time":"2026-03-06T19:15:06.331546462Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$gg5wGWkXrnn3J0dxugVhh_tPKir6cIiBIIdrrwZO0b4","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824506331,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:06.331709683Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4087,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824506329608619_37?ts=1698580474677&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":24.019091,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"anscheinend kann ich auch beides behalten","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:06.353789605Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168155920258306058","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":28.841627,"event_ids":{"":"$hZfaYX024-qVK8vLH0eFBeVEdEOzVKyfsPzKaMB5DVs"},"time":"2026-03-06T19:15:06.353920838Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4088,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":3.898454,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.358411554Z","message":"Request completed"} +{"level":"debug","transaction_id":"1145","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:06.360171997Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1145","time":"2026-03-06T19:15:06.360261675Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$hZfaYX024-qVK8vLH0eFBeVEdEOzVKyfsPzKaMB5DVs","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824506360,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:06.360468617Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4089,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824506358599360_38?ts=1698580479799&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":20.764374,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"von ps4 und pc","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:06.379538409Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168155941741539400","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":25.412513,"event_ids":{"":"$FppvYR0VB4U61Xn53tKOOY2ardPOA_uUettFv2CCTT8"},"time":"2026-03-06T19:15:06.379654836Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4090,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":3.898104,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.384271826Z","message":"Request completed"} +{"level":"debug","transaction_id":"1146","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:06.386106442Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1146","time":"2026-03-06T19:15:06.38615603Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$FppvYR0VB4U61Xn53tKOOY2ardPOA_uUettFv2CCTT8","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824506386,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:06.386310032Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4091,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824506384479886_39?ts=1698580487712&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":22.46587,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"überlege ob ich noch den bp kaufe diese season","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:06.407078316Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168155974931071036","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":27.095781,"event_ids":{"":"$nmmHkMEk6ml0pJ6uN7N3qCDyLzzh32_9VfST9RLGT4A"},"time":"2026-03-06T19:15:06.407130349Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1147","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:06.410429416Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1147","time":"2026-03-06T19:15:06.410547031Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$nmmHkMEk6ml0pJ6uN7N3qCDyLzzh32_9VfST9RLGT4A","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824506410,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:06.410685109Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4092,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":4.941757,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.412490391Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4093,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824506412577205_40?ts=1698580491361&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":18.974876,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"bin ja schon 110","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:06.431657822Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168155990236090489","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":24.36942,"event_ids":{"":"$ggf8fZDm5LMgxB3T0QlVEdJS3oxjhik7jLDckT4Rixo"},"time":"2026-03-06T19:15:06.431742401Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4094,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.126628,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.43647498Z","message":"Request completed"} +{"level":"debug","transaction_id":"1148","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:06.438085681Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1148","time":"2026-03-06T19:15:06.438175848Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$ggf8fZDm5LMgxB3T0QlVEdJS3oxjhik7jLDckT4Rixo","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824506438,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:06.438398644Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4095,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.425212,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:06.449289283Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4096,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":9.481641,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:06.458944063Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168157437543591936","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:06.459018864Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168157437543591936","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":27.026986,"time":"2026-03-06T19:15:06.459085074Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4097,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":1.900058,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.461422414Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4098,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824506461678595_41?ts=1698580841568&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":26.823886,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"ja","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:06.488689727Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168157459110711436","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":29.561352,"event_ids":{"":"$KoKGR7vBKB8ljGPSXJK7J2vDxOu3rb5kgd6pmtZ2ek4"},"time":"2026-03-06T19:15:06.488807272Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4099,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.526896,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.496115423Z","message":"Request completed"} +{"level":"debug","transaction_id":"1149","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:06.496345274Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1149","time":"2026-03-06T19:15:06.496441656Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KoKGR7vBKB8ljGPSXJK7J2vDxOu3rb5kgd6pmtZ2ek4","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824506496,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:06.496579175Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4100,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.51007,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:06.508954939Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4101,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":10.069783,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:06.519201282Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168157494590316585","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:06.519277899Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168157494590316585","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":30.150331,"time":"2026-03-06T19:15:06.519388739Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4102,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":2.035342,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:06.521868976Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4103,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":12.119651,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:06.534367592Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4104,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":12.707584,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:06.547295528Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168157520951525447","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:06.547454838Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168157520951525447","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":27.972092,"time":"2026-03-06T19:15:06.547548287Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4105,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":21.639357,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2342023 bytes>","time":"2026-03-06T19:15:07.449125047Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4106,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":2.604696,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.452129031Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4107,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824507452322564_42?ts=1698581440803&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":30.099206,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"20231029_130938.mp4","info":{"h":360,"mimetype":"video/mp4","size":2342023,"w":640},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/PSaRNJoNtOsSbqUzGkSDNFBZ"},"time":"2026-03-06T19:15:07.482661818Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168159972484468757","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":935.016102,"event_ids":{"1168159972232798228":"$XRmm7CJ3Exj8vMRkx4LUq-zbt364etsT2LGtgBMdW2U"},"time":"2026-03-06T19:15:07.482779293Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4108,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.19745,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.489859339Z","message":"Request completed"} +{"level":"debug","transaction_id":"1150","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:07.492520956Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1150","time":"2026-03-06T19:15:07.492605885Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$XRmm7CJ3Exj8vMRkx4LUq-zbt364etsT2LGtgBMdW2U","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824507492,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.video"},"time":"2026-03-06T19:15:07.492765055Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4109,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.313888,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:07.506520412Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4110,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":16.324014,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:07.523052416Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168161351189942324","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:07.523151662Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168161351189942324","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":39.945494,"time":"2026-03-06T19:15:07.523235054Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":2.216164,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.526011492Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4112,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824507526222345_43?ts=1698582088403&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":32.073646,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"dabei is der voll trash diesmal","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:07.558461238Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168162688715739246","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":35.065618,"event_ids":{"":"$AwmxzBD41M8bSpzz4Jy4S2bhyoT4y32zNQrGtfrISgw"},"time":"2026-03-06T19:15:07.558563208Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1151","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:07.562968297Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1151","time":"2026-03-06T19:15:07.563081651Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$AwmxzBD41M8bSpzz4Jy4S2bhyoT4y32zNQrGtfrISgw","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824507563,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:07.563268199Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4113,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":6.036115,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.565207089Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824507565452306_44?ts=1698582090289&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":29.067497,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"xD","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:07.594723393Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168162696626180147","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":35.942557,"event_ids":{"":"$I9m-1pY2fxe0ofbtaoO8uSFoBPjVc-pftVQ3vMbyLY8"},"time":"2026-03-06T19:15:07.594843102Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.824285,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.602438514Z","message":"Request completed"} +{"level":"debug","transaction_id":"1152","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:07.602650136Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1152","time":"2026-03-06T19:15:07.602740791Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$I9m-1pY2fxe0ofbtaoO8uSFoBPjVc-pftVQ3vMbyLY8","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824507602,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:07.603020859Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4116,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":16.364662,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:07.619185283Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4117,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":9.515515,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:07.628864648Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168162760438333541","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:07.6289347Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168162760438333541","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":33.753701,"time":"2026-03-06T19:15:07.629003774Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":1.742843,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.631191162Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4119,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824507631447344_45?ts=1698582124173&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":22.37717,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"aber hab wieder genug coins für den nächsten","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:07.654017069Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168162838745972787","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":24.944431,"event_ids":{"":"$HAWBG_4ZFHtDi3JZOl_O-0EfgRaFBMYZdneRAtaFHP8"},"time":"2026-03-06T19:15:07.654129934Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4120,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":4.252134,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.659112129Z","message":"Request completed"} +{"level":"debug","transaction_id":"1153","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:07.660747625Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1153","time":"2026-03-06T19:15:07.660834858Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$HAWBG_4ZFHtDi3JZOl_O-0EfgRaFBMYZdneRAtaFHP8","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824507661,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:07.661052416Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4121,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":13.717153,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:07.673199237Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4122,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":10.153244,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:07.683527366Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168164668859232296","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:07.683621862Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1168164668859232296","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":29.152774,"time":"2026-03-06T19:15:07.683692961Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4123,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":1.994624,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.686213917Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4124,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":10.764294,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:07.697352006Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4125,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":15.42277,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:07.71297662Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1307403785739436182","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:07.713305298Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1307403785739436182","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":29.636082,"time":"2026-03-06T19:15:07.713541155Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4126,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":3.167624,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.717449177Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4127,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824507717711853_46?ts=1731780584043&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":20.505119,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"hab ich garnet mitbekommen 😅","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:07.738418328Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1307407271772553328","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":24.612121,"event_ids":{"":"$VVX-AOK6OR5t1JVfC0LW88YxsgJDych2lHHSLYBgtIU"},"time":"2026-03-06T19:15:07.738507237Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1154","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:07.742422871Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1154","time":"2026-03-06T19:15:07.742521698Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$VVX-AOK6OR5t1JVfC0LW88YxsgJDych2lHHSLYBgtIU","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824507742,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:07.742746031Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4128,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":47.997465,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<250640 bytes>","time":"2026-03-06T19:15:07.995581529Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4129,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_248879308200869889:matrix.theocloud.dev?user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":2.642132,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:07.998717096Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_248879308200869889:matrix.theocloud.dev","req_id":4130,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824507998938985_47?ts=1731780609068&user_id=%40discord_248879308200869889%3Amatrix.theocloud.dev","duration":38.125685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.linkpreviews":[],"format":"org.matrix.custom.html","formatted_body":"\u003cimg data-mx-emoticon data-mau-animated-emoji src=\"mxc://matrix.theocloud.dev/coYRQFVZlpZhCKfwvZxLFRoV\" alt=\":NessieDanceCheetaah:\" title=\":NessieDanceCheetaah:\" height=\"32\"/\u003e","m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:15:08.037267561Z","message":"Request completed"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1307407376734752809","message_type":0,"author_id":"248879308200869889","action":"discord message create","handling_time":298.57189,"event_ids":{"":"$6aLte0rBsE_bkDISk16tAQ3P05Aml4ljaJRHUY2UKm0"},"time":"2026-03-06T19:15:08.037402566Z","message":"Finished handling Discord message"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4131,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/typing/@discord_388409312340344833:matrix.theocloud.dev?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":6.449021,"status_code":403,"response_length":142,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:15:08.04453227Z","message":"Request completed"} +{"level":"debug","transaction_id":"1155","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:08.047871497Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1155","time":"2026-03-06T19:15:08.047968997Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$6aLte0rBsE_bkDISk16tAQ3P05Aml4ljaJRHUY2UKm0","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824508048,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:15:08.048221057Z","message":"Sent message checkpoint"} +{"level":"debug","as_user_id":"@discord_388409312340344833:matrix.theocloud.dev","req_id":4132,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/join?user_id=%40discord_388409312340344833%3Amatrix.theocloud.dev","duration":19.170225,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:15:08.064106951Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4133,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite?user_id=%40discordbot%3Amatrix.theocloud.dev","duration":13.504693,"status_code":403,"response_length":122,"response_mime":"application/json","req_body":{"user_id":"@discord_388409312340344833:matrix.theocloud.dev"},"time":"2026-03-06T19:15:08.077784643Z","message":"Request completed"} +{"level":"error","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1307407849886056550","message_type":0,"author_id":"388409312340344833","action":"discord message create","error":"failed to invite in ensure joined: failed to POST /_matrix/client/v3/rooms/!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev/invite: M_FORBIDDEN (HTTP 403): @discordbot:matrix.theocloud.dev not in room !OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev.","part_index":0,"attachment_id":"","time":"2026-03-06T19:15:08.077896182Z","message":"Failed to send part of message to Matrix"} +{"level":"warn","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","message_id":"1307407849886056550","message_type":0,"author_id":"388409312340344833","action":"discord message create","handling_time":40.224933,"time":"2026-03-06T19:15:08.07797217Z","message":"All parts of message failed to send to Matrix"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","action":"initial backfill","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","limit":100,"time":"2026-03-06T19:15:08.07804278Z","message":"Forward backfill finished, unlocking lock"} +{"level":"debug","transaction_id":"1156","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:08.297513389Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1156","time":"2026-03-06T19:15:08.297795342Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1157","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:08.472784554Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1157","time":"2026-03-06T19:15:08.472896301Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175002245591482429","channel_receiver":"388409312340344833","room_id":"!fJTnYWwLSGJDZjZAxZ:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$LV-dE6Y-wo2GHcdKvJAMCc8LP8TNQjRmtgfrxUfZBUI","action":"matrix read receipt","discord_thread_id":"","message_id":"1300193046926987264","time":"2026-03-06T19:15:08.659987704Z","message":"Marked message as read on Discord"} +{"level":"debug","transaction_id":"1158","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:11.245266537Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1158","time":"2026-03-06T19:15:11.245571189Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1159","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:11.412846675Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1159","time":"2026-03-06T19:15:11.412957864Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"918855935571660820","channel_receiver":"388409312340344833","room_id":"!OaRmnkxqwRYsnTsLlG:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$6aLte0rBsE_bkDISk16tAQ3P05Aml4ljaJRHUY2UKm0","action":"matrix read receipt","discord_thread_id":"","message_id":"1307407376734752809","time":"2026-03-06T19:15:11.553586096Z","message":"Marked message as read on Discord"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:15:13.322941557Z","message":"unknown event: Op: 0, Seq: 28, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","transaction_id":"1160","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:13.959627628Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1160","time":"2026-03-06T19:15:13.959925016Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1161","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:14.10042844Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1161","time":"2026-03-06T19:15:14.100566727Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1126124397879631883","channel_receiver":"388409312340344833","room_id":"!KfHnoQOJhKTOJBBygs:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$Y_bxFcCHSp8coUkc63lyBmDv_tnzD2DDOfT5pg8t0Qo","action":"matrix read receipt","discord_thread_id":"","message_id":"1400882402901102662","time":"2026-03-06T19:15:14.247521827Z","message":"Marked message as read on Discord"} +{"level":"debug","transaction_id":"1162","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:25.463272451Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1162","time":"2026-03-06T19:15:25.463608183Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1163","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:25.636465387Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1163","time":"2026-03-06T19:15:25.636581395Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"711638031899033640","channel_receiver":"388409312340344833","room_id":"!LCTHPEwNuXCWPnXilT:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$UXSM_QssyH-24dYAsNek_xHNn1iM8JdNOR4eSDaB4t4","action":"matrix read receipt","discord_thread_id":"","message_id":"1434243802025164801","time":"2026-03-06T19:15:25.782543197Z","message":"Marked message as read on Discord"} +{"level":"debug","transaction_id":"1164","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:29.838394614Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1164","time":"2026-03-06T19:15:29.838667487Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1165","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:30.011247138Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1165","time":"2026-03-06T19:15:30.011382493Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1430926246987960451","channel_receiver":"","room_id":"!YZfepJZbSHBUkgmBct:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$robH31MqaQRmd1q2igomlAwI5tuJhbewse4td_BARGY","action":"matrix read receipt","discord_thread_id":"","message_id":"1440632617392144395","time":"2026-03-06T19:15:30.163194488Z","message":"Marked message as read on Discord"} +{"level":"debug","transaction_id":"1166","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:32.651581777Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1166","time":"2026-03-06T19:15:32.651931896Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1167","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:32.825070704Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1167","time":"2026-03-06T19:15:32.825189226Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1406965111868100628","channel_receiver":"","room_id":"!tSQoGRXLNTYCYjeLJn:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$JtyiffXkgqMwX7evggK5VSXjF7_6oa6j3feQzhxwTrU","action":"matrix read receipt","discord_thread_id":"","message_id":"1443170980347510971","time":"2026-03-06T19:15:32.969921105Z","message":"Marked message as read on Discord"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4079,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1847_914_0_364_384_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30005.585144,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:15:35.237141388Z","message":"Request completed"} +{"level":"debug","transaction_id":"1168","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:35.577502108Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1168","time":"2026-03-06T19:15:35.577786925Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1169","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:35.724439325Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1169","time":"2026-03-06T19:15:35.724546184Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"994921378350387220","channel_receiver":"388409312340344833","room_id":"!CPKFhtXonmSscuplvu:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$xC-3fr-ETkwFfmN0kt_qc5vF9njbjDzsyWnENlWqbbc","action":"matrix read receipt","discord_thread_id":"","message_id":"1454218667360518269","time":"2026-03-06T19:15:35.86496747Z","message":"Marked message as read on Discord"} +{"level":"debug","transaction_id":"1170","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:37.987549386Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1170","time":"2026-03-06T19:15:37.987781961Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1171","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:38.163935787Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1171","time":"2026-03-06T19:15:38.164047883Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1433893113969250476","channel_receiver":"","room_id":"!sihFRVuDSrkMxeUIrc:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$kR9WK9faUtOh_nJuhbcLyueTCdxOYGzWqxzTsg_YU9M","action":"matrix read receipt","discord_thread_id":"","message_id":"1454452986272153813","time":"2026-03-06T19:15:38.523753293Z","message":"Marked message as read on Discord"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:15:43.030373716Z","message":"unknown event: Op: 0, Seq: 35, Type: SESSIONS_REPLACE"} +{"level":"debug","transaction_id":"1172","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:45.803710618Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1172","time":"2026-03-06T19:15:45.804041391Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1173","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:45.970137167Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1173","time":"2026-03-06T19:15:45.970252616Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1455158234129105072","channel_receiver":"","room_id":"!cshVmlXZMqDNKkigqw:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$8WLQ88QSXPjzhj_-5sGje_dbb-0i7UfVtexNci7kE78","action":"matrix read receipt","discord_thread_id":"","message_id":"1467526770323361822","time":"2026-03-06T19:15:46.119021723Z","message":"Marked message as read on Discord"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:15:46.709197532Z","message":"unknown event: Op: 0, Seq: 37, Type: SESSIONS_REPLACE"} +{"level":"debug","transaction_id":"1174","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:15:48.210085989Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1174","time":"2026-03-06T19:15:48.210383587Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1175","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:15:48.368104441Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1175","time":"2026-03-06T19:15:48.368224849Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1418671061335146496","channel_receiver":"388409312340344833","room_id":"!iBjSIHgUsUHMzsAlfK:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$52KXGx4_oQLdnfKNKnOLrghyJKVqDbjHGnST_oppPW0","action":"matrix read receipt","discord_thread_id":"","message_id":"1467967983942107341","time":"2026-03-06T19:15:48.506271708Z","message":"Marked message as read on Discord"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4134,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1873_935_0_370_394_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.217782,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:16:05.241808674Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:16:09.184034052Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:16:14.220401609Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:16:19.249954917Z","message":"Unhandled event"} +{"level":"debug","transaction_id":"1176","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:16:22.934947641Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1176","time":"2026-03-06T19:16:22.935290636Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1177","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:16:23.130723772Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1177","time":"2026-03-06T19:16:23.130833773Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"741982362241597471","channel_receiver":"388409312340344833","room_id":"!qtJTnwiAXqKwyEVAdz:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$X50Uwom8gQoteRHF9vpyUGWmPr1WTQDr67ejakbK3Mw","action":"matrix read receipt","discord_thread_id":"","message_id":"1290296216260710420","time":"2026-03-06T19:16:23.271288578Z","message":"Marked message as read on Discord"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:16:24.289048581Z","message":"Unhandled event"} +{"level":"debug","transaction_id":"1178","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:16:26.014908426Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1178","time":"2026-03-06T19:16:26.015194639Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1179","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:16:26.181105607Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1179","time":"2026-03-06T19:16:26.181216516Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1472910535170199644","channel_receiver":"","room_id":"!NHfqpvHoMkpOTAEDlg:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$kXWIv-97TmZzzdahpwMp9QRmehei1WNNbYUGJlNXgZY","action":"matrix read receipt","discord_thread_id":"","message_id":"1477988181688455199","time":"2026-03-06T19:16:26.32510686Z","message":"Marked message as read on Discord"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:16:29.333608357Z","message":"Unhandled event"} +{"level":"debug","transaction_id":"1180","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:16:32.317556394Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1180","time":"2026-03-06T19:16:32.317853084Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1181","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:16:32.471959667Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1181","time":"2026-03-06T19:16:32.472067573Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1477033040331935974","channel_receiver":"","room_id":"!fMRxPLePwkLANpkhHa:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$PHRAWwiqMJ9CZnjstaa_pBhzWFLppCO8zyn7kvJJQE8","action":"matrix read receipt","discord_thread_id":"","message_id":"1478449595586580510","time":"2026-03-06T19:16:32.615570361Z","message":"Marked message as read on Discord"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:16:34.352624924Z","message":"Unhandled event"} +{"level":"debug","transaction_id":"1182","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:16:34.404837852Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1182","time":"2026-03-06T19:16:34.405084185Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1183","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:16:34.591974079Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1183","time":"2026-03-06T19:16:34.592120748Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1250499718887243897","channel_receiver":"","room_id":"!OrvuoraTBNeztQFAyh:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$DXAO6kP9ny3acMA8iXUGeNZu8MS5mHSf1MeQFPAe4OI","action":"matrix read receipt","discord_thread_id":"","message_id":"1478863019722407976","time":"2026-03-06T19:16:34.744223907Z","message":"Marked message as read on Discord"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4135,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1876_935_0_373_398_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.691158,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:16:35.245922936Z","message":"Request completed"} +{"level":"debug","transaction_id":"1184","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:16:36.415252005Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1184","time":"2026-03-06T19:16:36.415604289Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1185","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:16:36.579303561Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1185","time":"2026-03-06T19:16:36.579464827Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1174617111600037918","channel_receiver":"","room_id":"!OtOWjQwKQlyjvOgfaP:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$Vg9IB1_qIUYcVEcVq1DkuZmobr2ojigQl8K6tZVrWL0","action":"matrix read receipt","discord_thread_id":"","message_id":"1479058490550124667","time":"2026-03-06T19:16:36.720398329Z","message":"Marked message as read on Discord"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:16:37.218996223Z","message":"unknown event: Op: 0, Seq: 50, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","transaction_id":"1186","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:16:38.570380285Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1186","time":"2026-03-06T19:16:38.570584993Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1187","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:16:38.71885989Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1187","time":"2026-03-06T19:16:38.718972964Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1168906216441925765","channel_receiver":"388409312340344833","room_id":"!whjfmmHRLrqVzwMyWf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$KwmxkmknJ9qNF_89jMDMwzYQPpw7Mvw4o7UE_uugZGc","action":"matrix read receipt","discord_thread_id":"","message_id":"1479187935462166548","time":"2026-03-06T19:16:38.867750655Z","message":"Marked message as read on Discord"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:16:39.376901359Z","message":"Unhandled event"} +{"level":"debug","transaction_id":"1188","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:16:40.864128819Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1188","time":"2026-03-06T19:16:40.86449563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1189","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:16:41.016537327Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1189","time":"2026-03-06T19:16:41.016687139Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1163926603756224573","channel_receiver":"388409312340344833","room_id":"!jLZnJyqzUlpMjvncEu:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$ex0LoULQtLKrOIU0WgqTibiCRsu5atBcKlb9JTM_zDA","action":"matrix read receipt","discord_thread_id":"","message_id":"1479395081785049210","time":"2026-03-06T19:16:41.154403079Z","message":"Marked message as read on Discord"} +{"level":"debug","transaction_id":"1190","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:16:43.054281359Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1190","time":"2026-03-06T19:16:43.054598583Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1191","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:16:43.199765011Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1191","time":"2026-03-06T19:16:43.199910632Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1167763580809134111","channel_receiver":"388409312340344833","room_id":"!gSMgjfecyuIzhsmpNx:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$aHe1Clex9b7RXSCvjt2BZSL5SqQk1orwZqCmy_Ql4tc","action":"matrix read receipt","discord_thread_id":"","message_id":"1479498303430459494","time":"2026-03-06T19:16:43.364787653Z","message":"Marked message as read on Discord"} +{"level":"debug","transaction_id":"1192","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:17:02.316868545Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1192","time":"2026-03-06T19:17:02.317094345Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1193","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:17:02.482370372Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1193","time":"2026-03-06T19:17:02.482511873Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$ULGu4kji8I54Oo1GH6d9Blnz_2frpAZY3upBDd_HlsE","action":"matrix read receipt","discord_thread_id":"","message_id":"1479131295916232799","time":"2026-03-06T19:17:02.621755819Z","message":"Marked message as read on Discord"} +{"level":"debug","transaction_id":"1194","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:17:03.476298991Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1194","time":"2026-03-06T19:17:03.47644992Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"1175528825136881714","channel_receiver":"","room_id":"!HNFPoLVIWlXajxrqyf:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$xO-L_e_3XNy3Dc40TBzjlh_RUyMwM9nF8kvnHKG-Zl4","action":"matrix read receipt","discord_thread_id":"","message_id":"1456637785099206716","time":"2026-03-06T19:17:03.614045659Z","message":"Marked message as read on Discord"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4136,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1881_938_0_378_408_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.43382,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:17:05.249773156Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:17:22.196023813Z","message":"Unhandled event"} +{"level":"debug","transaction_id":"1195","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:17:22.244923284Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1195","time":"2026-03-06T19:17:22.245060873Z","message":"Finished dispatching events from transaction"} +{"level":"info","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:671:MarkViewing()","time":"2026-03-06T19:17:22.245253638Z","message":"called"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:17:22.412296112Z","message":"Marked user as typing"} +{"level":"debug","transaction_id":"1196","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:17:23.039610893Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1196","time":"2026-03-06T19:17:23.039734444Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1197","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:17:23.099549625Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1197","time":"2026-03-06T19:17:23.099668357Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$Zo-6QrZ6yjJQ5ke9awTSbAZ7iGhuVontLo9fq_vBMoE","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824643099,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:17:23.099887243Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","action":"send matrix message metrics","event_type":"m.room.message","event_id":"$Zo-6QrZ6yjJQ5ke9awTSbAZ7iGhuVontLo9fq_vBMoE","sender":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:17:23.379892801Z","message":"Matrix event handled successfully"} +{"level":"debug","message_checkpoint":{"event_id":"$Zo-6QrZ6yjJQ5ke9awTSbAZ7iGhuVontLo9fq_vBMoE","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"REMOTE","timestamp":1772824643380,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:17:23.380083121Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479558533346230332","message_type":0,"author_id":"388409312340344833","action":"discord message create","time":"2026-03-06T19:17:23.380181948Z","message":"Dropping duplicate message"} +{"level":"debug","transaction_id":"1198","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:17:24.398785807Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1198","time":"2026-03-06T19:17:24.398883097Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:17:24.569959238Z","message":"Marked user as typing"} +{"level":"debug","transaction_id":"1199","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:17:25.193163385Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1199","time":"2026-03-06T19:17:25.193268637Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1200","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:17:25.255274559Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1200","time":"2026-03-06T19:17:25.255391824Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$W0As8FUsAJt3bjTEiZdEs6Cu1stFSZ1Wn94XSi87X8w","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824645255,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:17:25.255607288Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","action":"send matrix message metrics","event_type":"m.room.message","event_id":"$W0As8FUsAJt3bjTEiZdEs6Cu1stFSZ1Wn94XSi87X8w","sender":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:17:25.679364546Z","message":"Matrix event handled successfully"} +{"level":"debug","message_checkpoint":{"event_id":"$W0As8FUsAJt3bjTEiZdEs6Cu1stFSZ1Wn94XSi87X8w","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"REMOTE","timestamp":1772824645679,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:17:25.679534961Z","message":"Sent message checkpoint"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479558542640808027","message_type":0,"author_id":"388409312340344833","action":"discord message create","time":"2026-03-06T19:17:25.679629667Z","message":"Dropping duplicate message"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4137,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1886_938_0_384_420_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30005.527484,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:17:35.255714594Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":4139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":18.35656,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":true,"timeout":12000},"time":"2026-03-06T19:17:36.057237653Z","message":"Request completed"} +{"level":"debug","transaction_id":"1201","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:17:36.062273627Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1201","time":"2026-03-06T19:17:36.062391311Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1202","content":{"pdu":0,"unstable_edu":6,"unstable_to_device":0},"time":"2026-03-06T19:17:36.067699948Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1202","time":"2026-03-06T19:17:36.067840261Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":4140,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":9.492606,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:17:39.646868918Z","message":"Request completed"} +{"level":"debug","transaction_id":"1203","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:17:39.651228539Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1203","time":"2026-03-06T19:17:39.651355792Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":4141,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824659647147589_169?ts=1772824659501&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":36.607449,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"korea 1950","com.beeper.linkpreviews":[],"m.mentions":{},"msgtype":"m.text"},"time":"2026-03-06T19:17:39.683953669Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479558601642217525","message_type":0,"author_id":"122672447207112706","action":"discord message create","handling_time":47.032867,"event_ids":{"":"$KH2SSnDWOGQnmE_7hT5Gz0lJ9yMFtb1J-UlT1RjKOWc"},"time":"2026-03-06T19:17:39.684078547Z","message":"Finished handling Discord message"} +{"level":"debug","transaction_id":"1204","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:17:39.692611451Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1204","time":"2026-03-06T19:17:39.692727458Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$KH2SSnDWOGQnmE_7hT5Gz0lJ9yMFtb1J-UlT1RjKOWc","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824659692,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.text"},"time":"2026-03-06T19:17:39.692934261Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"1205","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:17:40.233052701Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1205","time":"2026-03-06T19:17:40.233183586Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$KH2SSnDWOGQnmE_7hT5Gz0lJ9yMFtb1J-UlT1RjKOWc","action":"matrix read receipt","discord_thread_id":"","message_id":"1479558601642217525","time":"2026-03-06T19:17:40.374783795Z","message":"Marked message as read on Discord"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:17:51.092484858Z","message":"unknown event: Op: 0, Seq: 63, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:17:54.840937288Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:17:59.87048832Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":4142,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":3.106023,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:17:59.969920241Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":4143,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824679970153863_170?ts=1772824679882&user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":34.057091,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"time":"2026-03-06T19:18:00.004365514Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479558687126196234","message_type":3,"author_id":"122672447207112706","action":"discord message create","handling_time":37.959105,"event_ids":{"":"$BDZ1VI1udkez_Bm2zD6-4YnvwtpV9iSzZ9qKAhjZPqM"},"time":"2026-03-06T19:18:00.004499961Z","message":"Finished handling Discord message"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:18:00.009055489Z","message":"unknown event: Op: 0, Seq: 67, Type: CALL_CREATE"} +{"level":"debug","transaction_id":"1206","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:18:00.013839611Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1206","time":"2026-03-06T19:18:00.013944025Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$BDZ1VI1udkez_Bm2zD6-4YnvwtpV9iSzZ9qKAhjZPqM","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824680014,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:18:00.014159698Z","message":"Sent message checkpoint"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.VoiceStateUpdate","time":"2026-03-06T19:18:00.032320421Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:18:00.411180576Z","message":"unknown event: Op: 0, Seq: 69, Type: CALL_UPDATE"} +{"level":"debug","transaction_id":"1207","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:18:00.445106433Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1207","time":"2026-03-06T19:18:00.445208612Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$BDZ1VI1udkez_Bm2zD6-4YnvwtpV9iSzZ9qKAhjZPqM","action":"matrix read receipt","discord_thread_id":"","message_id":"1479558687126196234","time":"2026-03-06T19:18:00.581548094Z","message":"Marked message as read on Discord"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:18:04.887914866Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4138,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1888_941_4_384_429_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.48143,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:18:05.260681287Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.VoiceStateUpdate","time":"2026-03-06T19:18:07.394661969Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:18:09.374695944Z","message":"unknown event: Op: 0, Seq: 74, Type: CALL_UPDATE"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:18:09.929588167Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.VoiceStateUpdate","time":"2026-03-06T19:18:13.022518613Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":4145,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/typing/@discord_122672447207112706:matrix.theocloud.dev?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":3.371145,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"typing":false},"time":"2026-03-06T19:18:13.032133372Z","message":"Request completed"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:18:13.039709087Z","message":"unknown event: Op: 0, Seq: 78, Type: CALL_DELETE"} +{"level":"debug","as_user_id":"@discord_122672447207112706:matrix.theocloud.dev","req_id":4146,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qdEWEasVEgAnUMnvHK:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824693032374188_171?user_id=%40discord_122672447207112706%3Amatrix.theocloud.dev","duration":35.630077,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.emote","body":"started a call","m.mentions":{},"m.new_content":{"msgtype":"m.emote","body":"started a call","m.mentions":{}},"m.relates_to":{"rel_type":"m.replace","event_id":"$BDZ1VI1udkez_Bm2zD6-4YnvwtpV9iSzZ9qKAhjZPqM"}},"time":"2026-03-06T19:18:13.068130399Z","message":"Request completed"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","message_id":"1479558687126196234","action":"discord message update","event_id":"$greg6Ecy2daZ2Nb_ifMohBoD1MLd-vbl23pXB_9_41Q","redacted_attachments":{},"time":"2026-03-06T19:18:13.068246407Z","message":"Finished handling Discord edit"} +{"level":"debug","transaction_id":"1208","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:18:13.081842033Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1208","time":"2026-03-06T19:18:13.081946796Z","message":"Finished dispatching events from transaction"} +{"level":"debug","message_checkpoint":{"event_id":"$greg6Ecy2daZ2Nb_ifMohBoD1MLd-vbl23pXB_9_41Q","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","step":"BRIDGE","timestamp":1772824693082,"status":"SUCCESS","event_type":"m.room.message","reported_by":"BRIDGE","retry_num":0,"message_type":"m.emote"},"time":"2026-03-06T19:18:13.082154158Z","message":"Sent message checkpoint"} +{"level":"debug","transaction_id":"1209","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:18:13.409315984Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1209","time":"2026-03-06T19:18:13.409487586Z","message":"Finished dispatching events from transaction"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$greg6Ecy2daZ2Nb_ifMohBoD1MLd-vbl23pXB_9_41Q","action":"matrix read receipt","discord_thread_id":"","closest_event_id":"$BDZ1VI1udkez_Bm2zD6-4YnvwtpV9iSzZ9qKAhjZPqM","closest_message_id":"1479558687126196234","time":"2026-03-06T19:18:13.410737832Z","message":"Read receipt target event not found, using closest message"} +{"level":"debug","channel_id":"908482324335833109","channel_receiver":"388409312340344833","room_id":"!qdEWEasVEgAnUMnvHK:matrix.theocloud.dev","sender":"@theo:matrix.theocloud.dev","event_id":"$greg6Ecy2daZ2Nb_ifMohBoD1MLd-vbl23pXB_9_41Q","action":"matrix read receipt","discord_thread_id":"","closest_event_id":"$BDZ1VI1udkez_Bm2zD6-4YnvwtpV9iSzZ9qKAhjZPqM","closest_message_id":"1479558687126196234","time":"2026-03-06T19:18:13.564006716Z","message":"Marked message as read on Discord"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:18:14.954867947Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:18:19.991644856Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:18:35.081218934Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4144,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1888_942_4_384_430_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30005.311444,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:18:35.266453411Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:18:40.091774494Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:18:47.458444388Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:18:57.459707793Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4147,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1891_946_6_387_434_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.768746,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:19:05.271661115Z","message":"Request completed"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:19:16.473720407Z","message":"unknown event: Op: 0, Seq: 86, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4148,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1891_946_6_387_434_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.329517,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:19:35.276415971Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:19:50.563220759Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:19:55.59336823Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:19:57.819169555Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:00.613110315Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:02.694883164Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:03.188602441Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:03.188684785Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:03.18871335Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:03.188760493Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:03.188839764Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:20:03.18997924Z","message":"unknown event: Op: 0, Seq: 97, Type: SESSIONS_REPLACE"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4149,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1891_946_6_387_434_1_84_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.950245,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:20:05.2817317Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:05.651115775Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:10.684147758Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:15.718974881Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:20.756771891Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:25.784799638Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:20:27.59821389Z","message":"unknown event: Op: 0, Seq: 103, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:30.815088026Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4150,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1903_949_7_389_438_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.03594,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:20:35.286087099Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:35.841628247Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:45.928456968Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:20:50.936963753Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4151,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1906_949_8_390_440_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.776854,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:21:05.291296206Z","message":"Request completed"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:21:24.883750816Z","message":"unknown event: Op: 0, Seq: 108, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4152,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1906_952_8_390_440_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.061793,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:21:35.295843124Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:21:51.043064422Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:22:01.387301272Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:22:03.74071004Z","message":"unknown event: Op: 0, Seq: 111, Type: SESSIONS_REPLACE"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4153,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1910_952_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.798567,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:22:05.300072338Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:22:06.411810617Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:22:11.45232136Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:22:16.480411214Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:22:21.510751793Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:22:31.927522294Z","message":"unknown event: Op: 0, Seq: 116, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4154,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1910_955_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.754879,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:22:35.305303681Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4155,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s2149_957_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.967602,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:23:05.309721626Z","message":"Request completed"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:23:25.812194459Z","message":"unknown event: Op: 0, Seq: 118, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4156,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s2861_989_8_391_443_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.423606,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:23:35.313543543Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:23:47.039248308Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:23:52.050560762Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:23:57.066519111Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:23:58.007744023Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:24:02.109694609Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4157,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s3511_990_8_417_465_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.942489,"status_code":200,"response_length":145,"response_mime":"application/json","time":"2026-03-06T19:24:05.317931136Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:24:12.189641956Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:24:17.180244827Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:24:22.229216844Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:24:29.448603096Z","message":"unknown event: Op: 0, Seq: 127, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:24:32.273130157Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4158,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s3926_1032_8_424_475_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.52739,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:24:35.321885752Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:24:37.2982678Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:24:42.32101725Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:24:47.35578884Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:24:52.38673691Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:25:01.032825892Z","message":"unknown event: Op: 0, Seq: 133, Type: SESSIONS_REPLACE"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4159,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4240_1042_10_429_481_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.819741,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:25:05.326054983Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:25:22.51830396Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4160,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4508_1059_10_435_489_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.717499,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:25:35.33023372Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:25:37.591431956Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:25:49.775227152Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:25:53.53169944Z","message":"unknown event: Op: 0, Seq: 137, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4161,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4765_1078_10_438_496_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.613527,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:26:05.334284529Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4162,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4768_1097_10_441_502_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.868139,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:26:35.338584014Z","message":"Request completed"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:26:48.931197149Z","message":"unknown event: Op: 0, Seq: 138, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4163,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4768_1097_10_441_525_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.302051,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:27:05.343273479Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4164,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4768_1100_10_441_531_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.801695,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:27:35.347940728Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:28:03.291925531Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4165,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4789_1104_10_442_533_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.509064,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:28:05.353014606Z","message":"Request completed"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:28:06.340354793Z","message":"unknown event: Op: 0, Seq: 140, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:28:08.316685188Z","message":"Unhandled event"} +{"level":"debug","transaction_id":"3246","content":{"pdu":0,"unstable_edu":3,"unstable_to_device":0},"time":"2026-03-06T19:28:12.475802314Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3246","time":"2026-03-06T19:28:12.475938296Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3247","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:28:12.532050498Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3247","time":"2026-03-06T19:28:12.532154632Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:28:13.326019073Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:28:14.279963721Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:28:21.469593683Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:28:28.422841452Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4166,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1110_10_442_537_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30005.225523,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:28:35.35870891Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:28:38.428818986Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:28:48.493746111Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:28:58.540842432Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4167,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1112_10_442_545_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30005.262779,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:29:05.364425313Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:29:13.60928388Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:29:18.664980977Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:29:23.666763663Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:29:26.872197302Z","message":"unknown event: Op: 0, Seq: 153, Type: CONVERSATION_SUMMARY_UPDATE"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4168,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1115_10_442_545_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.768265,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:29:35.368870628Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:29:43.776765287Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:29:58.893006682Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4169,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1115_10_442_545_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30005.153704,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:30:05.374653679Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:30:11.703599083Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:30:23.974694906Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:30:29.000551373Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4170,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1118_10_442_545_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.07414,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:30:35.379158118Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4171,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1118_10_442_549_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.271393,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:31:05.383871192Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:31:21.546782792Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4172,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1121_10_442_549_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.450778,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:31:35.388760787Z","message":"Request completed"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:31:37.168221359Z","message":"unknown event: Op: 0, Seq: 165, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:31:51.00815057Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:32:01.645105977Z","message":"unknown event: Op: 0, Seq: 168, Type: CONVERSATION_SUMMARY_UPDATE"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4173,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1121_10_442_549_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.556739,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:32:05.393742237Z","message":"Request completed"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:32:17.117635743Z","message":"unknown event: Op: 0, Seq: 170, Type: CONVERSATION_SUMMARY_UPDATE"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4174,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1124_10_442_549_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.333133,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:32:35.398496448Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:32:44.631593821Z","message":"Unhandled event"} +{"level":"warn","user_id":"@theo:matrix.theocloud.dev","component":"discordgo","heartbeat_session":"cad39da1-b85f-40c4-a762-75299b8a1947","caller":"wsapi.go:838:onEvent()","time":"2026-03-06T19:32:48.668478585Z","message":"unknown event: Op: 0, Seq: 172, Type: PASSIVE_UPDATE_V2"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:33:04.738853484Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4175,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1124_10_442_549_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30003.594673,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:33:05.402480979Z","message":"Request completed"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:33:14.788247911Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:33:23.617235943Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:33:23.617291677Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:33:23.617385545Z","message":"Unhandled event"} +{"level":"debug","user_id":"@theo:matrix.theocloud.dev","event_type":"*discordgo.PresenceUpdate","time":"2026-03-06T19:33:23.617494708Z","message":"Unhandled event"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4176,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4792_1127_12_442_551_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.171508,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:33:35.407105203Z","message":"Request completed"} +{"level":"debug","as_user_id":"@discordbot:matrix.theocloud.dev","req_id":4177,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4792_1127_12_442_552_1_86_89_0_1_1_1&timeout=30000&user_id=%40discordbot%3Amatrix.theocloud.dev","duration":30004.140963,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:34:05.411916441Z","message":"Request completed"} diff --git a/matrix/mautrix-discord/mautrix-discord.db b/matrix/mautrix-discord/mautrix-discord.db new file mode 100644 index 0000000..52159b5 Binary files /dev/null and b/matrix/mautrix-discord/mautrix-discord.db differ diff --git a/matrix/mautrix-discord/mautrix-discord.db-shm b/matrix/mautrix-discord/mautrix-discord.db-shm new file mode 100644 index 0000000..796129e Binary files /dev/null and b/matrix/mautrix-discord/mautrix-discord.db-shm differ diff --git a/matrix/mautrix-discord/mautrix-discord.db-wal b/matrix/mautrix-discord/mautrix-discord.db-wal new file mode 100644 index 0000000..5903e9a Binary files /dev/null and b/matrix/mautrix-discord/mautrix-discord.db-wal differ diff --git a/matrix/mautrix-discord/registration.yaml b/matrix/mautrix-discord/registration.yaml new file mode 100644 index 0000000..440f639 --- /dev/null +++ b/matrix/mautrix-discord/registration.yaml @@ -0,0 +1,14 @@ +id: discord +url: http://mautrix-discord:29334 +as_token: x6d57blS92F9s3WsG9kSuQvcuFMUUzpQRmIBnyuzkXl8PSdGJRwBXE7PuPNE9KX7 +hs_token: Oxxh2padb3ql8NZ8YngHYkVIJPscIbeeL8wyQcverDGPQrhfYAyfVYYsXyFYzQEP +sender_localpart: T1AJhjkgFcr37DaklgrlXwSZtWJnYFmr +rate_limited: false +namespaces: + users: + - regex: ^@discordbot:matrix\.theocloud\.dev$ + exclusive: true + - regex: ^@discord_.*:matrix\.theocloud\.dev$ + exclusive: true +de.sorunome.msc2409.push_ephemeral: true +push_ephemeral: true diff --git a/matrix/mautrix-whatsapp/config.yaml b/matrix/mautrix-whatsapp/config.yaml new file mode 100644 index 0000000..c553624 --- /dev/null +++ b/matrix/mautrix-whatsapp/config.yaml @@ -0,0 +1,595 @@ +# Network-specific config options +network: + # Device name that's shown in the "WhatsApp Web" section in the mobile app. + os_name: Mautrix-WhatsApp bridge + # Browser name that determines the logo shown in the mobile app. + # Must be "unknown" for a generic icon or a valid browser name if you want a specific icon. + # List of valid browser names: https://github.com/tulir/whatsmeow/blob/efc632c008604016ddde63bfcfca8de4e5304da9/binary/proto/def.proto#L43-L64 + browser_name: unknown + + # Proxy to use for all WhatsApp connections. + proxy: null + # Alternative to proxy: an HTTP endpoint that returns the proxy URL to use for WhatsApp connections. + get_proxy_url: null + # Whether the proxy options should only apply to the login websocket and not to authenticated connections. + proxy_only_login: false + + # Displayname template for WhatsApp users. + # {{.PushName}} - nickname set by the WhatsApp user + # {{.BusinessName}} - validated WhatsApp business name + # {{.Phone}} - phone number (international format) + # {{.RedactedPhone}} - phone number with middle digits replaced by "∙" + # {{.FullName}} - Name you set in the contacts list + displayname_template: '{{or .BusinessName .PushName .Phone .RedactedPhone "Unknown user"}} (WA)' + + # Should incoming calls send a message to the Matrix room? + call_start_notices: true + # Should another user's cryptographic identity changing send a message to Matrix? + identity_change_notices: false + # Should the bridge mark you as online on WhatsApp when you send typing notifications? + # Full presence bridging is not supported. + send_presence_on_typing: false + # Should WhatsApp status messages be bridged into a Matrix room? + enable_status_broadcast: true + # Should sending WhatsApp status messages be allowed? + # This can cause issues if the user has lots of contacts, so it's disabled by default. + disable_status_broadcast_send: true + # Should the status broadcast room be muted and moved into low priority by default? + # This is only applied when creating the room, the user can unmute it later. + mute_status_broadcast: true + # Tag to apply to pinned chats on WhatsApp. + pinned_tag: m.favourite + # Tag to apply to archived chats on WhatsApp. + # Set to m.lowpriority to move them to low priority. + archive_tag: + # Tag to apply to the status broadcast room. + status_broadcast_tag: m.lowpriority + # Should the bridge use thumbnails from WhatsApp? + # They're disabled by default due to very low resolution. + whatsapp_thumbnail: false + # Should the bridge detect URLs in outgoing messages, ask the homeserver to generate a preview, + # and send it to WhatsApp? URL previews can always be sent using the `com.beeper.linkpreviews` + # key in the event content even if this is disabled. + url_previews: false + # Should polls be sent using unstable MSC3381 event types? + extev_polls: false + # Should view-once messages be disabled entirely? + disable_view_once: false + # Should the bridge always send "active" delivery receipts (two gray ticks on WhatsApp) + # even if the user isn't marked as online (e.g. when presence bridging isn't enabled)? + # + # By default, the bridge acts like WhatsApp web, which only sends active delivery + # receipts when it's in the foreground. + force_active_delivery_receipts: false + # When direct media is enabled and a piece of media isn't available on the WhatsApp servers, + # should it be automatically requested from the phone? + direct_media_auto_request: true + # Should the bridge automatically reconnect if it fails to connect on startup? + initial_auto_reconnect: true + # WhatsApp messages are sometimes undecryptable. Should the bridge store messages it sends in the + # bridge database in order to accept retry receipts from other WhatsApp users for messages sent via + # the bridge? By default, the bridge only stores messages in memory, and therefore can't accept + # retry receipts if the bridge is restarted after the message is sent. + use_whatsapp_retry_store: false + # Settings for converting animated stickers. + animated_sticker: + # Format to which animated stickers should be converted. + # disable - No conversion, just unzip and send raw lottie JSON + # png - converts to non-animated png (fastest) + # gif - converts to animated gif + # webm - converts to webm video, requires ffmpeg executable with vp9 codec and webm container support + # webp - converts to animated webp, requires ffmpeg executable with webp codec/container support + target: webp + # Arguments for converter. All converters take width and height. + args: + width: 320 + height: 320 + fps: 25 # only for webm, webp and gif (2, 5, 10, 20 or 25 recommended) + + # Settings for handling history sync payloads. + history_sync: + # How many conversations should the bridge create after login? + # If -1, all conversations received from history sync will be bridged. + # Other conversations will be backfilled on demand when receiving a message. + max_initial_conversations: -1 + # Should the bridge request a full sync from the phone when logging in? + # This bumps the size of history syncs from 3 months to 1 year. + request_full_sync: false + # Time to wait for history sync payloads before starting backfill. Each new payload resets the timer. + # If this is too low, the backfill may happen with incomplete history + # and backfill less messages than what is configured in the backfill section. + dispatch_wait: 1m + # Configuration parameters that are sent to the phone along with the request full sync flag. + # By default, (when the values are null or 0), the config isn't sent at all. + full_sync_config: + # Number of days of history to request. + # The limit seems to be around 3 years, but using higher values doesn't break. + days_limit: null + # This is presumably the maximum size of the transferred history sync blob, which may affect what the phone includes in the blob. + size_mb_limit: null + # This is presumably the local storage quota, which may affect what the phone includes in the history sync blob. + storage_quota_mb: null + # Settings for media requests. If the media expired, then it will not be on the WA servers. + # Media can always be requested by reacting with the ♻️ (recycle) emoji. + # These settings determine if the media requests should be done automatically during or after backfill. + media_requests: + # Should the expired media be automatically requested from the server as part of the backfill process? + auto_request_media: true + # Whether to request the media immediately after the media message is backfilled ("immediate") + # or at a specific time of the day ("local_time"). + request_method: immediate + # If request_method is "local_time", what time should the requests be sent (in minutes after midnight)? + request_local_time: 120 + # Maximum number of media request responses to handle in parallel per user. + max_async_handle: 2 + +# Config options that affect the central bridge module. +bridge: + # The prefix for commands. Only required in non-management rooms. + command_prefix: '!wa' + # Should the bridge create a space for each login containing the rooms that account is in? + personal_filtering_spaces: true + # Whether the bridge should set names and avatars explicitly for DM portals. + # This is only necessary when using clients that don't support MSC4171. + private_chat_portal_meta: true + # Should events be handled asynchronously within portal rooms? + # If true, events may end up being out of order, but slow events won't block other ones. + # This is not yet safe to use. + async_events: false + # Should every user have their own portals rather than sharing them? + # By default, users who are in the same group on the remote network will be + # in the same Matrix room bridged to that group. If this is set to true, + # every user will get their own Matrix room instead. + # SETTING THIS IS IRREVERSIBLE AND POTENTIALLY DESTRUCTIVE IF PORTALS ALREADY EXIST. + split_portals: false + # Should the bridge resend `m.bridge` events to all portals on startup? + resend_bridge_info: false + # Should `m.bridge` events be sent without a state key? + # By default, the bridge uses a unique key that won't conflict with other bridges. + no_bridge_info_state_key: false + # Should bridge connection status be sent to the management room as `m.notice` events? + # These contain the same data that can be posted to an external HTTP server using homeserver -> status_endpoint. + # Allowed values: none, errors, all + bridge_status_notices: errors + # How long after an unknown error should the bridge attempt a full reconnect? + # Must be at least 1 minute. The bridge will add an extra ±20% jitter to this value. + unknown_error_auto_reconnect: null + + # Should leaving Matrix rooms be bridged as leaving groups on the remote network? + bridge_matrix_leave: false + # Should `m.notice` messages be bridged? + bridge_notices: false + # Should room tags only be synced when creating the portal? Tags mean things like favorite/pin and archive/low priority. + # Tags currently can't be synced back to the remote network, so a continuous sync means tagging from Matrix will be undone. + tag_only_on_create: true + # List of tags to allow bridging. If empty, no tags will be bridged. + only_bridge_tags: [m.favourite, m.lowpriority] + # Should room mute status only be synced when creating the portal? + # Like tags, mutes can't currently be synced back to the remote network. + mute_only_on_create: true + # Should the bridge check the db to ensure that incoming events haven't been handled before + deduplicate_matrix_messages: false + # Should cross-room reply metadata be bridged? + # Most Matrix clients don't support this and servers may reject such messages too. + cross_room_replies: false + # If a state event fails to bridge, should the bridge revert any state changes made by that event? + revert_failed_state_changes: false + # In portals with no relay set, should Matrix users be kicked if they're + # not logged into an account that's in the remote chat? + kick_matrix_users: true + + # What should be done to portal rooms when a user logs out or is logged out? + # Permitted values: + # nothing - Do nothing, let the user stay in the portals + # kick - Remove the user from the portal rooms, but don't delete them + # unbridge - Remove all ghosts in the room and disassociate it from the remote chat + # delete - Remove all ghosts and users from the room (i.e. delete it) + cleanup_on_logout: + # Should cleanup on logout be enabled at all? + enabled: false + # Settings for manual logouts (explicitly initiated by the Matrix user) + manual: + # Action for private portals which will never be shared with other Matrix users. + private: nothing + # Action for portals with a relay user configured. + relayed: nothing + # Action for portals which may be shared, but don't currently have any other Matrix users. + shared_no_users: nothing + # Action for portals which have other logged-in Matrix users. + shared_has_users: nothing + # Settings for credentials being invalidated (initiated by the remote network, possibly through user action). + # Keys have the same meanings as in the manual section. + bad_credentials: + private: nothing + relayed: nothing + shared_no_users: nothing + shared_has_users: nothing + + # Settings for relay mode + relay: + # Whether relay mode should be allowed. If allowed, the set-relay command can be used to turn any + # authenticated user into a relaybot for that chat. + enabled: false + # Should only admins be allowed to set themselves as relay users? + # If true, non-admins can only set users listed in default_relays as relays in a room. + admin_only: true + # List of user login IDs which anyone can set as a relay, as long as the relay user is in the room. + default_relays: [] + # The formats to use when sending messages via the relaybot. + # Available variables: + # .Sender.UserID - The Matrix user ID of the sender. + # .Sender.Displayname - The display name of the sender (if set). + # .Sender.RequiresDisambiguation - Whether the sender's name may be confused with the name of another user in the room. + # .Sender.DisambiguatedName - The disambiguated name of the sender. This will be the displayname if set, + # plus the user ID in parentheses if the displayname is not unique. + # If the displayname is not set, this is just the user ID. + # .Message - The `formatted_body` field of the message. + # .Caption - The `formatted_body` field of the message, if it's a caption. Otherwise an empty string. + # .FileName - The name of the file being sent. + message_formats: + m.text: "{{ .Sender.DisambiguatedName }}: {{ .Message }}" + m.notice: "{{ .Sender.DisambiguatedName }}: {{ .Message }}" + m.emote: "* {{ .Sender.DisambiguatedName }} {{ .Message }}" + m.file: "{{ .Sender.DisambiguatedName }} sent a file{{ if .Caption }}: {{ .Caption }}{{ end }}" + m.image: "{{ .Sender.DisambiguatedName }} sent an image{{ if .Caption }}: {{ .Caption }}{{ end }}" + m.audio: "{{ .Sender.DisambiguatedName }} sent an audio file{{ if .Caption }}: {{ .Caption }}{{ end }}" + m.video: "{{ .Sender.DisambiguatedName }} sent a video{{ if .Caption }}: {{ .Caption }}{{ end }}" + m.location: "{{ .Sender.DisambiguatedName }} sent a location{{ if .Caption }}: {{ .Caption }}{{ end }}" + # For networks that support per-message displaynames (i.e. Slack and Discord), the template for those names. + # This has all the Sender variables available under message_formats (but without the .Sender prefix). + # Note that you need to manually remove the displayname from message_formats above. + displayname_format: "{{ .DisambiguatedName }}" + + # Permissions for using the bridge. + # Permitted values: + # relay - Talk through the relaybot (if enabled), no access otherwise + # commands - Access to use commands in the bridge, but not login. + # user - Access to use the bridge with puppeting. + # admin - Full access, user level with some additional administration tools. + # Permitted keys: + # * - All Matrix users + # domain - All users on that homeserver + # mxid - Specific user + permissions: + "*": user + "matrix.theocloud.dev": user + "@admin:example.com": admin + +# Config for the bridge's database. +database: + # The database type. "sqlite3-fk-wal" and "postgres" are supported. + type: sqlite3-fk-wal + # The database URI. + # SQLite: A raw file path is supported, but `file:?_txlock=immediate` is recommended. + # https://github.com/mattn/go-sqlite3#connection-string + # Postgres: Connection string. For example, postgres://user:password@host/database?sslmode=disable + # To connect via Unix socket, use something like postgres:///dbname?host=/var/run/postgresql + uri: file:/data/mautrix-whatsapp.db?_txlock=immediate + # Maximum number of connections. + max_open_conns: 5 + max_idle_conns: 1 + # Maximum connection idle time and lifetime before they're closed. Disabled if null. + # Parsed with https://pkg.go.dev/time#ParseDuration + max_conn_idle_time: null + max_conn_lifetime: null + +# Homeserver details. +homeserver: + # The address that this appservice can use to connect to the homeserver. + # Local addresses without HTTPS are generally recommended when the bridge is running on the same machine, + # but https also works if they run on different machines. + address: http://synapse:8008 + # The domain of the homeserver (also known as server_name, used for MXIDs, etc). + domain: matrix.theocloud.dev + + # What software is the homeserver running? + # Standard Matrix homeservers like Synapse, Dendrite and Conduit should just use "standard" here. + software: standard + # The URL to push real-time bridge status to. + # If set, the bridge will make POST requests to this URL whenever a user's remote network connection state changes. + # The bridge will use the appservice as_token to authorize requests. + status_endpoint: + # Endpoint for reporting per-message status. + # If set, the bridge will make POST requests to this URL when processing a message from Matrix. + # It will make one request when receiving the message (step BRIDGE), one after decrypting if applicable + # (step DECRYPTED) and one after sending to the remote network (step REMOTE). Errors will also be reported. + # The bridge will use the appservice as_token to authorize requests. + message_send_checkpoint_endpoint: + # Does the homeserver support https://github.com/matrix-org/matrix-spec-proposals/pull/2246? + async_media: false + + # Should the bridge use a websocket for connecting to the homeserver? + # The server side is currently not documented anywhere and is only implemented by mautrix-wsproxy, + # mautrix-asmux (deprecated), and hungryserv (proprietary). + websocket: false + # How often should the websocket be pinged? Pinging will be disabled if this is zero. + ping_interval_seconds: 0 + +# Application service host/registration related details. +# Changing these values requires regeneration of the registration (except when noted otherwise) +appservice: + # The address that the homeserver can use to connect to this appservice. + # Like the homeserver address, a local non-https address is recommended when the bridge is on the same machine. + # If the bridge is elsewhere, you must secure the connection yourself (e.g. with https or wireguard) + # If you want to use https, you need to use a reverse proxy. The bridge does not have TLS support built in. + address: http://mautrix-whatsapp:29318 + # A public address that external services can use to reach this appservice. + # This is only needed for things like public media. A reverse proxy is generally necessary when using this field. + # This value doesn't affect the registration file. + public_address: https://bridge.example.com + + # The hostname and port where this appservice should listen. + # For Docker, you generally have to change the hostname to 0.0.0.0. + hostname: 0.0.0.0 + port: 29318 + + # The unique ID of this appservice. + id: whatsapp + # Appservice bot details. + bot: + # Username of the appservice bot. + username: whatsappbot + # Display name and avatar for bot. Set to "remove" to remove display name/avatar, leave empty + # to leave display name/avatar as-is. + displayname: WhatsApp bridge bot + avatar: mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr + + # Whether to receive ephemeral events via appservice transactions. + ephemeral_events: true + # Should incoming events be handled asynchronously? + # This may be necessary for large public instances with lots of messages going through. + # However, messages will not be guaranteed to be bridged in the same order they were sent in. + # This value doesn't affect the registration file. + async_transactions: false + + # Authentication tokens for AS <-> HS communication. Autogenerated; do not modify. + as_token: "VNdDHV2vfcmIpy6KgCKvNMocxetQ951IqS7NHGJQRWXvf5QieY8klkRKZGcvzdkO" + hs_token: "KHsANomVJAjTbu88bhmAF93RrfqHh8hw9md8Kg8WVMmXvYFjjScj5ooJSeCe04CM" + + # Localpart template of MXIDs for remote users. + # {{.}} is replaced with the internal ID of the user. + username_template: whatsapp_{{.}} + +# Config options that affect the Matrix connector of the bridge. +matrix: + # Whether the bridge should send the message status as a custom com.beeper.message_send_status event. + message_status_events: false + # Whether the bridge should send a read receipt after successfully bridging a message. + delivery_receipts: false + # Whether the bridge should send error notices via m.notice events when a message fails to bridge. + message_error_notices: true + # Whether the bridge should update the m.direct account data event when double puppeting is enabled. + sync_direct_chat_list: true + # Whether created rooms should have federation enabled. If false, created portal rooms + # will never be federated. Changing this option requires recreating rooms. + federate_rooms: true + # The threshold as bytes after which the bridge should roundtrip uploads via the disk + # rather than keeping the whole file in memory. + upload_file_threshold: 5242880 + +# Segment-compatible analytics endpoint for tracking some events, like provisioning API login and encryption errors. +analytics: + # API key to send with tracking requests. Tracking is disabled if this is null. + token: null + # Address to send tracking requests to. + url: https://api.segment.io/v1/track + # Optional user ID for tracking events. If null, defaults to using Matrix user ID. + user_id: null + +# Settings for provisioning API +provisioning: + # Shared secret for authentication. If set to "generate" or null, a random secret will be generated, + # or if set to "disable", the provisioning API will be disabled. Must be at least 16 characters. + shared_secret: lW9foMcprxdk6BhK0vDdZau8OEtvZukpX4c7yMeAcrGwAv2mIkXC2w5wwddDqJ2S + # Whether to allow provisioning API requests to be authed using Matrix access tokens. + # This follows the same rules as double puppeting to determine which server to contact to check the token, + # which means that by default, it only works for users on the same server as the bridge. + allow_matrix_auth: true + # Enable debug API at /debug with provisioning authentication. + debug_endpoints: false + # Enable session transfers between bridges. Note that this only validates Matrix or shared secret + # auth before passing live network client credentials down in the response. + enable_session_transfers: false + +# Some networks require publicly accessible media download links (e.g. for user avatars when using Discord webhooks). +# These settings control whether the bridge will provide such public media access. +public_media: + # Should public media be enabled at all? + # The public_address field under the appservice section MUST be set when enabling public media. + enabled: false + # A key for signing public media URLs. + # If set to "generate", a random key will be generated. + signing_key: PRv10qrgxl0qle9vP1pVJP3ATnhMBt1N6B1LEwbj0T9lfGOdb5XIptGtLDfkzwlI + # Number of seconds that public media URLs are valid for. + # If set to 0, URLs will never expire. + expiry: 0 + # Length of hash to use for public media URLs. Must be between 0 and 32. + hash_length: 32 + # The path prefix for generated URLs. Note that this will NOT change the path where media is actually served. + # If you change this, you must configure your reverse proxy to rewrite the path accordingly. + path_prefix: /_mautrix/publicmedia + # Should the bridge store media metadata in the database in order to support encrypted media and generate shorter URLs? + # If false, the generated URLs will just have the MXC URI and a HMAC signature. + # The hash_length field will be used to decide the length of the generated URL. + # This also allows invalidating URLs by deleting the database entry. + use_database: false + +# Settings for converting remote media to custom mxc:// URIs instead of reuploading. +# More details can be found at https://docs.mau.fi/bridges/go/discord/direct-media.html +direct_media: + # Should custom mxc:// URIs be used instead of reuploading media? + enabled: false + # The server name to use for the custom mxc:// URIs. + # This server name will effectively be a real Matrix server, it just won't implement anything other than media. + # You must either set up .well-known delegation from this domain to the bridge, or proxy the domain directly to the bridge. + server_name: discord-media.example.com + # Optionally a custom .well-known response. This defaults to `server_name:443` + well_known_response: + # Optionally specify a custom prefix for the media ID part of the MXC URI. + media_id_prefix: + # If the remote network supports media downloads over HTTP, then the bridge will use MSC3860/MSC3916 + # media download redirects if the requester supports it. Optionally, you can force redirects + # and not allow proxying at all by setting this to false. + # This option does nothing if the remote network does not support media downloads over HTTP. + allow_proxy: true + # Matrix server signing key to make the federation tester pass, same format as synapse's .signing.key file. + # This key is also used to sign the mxc:// URIs to ensure only the bridge can generate them. + server_key: ed25519 7lkNGA 9OiEhr+GHOG3uJ/XARi4Q7Nd/XV2BnFQILKXbC6M41o + +# Settings for backfilling messages. +# Note that the exact way settings are applied depends on the network connector. +# See https://docs.mau.fi/bridges/general/backfill.html for more details. +backfill: + # Whether to do backfilling at all. + enabled: true + # Maximum number of messages to backfill in empty rooms. + max_initial_messages: 100 + # Maximum number of missed messages to backfill after bridge restarts. + max_catchup_messages: 100 + # If a backfilled chat is older than this number of hours, + # mark it as read even if it's unread on the remote network. + unread_hours_threshold: 720 + # Settings for backfilling threads within other backfills. + threads: + # Maximum number of messages to backfill in a new thread. + max_initial_messages: 50 + # Settings for the backwards backfill queue. This only applies when connecting to + # Beeper as standard Matrix servers don't support inserting messages into history. + queue: + # Should the backfill queue be enabled? + enabled: true + # Number of messages to backfill in one batch. + batch_size: 100 + # Delay between batches in seconds. + batch_delay: 10 + # Maximum number of batches to backfill per portal. + # If set to -1, all available messages will be backfilled. + max_batches: -1 + # Optional network-specific overrides for max batches. + # Interpretation of this field depends on the network connector. + max_batches_override: {} + +# Settings for enabling double puppeting +double_puppet: + # Servers to always allow double puppeting from. + # This is only for other servers and should NOT contain the server the bridge is on. + servers: + anotherserver.example.org: https://matrix.anotherserver.example.org + # Whether to allow client API URL discovery for other servers. When using this option, + # users on other servers can use double puppeting even if their server URLs aren't + # explicitly added to the servers map above. + allow_discovery: false + # Shared secrets for automatic double puppeting. + # See https://docs.mau.fi/bridges/general/double-puppeting.html for instructions. + secrets: + example.com: as_token:foobar + +# End-to-bridge encryption support options. +# +# See https://docs.mau.fi/bridges/general/end-to-bridge-encryption.html for more info. +encryption: + # Whether to enable encryption at all. If false, the bridge will not function in encrypted rooms. + allow: true + # Whether to force-enable encryption in all bridged rooms. + default: false + # Whether to require all messages to be encrypted and drop any unencrypted messages. + require: false + # Whether to use MSC3202/MSC4203 instead of /sync long polling for receiving encryption-related data. + # This option is not yet compatible with standard Matrix servers like Synapse and should not be used. + # Changing this option requires updating the appservice registration file. + appservice: false + # Whether to use MSC4190 instead of appservice login to create the bridge bot device. + # Requires the homeserver to support MSC4190 and the device masquerading parts of MSC3202. + # Only relevant when using end-to-bridge encryption, required when using encryption with next-gen auth (MSC3861). + # Changing this option requires updating the appservice registration file. + msc4190: false + # Whether to encrypt reactions and reply metadata as per MSC4392. + msc4392: false + # Should the bridge bot generate a recovery key and cross-signing keys and verify itself? + # Note that without the latest version of MSC4190, this will fail if you reset the bridge database. + # The generated recovery key will be saved in the kv_store table under `recovery_key`. + self_sign: false + # Enable key sharing? If enabled, key requests for rooms where users are in will be fulfilled. + # You must use a client that supports requesting keys from other users to use this feature. + allow_key_sharing: true + # Pickle key for encrypting encryption keys in the bridge database. + # If set to generate, a random key will be generated. + pickle_key: tnw0YVweoHpgM6Fy6i86VZmkbzHrqK6maqpQfe4NPu8qIe8XLTwfCogfYwI62lMq + # Options for deleting megolm sessions from the bridge. + delete_keys: + # Beeper-specific: delete outbound sessions when hungryserv confirms + # that the user has uploaded the key to key backup. + delete_outbound_on_ack: false + # Don't store outbound sessions in the inbound table. + dont_store_outbound: false + # Ratchet megolm sessions forward after decrypting messages. + ratchet_on_decrypt: false + # Delete fully used keys (index >= max_messages) after decrypting messages. + delete_fully_used_on_decrypt: false + # Delete previous megolm sessions from same device when receiving a new one. + delete_prev_on_new_session: false + # Delete megolm sessions received from a device when the device is deleted. + delete_on_device_delete: false + # Periodically delete megolm sessions when 2x max_age has passed since receiving the session. + periodically_delete_expired: false + # Delete inbound megolm sessions that don't have the received_at field used for + # automatic ratcheting and expired session deletion. This is meant as a migration + # to delete old keys prior to the bridge update. + delete_outdated_inbound: false + # What level of device verification should be required from users? + # + # Valid levels: + # unverified - Send keys to all device in the room. + # cross-signed-untrusted - Require valid cross-signing, but trust all cross-signing keys. + # cross-signed-tofu - Require valid cross-signing, trust cross-signing keys on first use (and reject changes). + # cross-signed-verified - Require valid cross-signing, plus a valid user signature from the bridge bot. + # Note that creating user signatures from the bridge bot is not currently possible. + # verified - Require manual per-device verification + # (currently only possible by modifying the `trust` column in the `crypto_device` database table). + verification_levels: + # Minimum level for which the bridge should send keys to when bridging messages from the remote network to Matrix. + receive: unverified + # Minimum level that the bridge should accept for incoming Matrix messages. + send: unverified + # Minimum level that the bridge should require for accepting key requests. + share: cross-signed-tofu + # Options for Megolm room key rotation. These options allow you to configure the m.room.encryption event content. + # See https://spec.matrix.org/v1.10/client-server-api/#mroomencryption for more information about that event. + rotation: + # Enable custom Megolm room key rotation settings. Note that these + # settings will only apply to rooms created after this option is set. + enable_custom: false + # The maximum number of milliseconds a session should be used + # before changing it. The Matrix spec recommends 604800000 (a week) + # as the default. + milliseconds: 604800000 + # The maximum number of messages that should be sent with a given a + # session before changing it. The Matrix spec recommends 100 as the + # default. + messages: 100 + # Disable rotating keys when a user's devices change? + # You should not enable this option unless you understand all the implications. + disable_device_change_key_rotation: false + +# Prefix for environment variables. All variables with this prefix must map to valid config fields. +# Nesting in variable names is represented with a dot (.). +# If there are no dots in the name, two underscores (__) are replaced with a dot. +# +# e.g. if the prefix is set to `BRIDGE_`, then `BRIDGE_APPSERVICE__AS_TOKEN` will set appservice.as_token. +# `BRIDGE_appservice.as_token` would work as well, but can't be set in a shell as easily. +# +# If this is null, reading config fields from environment will be disabled. +env_config_prefix: null + +# Logging config. See https://github.com/tulir/zeroconfig for details. +logging: + min_level: debug + writers: + - type: stdout + format: pretty-colored + - type: file + format: json + filename: ./logs/bridge.log + max_size: 100 + max_backups: 10 + compress: false diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-51-14.397.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-51-14.397.log new file mode 100644 index 0000000..76a9fbb --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-51-14.397.log @@ -0,0 +1,2 @@ +{"level":"fatal","error":"database.uri not configured","time":"2026-03-06T18:50:14.173830009Z","message":"Configuration error"} +{"level":"info","time":"2026-03-06T18:50:14.173885463Z","message":"See https://docs.mau.fi/faq/field-unconfigured for more info"} diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-52-14.615.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-52-14.615.log new file mode 100644 index 0000000..092eedb --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-52-14.615.log @@ -0,0 +1,2 @@ +{"level":"fatal","error":"database.uri not configured","time":"2026-03-06T18:51:14.398033225Z","message":"Configuration error"} +{"level":"info","time":"2026-03-06T18:51:14.398084349Z","message":"See https://docs.mau.fi/faq/field-unconfigured for more info"} diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-53-14.855.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-53-14.855.log new file mode 100644 index 0000000..8efe2b3 --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-53-14.855.log @@ -0,0 +1,2 @@ +{"level":"fatal","error":"database.uri not configured","time":"2026-03-06T18:52:14.615408663Z","message":"Configuration error"} +{"level":"info","time":"2026-03-06T18:52:14.615463489Z","message":"See https://docs.mau.fi/faq/field-unconfigured for more info"} diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-54-15.078.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-54-15.078.log new file mode 100644 index 0000000..e9532c3 --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-54-15.078.log @@ -0,0 +1,2 @@ +{"level":"fatal","error":"database.uri not configured","time":"2026-03-06T18:53:14.855975816Z","message":"Configuration error"} +{"level":"info","time":"2026-03-06T18:53:14.856055436Z","message":"See https://docs.mau.fi/faq/field-unconfigured for more info"} diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-55-15.324.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-55-15.324.log new file mode 100644 index 0000000..cb8bb5d --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-55-15.324.log @@ -0,0 +1,2 @@ +{"level":"fatal","error":"database.uri not configured","time":"2026-03-06T18:54:15.079021405Z","message":"Configuration error"} +{"level":"info","time":"2026-03-06T18:54:15.079078606Z","message":"See https://docs.mau.fi/faq/field-unconfigured for more info"} diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-56-15.562.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-56-15.562.log new file mode 100644 index 0000000..d31e0b7 --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-56-15.562.log @@ -0,0 +1,2 @@ +{"level":"fatal","error":"database.uri not configured","time":"2026-03-06T18:55:15.324360367Z","message":"Configuration error"} +{"level":"info","time":"2026-03-06T18:55:15.32442092Z","message":"See https://docs.mau.fi/faq/field-unconfigured for more info"} diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-57-15.785.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-57-15.785.log new file mode 100644 index 0000000..8a626fb --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-57-15.785.log @@ -0,0 +1,2 @@ +{"level":"fatal","error":"database.uri not configured","time":"2026-03-06T18:56:15.562392577Z","message":"Configuration error"} +{"level":"info","time":"2026-03-06T18:56:15.562453619Z","message":"See https://docs.mau.fi/faq/field-unconfigured for more info"} diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-58-15.994.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-58-15.994.log new file mode 100644 index 0000000..6db423b --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-58-15.994.log @@ -0,0 +1,2 @@ +{"level":"fatal","error":"database.uri not configured","time":"2026-03-06T18:57:15.785127835Z","message":"Configuration error"} +{"level":"info","time":"2026-03-06T18:57:15.78517861Z","message":"See https://docs.mau.fi/faq/field-unconfigured for more info"} diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-59-16.230.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-59-16.230.log new file mode 100644 index 0000000..6b33bb4 --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T18-59-16.230.log @@ -0,0 +1,2 @@ +{"level":"fatal","error":"database.uri not configured","time":"2026-03-06T18:58:15.995013741Z","message":"Configuration error"} +{"level":"info","time":"2026-03-06T18:58:15.995067659Z","message":"See https://docs.mau.fi/faq/field-unconfigured for more info"} diff --git a/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T19-12-13.081.log b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T19-12-13.081.log new file mode 100644 index 0000000..b6cd21c --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge-2026-03-06T19-12-13.081.log @@ -0,0 +1,118 @@ +{"level":"info","name":"mautrix-whatsapp","version":"v26.02+dev.178c04aa","built_at":"2026-02-18T14:02:06Z","go_version":"go1.26.0","time":"2026-03-06T18:59:16.231095582Z","message":"Initializing bridge"} +{"level":"debug","time":"2026-03-06T18:59:16.231160466Z","message":"Initializing database connection"} +{"level":"info","time":"2026-03-06T18:59:16.231395625Z","message":"Starting bridge"} +{"level":"info","db_section":"main","current_version":0,"oldest_compatible_version":0,"latest_known_version":26,"time":"2026-03-06T18:59:16.235158385Z","message":"Preparing to update database schema"} +{"level":"info","db_section":"main","from":0,"to":26,"txn_mode":"on","description":"Latest revision","time":"2026-03-06T18:59:16.235196938Z","message":"Upgrading database"} +{"level":"info","time":"2026-03-06T18:59:16.238580244Z","message":"Starting Matrix connector"} +{"level":"info","db_section":"matrix_state","current_version":0,"oldest_compatible_version":0,"latest_known_version":10,"time":"2026-03-06T18:59:16.238988823Z","message":"Preparing to update database schema"} +{"level":"info","db_section":"matrix_state","from":0,"to":10,"txn_mode":"on","description":"Latest revision","time":"2026-03-06T18:59:16.239022417Z","message":"Upgrading database"} +{"level":"debug","time":"2026-03-06T18:59:16.239908577Z","message":"Starting appservice HTTP server"} +{"level":"debug","time":"2026-03-06T18:59:16.239938191Z","message":"Checking connection to homeserver"} +{"level":"info","address":"0.0.0.0:29318","time":"2026-03-06T18:59:16.240072218Z","message":"Starting HTTP listener"} +{"level":"warn","req_id":1,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T18:59:16.248468464Z","message":"Request failed, retrying"} +{"level":"warn","req_id":1,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T18:59:20.258976366Z","message":"Request failed, retrying"} +{"level":"warn","req_id":1,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":16,"time":"2026-03-06T18:59:28.307874638Z","message":"Request failed, retrying"} +{"level":"warn","req_id":1,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":32,"time":"2026-03-06T18:59:44.330530262Z","message":"Request failed, retrying"} +{"level":"error","req_id":1,"error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":8.653472,"time":"2026-03-06T19:00:16.341398073Z","message":"Request failed"} +{"level":"error","error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","time":"2026-03-06T19:00:16.341511078Z","message":"Failed to connect to homeserver, retrying in 10 seconds..."} +{"level":"warn","req_id":2,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T19:00:26.3578922Z","message":"Request failed, retrying"} +{"level":"warn","req_id":2,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T19:00:30.368753546Z","message":"Request failed, retrying"} +{"level":"warn","req_id":2,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":16,"time":"2026-03-06T19:00:38.383830826Z","message":"Request failed, retrying"} +{"level":"warn","req_id":2,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":32,"time":"2026-03-06T19:00:54.39221799Z","message":"Request failed, retrying"} +{"level":"error","req_id":2,"error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":8.089561,"time":"2026-03-06T19:01:26.400702926Z","message":"Request failed"} +{"level":"error","error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","time":"2026-03-06T19:01:26.40082536Z","message":"Failed to connect to homeserver, retrying in 10 seconds..."} +{"level":"warn","req_id":3,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T19:01:36.413656211Z","message":"Request failed, retrying"} +{"level":"warn","req_id":3,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T19:01:40.423901242Z","message":"Request failed, retrying"} +{"level":"warn","req_id":3,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":16,"time":"2026-03-06T19:01:48.431978414Z","message":"Request failed, retrying"} +{"level":"warn","req_id":3,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":32,"time":"2026-03-06T19:02:04.45646518Z","message":"Request failed, retrying"} +{"level":"error","req_id":3,"error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":6.997155,"time":"2026-03-06T19:02:36.490710216Z","message":"Request failed"} +{"level":"error","error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","time":"2026-03-06T19:02:36.4908147Z","message":"Failed to connect to homeserver, retrying in 10 seconds..."} +{"level":"warn","req_id":4,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T19:02:46.498104749Z","message":"Request failed, retrying"} +{"level":"warn","req_id":4,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T19:02:50.51055346Z","message":"Request failed, retrying"} +{"level":"warn","req_id":4,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":16,"time":"2026-03-06T19:02:58.520680778Z","message":"Request failed, retrying"} +{"level":"warn","req_id":4,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":32,"time":"2026-03-06T19:03:14.543991358Z","message":"Request failed, retrying"} +{"level":"error","req_id":4,"error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":7.536266,"time":"2026-03-06T19:03:46.551854584Z","message":"Request failed"} +{"level":"error","error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","time":"2026-03-06T19:03:46.55198477Z","message":"Failed to connect to homeserver, retrying in 10 seconds..."} +{"level":"warn","req_id":5,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T19:03:56.563875877Z","message":"Request failed, retrying"} +{"level":"warn","req_id":5,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T19:04:00.575728239Z","message":"Request failed, retrying"} +{"level":"warn","req_id":5,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":16,"time":"2026-03-06T19:04:08.587039831Z","message":"Request failed, retrying"} +{"level":"warn","req_id":5,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":32,"time":"2026-03-06T19:04:24.609082299Z","message":"Request failed, retrying"} +{"level":"error","req_id":5,"error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":7.585573,"time":"2026-03-06T19:04:56.643756174Z","message":"Request failed"} +{"level":"error","error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","time":"2026-03-06T19:04:56.64389083Z","message":"Failed to connect to homeserver, retrying in 10 seconds..."} +{"level":"warn","req_id":6,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T19:05:06.656288138Z","message":"Request failed, retrying"} +{"level":"warn","req_id":6,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T19:05:10.66680913Z","message":"Request failed, retrying"} +{"level":"warn","req_id":6,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":16,"time":"2026-03-06T19:05:18.678197151Z","message":"Request failed, retrying"} +{"level":"warn","req_id":6,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp 192.168.96.6:8008: connect: connection refused","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":32,"time":"2026-03-06T19:05:34.69041147Z","message":"Request failed, retrying"} +{"level":"error","req_id":6,"error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":7.584873,"time":"2026-03-06T19:06:06.698313993Z","message":"Request failed"} +{"level":"error","error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","time":"2026-03-06T19:06:06.698454585Z","message":"Failed to connect to homeserver, retrying in 10 seconds..."} +{"level":"warn","req_id":7,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T19:06:16.711432435Z","message":"Request failed, retrying"} +{"level":"warn","req_id":7,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T19:06:20.719836592Z","message":"Request failed, retrying"} +{"level":"warn","req_id":7,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":16,"time":"2026-03-06T19:06:28.729545306Z","message":"Request failed, retrying"} +{"level":"warn","req_id":7,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":32,"time":"2026-03-06T19:06:44.753115324Z","message":"Request failed, retrying"} +{"level":"error","req_id":7,"error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":8.042269,"time":"2026-03-06T19:07:16.781677427Z","message":"Request failed"} +{"level":"error","error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","time":"2026-03-06T19:07:16.781787638Z","message":"Failed to connect to homeserver, retrying in 10 seconds..."} +{"level":"warn","req_id":8,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T19:07:26.798774153Z","message":"Request failed, retrying"} +{"level":"warn","req_id":8,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T19:07:30.807573808Z","message":"Request failed, retrying"} +{"level":"warn","req_id":8,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":16,"time":"2026-03-06T19:07:38.823631444Z","message":"Request failed, retrying"} +{"level":"warn","req_id":8,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":32,"time":"2026-03-06T19:07:54.846753448Z","message":"Request failed, retrying"} +{"level":"error","req_id":8,"error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":6.821285,"time":"2026-03-06T19:08:26.854029609Z","message":"Request failed"} +{"level":"error","error":"request error: Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","time":"2026-03-06T19:08:26.854151693Z","message":"Failed to connect to homeserver, retrying in 10 seconds..."} +{"level":"warn","req_id":9,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T19:08:36.863081854Z","message":"Request failed, retrying"} +{"level":"warn","req_id":9,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T19:08:40.874584547Z","message":"Request failed, retrying"} +{"level":"warn","req_id":9,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp 192.168.96.6:8008: connect: connection refused","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":16,"time":"2026-03-06T19:08:48.880427983Z","message":"Request failed, retrying"} +{"level":"warn","req_id":9,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp: lookup synapse on 127.0.0.11:53: no such host","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":32,"time":"2026-03-06T19:09:04.902527526Z","message":"Request failed, retrying"} +{"level":"debug","req_id":9,"method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":4.205063,"status_code":403,"response_length":120,"response_mime":"application/json","time":"2026-03-06T19:09:36.921429359Z","message":"Request completed"} +{"level":"debug","time":"2026-03-06T19:09:36.921519386Z","message":"M_FORBIDDEN in /versions, trying to register before retrying"} +{"level":"debug","req_id":10,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":4.328614,"status_code":200,"response_length":84,"response_mime":"application/json","req_body":{"username":"whatsappbot","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:09:36.926152372Z","message":"Request completed"} +{"level":"debug","req_id":11,"method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2.97982,"status_code":200,"response_length":1211,"response_mime":"application/json","time":"2026-03-06T19:09:36.929651749Z","message":"Request completed"} +{"level":"debug","req_id":12,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/account/whoami?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1.677122,"status_code":200,"response_length":64,"response_mime":"application/json","time":"2026-03-06T19:09:36.931602792Z","message":"Request completed"} +{"level":"debug","txn_id":"mautrix-go_1772824176931671307_1","time":"2026-03-06T19:09:36.936214546Z","message":"Received ping from homeserver"} +{"level":"debug","req_id":13,"method":"POST","url":"http://synapse:8008/_matrix/client/v1/appservice/whatsapp/ping?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":6.745924,"status_code":200,"response_length":17,"response_mime":"application/json","req_body":{"transaction_id":"mautrix-go_1772824176931671307_1"},"time":"2026-03-06T19:09:36.938525557Z","message":"Request completed"} +{"level":"debug","txn_id":"mautrix-go_1772824176931671307_1","duration_ms":4,"time":"2026-03-06T19:09:36.938622777Z","message":"Homeserver -> appservice connection works"} +{"level":"debug","component":"crypto","time":"2026-03-06T19:09:36.938685286Z","message":"Initializing end-to-bridge encryption..."} +{"level":"info","db_section":"crypto","current_version":0,"oldest_compatible_version":0,"latest_known_version":18,"time":"2026-03-06T19:09:36.939313308Z","message":"Preparing to update database schema"} +{"level":"info","db_section":"crypto","from":0,"to":18,"txn_mode":"on","description":"Latest revision","time":"2026-03-06T19:09:36.939402496Z","message":"Upgrading database"} +{"level":"debug","req_id":14,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/config?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2.388885,"status_code":200,"response_length":26,"response_mime":"application/json","time":"2026-03-06T19:09:36.941284117Z","message":"Request completed"} +{"level":"debug","req_id":15,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/login?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1.832033,"status_code":200,"response_length":78,"response_mime":"application/json","time":"2026-03-06T19:09:36.945724897Z","message":"Request completed"} +{"level":"debug","req_id":16,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/login?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":19.522308,"status_code":200,"response_length":174,"response_mime":"application/json","req_body":{"type":"m.login.application_service","identifier":{"type":"m.id.user","user":"@whatsappbot:matrix.theocloud.dev"},"initial_device_display_name":"WhatsApp bridge"},"time":"2026-03-06T19:09:36.965533908Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","user_id":"@whatsappbot:matrix.theocloud.dev","device_id":"PDSEQNSLKG","time":"2026-03-06T19:09:36.965622188Z","message":"Stored credentials after login"} +{"level":"debug","component":"crypto","device_id":"PDSEQNSLKG","time":"2026-03-06T19:09:36.965669471Z","message":"Logged in as bridge bot"} +{"level":"debug","machine_ptr":"0x22e471cc5680","account_ptr":"0x22e471eb0ba0","olm_driver":"libolm","time":"2026-03-06T19:09:36.966210958Z","message":"Loaded olm account"} +{"level":"debug","time":"2026-03-06T19:09:36.966606056Z","message":"Going to upload initial account keys"} +{"level":"debug","count":51,"time":"2026-03-06T19:09:36.984309602Z","message":"Uploading one-time keys"} +{"level":"debug","req_id":17,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/keys/upload?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":25.136509,"status_code":200,"response_length":48,"response_mime":"application/json","req_body":{"device_keys":{"user_id":"@whatsappbot:matrix.theocloud.dev","device_id":"PDSEQNSLKG","algorithms":["m.megolm.v1.aes-sha2","m.olm.v1.curve25519-aes-sha2"],"keys":{"curve25519:PDSEQNSLKG":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","ed25519:PDSEQNSLKG":"2o86b04NjjxrT/KU4mZLeKxq8zZaf8y6BISpdR88Aks"},"signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"XaiUh0cH/HGu/0Br87PoDhZ9BGJecin3SNKPDMunVWtWRCejDLU29Mg7yVgHVCoGBQe7k2alZzQwRe+i+4hsDA"}}},"one_time_keys":{"signed_curve25519:AAAAAQ":{"key":"EN80eXGaa7WjOV/pWpIRKPdecpR2YzlunzArupTpGBI","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"5vIdctxo/rPZ5GqwhuWLhqtoQe5Qwwwsta/PD/Pr7Sr15GaFZhxBMdHXAJwAv6q7tbe6U3/K5m8FkuW5XbJXBg"}}},"signed_curve25519:AAAAAg":{"key":"Ucxgoc0MMgyIIwEdwAx1Ciocr3M5B+cwalwKrqctmmY","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"nDwSsGWIXXr1pLRcMokwcs9EeZMz7DaP4iHnGz3z0vL5JiHXZrkEuN5AtPmbSTC0mDVSOV2RN8cxQ0TjaUmZAA"}}},"signed_curve25519:AAAAAw":{"key":"Q/Y/QDstuQdpdeZn8CeQxbEa6qYzepu0C1XFTnizR1g","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"sL/wzBcK2xA6m3Ub5CBy2w02K3VUXYh1dct05wd7NHO5mAvgPMPvtLUe1DpPHNmsV/ZKKgzolMR28t7mCNM3CA"}}},"signed_curve25519:AAAABA":{"key":"ZDukAm7AO2HkNvFSeBbwAMBTrMsfx0YUIKUdtdrgOAs","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"WlFKel44nrjKv2Wp1sLLn+CO14oJ+7TbCIXx09jlRTsOV1b9Av+oAmjIwqxL+YZZUJ3HhzY7DvQo9d0PzDUECQ"}}},"signed_curve25519:AAAABQ":{"key":"2JyRceBxj/PkfA58tUcFqCvy1pxdsnWF61L4RON7P2s","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"YV5PDbliP3ePPq1lQ3iiaQIptiUNrKBEtec00OMxLZ3YeG/ry1cu/cfGHaSe2Oyse3Z4UaF9KQeapLpf2pG8AQ"}}},"signed_curve25519:AAAABg":{"key":"XZehp/EHkIQzGtm8YZGLC97PKpF2LT14NMKDPgyBcUM","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"Y4oo7Ci18oudnIJoBJH1Kxg8BvfShx7bkv8E1BicYQTy25XJHCPOr9s0xX8JhTrI+XpLsy5//21vTGsT7GHvBQ"}}},"signed_curve25519:AAAABw":{"key":"wtIB/YzDsiINowbX1PZdaUbMSROLRgaCNDqkTLMltFQ","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"KbwnvImiGkwBQCj3RhSwsnHBolQirtjLEaJUCBvMCaD5pu0ht6r52t8JkQ4RaHN5UYwBo5Jh1KaemdCEXTAVBA"}}},"signed_curve25519:AAAACA":{"key":"FTZQBaVR21/vxLlrzKhjq3lM+fIJjvdOzOdx5EBCfx8","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"rZY0GPvIb32H9wJGlS/JOgJ0Zgxtiu4ka1nys6ykHFPxCOTIXI6V9WyYGVbjkDHCHT4hLQ9UJd72asrtUmIyCQ"}}},"signed_curve25519:AAAACQ":{"key":"5hOhQPpqk2Sv3gtH8ZN4A1AqCfvEEnlDPvapCVuX+UY","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"2Ko1qBs4fFqOG+TPQh9L/f77XrJ+0G8SYYl6oJ/Qa7Io58Q8uTzV9viTiB4Chtb0S6d30aiZHKeLyy5wyPgJDA"}}},"signed_curve25519:AAAACg":{"key":"hH5t9ecrxTiABx3qGP1nKO5clMZaCTub+iajhRe6lxA","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"ZNOVTN6676E+pqS/10Ig43m8Bb9+8fpDwMN2Ukaj/mQmgSAj5Fv3Ea9wk0fgcI+2OXPC65oonQ5C0DWRM4MEDQ"}}},"signed_curve25519:AAAACw":{"key":"McTuusx6dRxnegx7CKyqd+wOp+gl01KcysMdSqcUDXc","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"tUrhHUUftKReJkJ2Iu2LkxzmEQ5GbgfXqLRWM1ULr03fXU0Yc+r0xUqy6wVxPYzd8+sdMSSxY0slmEWFuKrZCw"}}},"signed_curve25519:AAAADA":{"key":"1gW4ZQtzzV7V2MlJL60k+ot06j+yw+qoyyCfCXWoHnk","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"LVzfHxzghWo7MHS1X0/f7hhgIoTO5Q8XB85cgcWDHm2R7ATIMl2idppY4iP+NMwvKDj3/dyAqgjLepsMZzBhDA"}}},"signed_curve25519:AAAADQ":{"key":"YmjGyZZLNNG2uh2nK13lKXM2VnRdAlUcoh+xjYC5ymk","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"q6Xq23ABn6m+e5m6eeIEN50PfEjcz/EkIO1eb47IcqwnRF9w6PtcZB+u8Cprwk2RLdo8Y9+tg6zGEY1nh7ntCw"}}},"signed_curve25519:AAAADg":{"key":"8ZKyknCH8ixuD8sQt80pXlVJyIAryKRBnOZHZUrtFiQ","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"Bo6DFFrWzOz2uWTEir2n0DJmkBZcfZDGnyL8WUWccFuGA29g9e7Vy0eYXO7VxQrL7F4fzwaAzpiR//Qf5wagDw"}}},"signed_curve25519:AAAADw":{"key":"oOMJOkvTHd/jqh6X7nZQE7I06vDKdJOe5x+ZwA5J3jE","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"qB4XUhHH2drNyiV8wUejaAcCQ9MJDD9rdzlVy+AU3Dh9FR2EMqJp7ORvMIvJo8AF2D9v8NnGlCPsYhVOLUTFCw"}}},"signed_curve25519:AAAAEA":{"key":"GDb/OIl4ZdPBsYDKsb64EssclNUHYq6ySjQT3YhV4G8","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"6pO2RDmzOJIvUMzYEv/PJ0JxtD/nMhRtM8YeqEIZjOAnOLhSayZm1osMVA99gFVMmm9SxCImXY63XDWAyLq+AA"}}},"signed_curve25519:AAAAEQ":{"key":"Urp2q8+hAc9/saxqoZJBYWFFeePlOpYE7KCcBGGC0C4","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"afTcrGhzlkf4xEnR/FeO8N9yeh2xPNF7xHFDKPdiqD1rHVi/eizb+BdbTt+0eCWI817VOyhTQ4jzI5nuPnxACg"}}},"signed_curve25519:AAAAEg":{"key":"HQV2i3WfRZTi6b27cIKUWLLxgsTXq6NfH2LNi4xQzUk","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"MOzuRLn4ZJIg04bbK92MnWUUSPB1/KN8mzC/6U73moYrM0+owQKOaPgDc+/r72kgn4SvWr24r53wSYEFgjf6DA"}}},"signed_curve25519:AAAAEw":{"key":"0ryabV0xtlnTX48MRKyxmYLIB/iyL6hQ0OVGLbGG+gY","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"LCJrlO2PHwEBCFNjaf+septpZ82y9y09IB55bZHlVzD7zDOO9eZWCHPYvdnlzarGBNJSqsFsnYLswUeWfAeCAQ"}}},"signed_curve25519:AAAAFA":{"key":"ek2i5syUUVxDYUt3rATxGi3Bb0Q63RyHVwVeZFCEuwA","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"3xhfu6T3RTnAFTgdUEHN0VIWWobdXSuqZZnps/kDxxVZ4D/0ZbS+ReT8FEv5rgQAsWDbMyeoPHFFAC+tMogrCw"}}},"signed_curve25519:AAAAFQ":{"key":"ODd13/pykK1k44dGCfJ/m3n2yn/yzI1cln8gJj/as28","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"agud642bMO/mIDjTElH0nJMa57zqn9lgUeqx5nINJTLNUkB0cyWX6aTMmz6qIWQQxeTpx6Bu1vvXj+0otasjBA"}}},"signed_curve25519:AAAAFg":{"key":"8KLyYNRreQvurI4k7VbD8mL3MMOBmUoNOr20if7tv2s","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"zKSZegaZ0X+9faLowWHhICiJzfr+YS0+i3t8AshciKn5phBHN7KWtsPAXBzOfH8xi85RuaP+z8yJPBptk8M2CA"}}},"signed_curve25519:AAAAFw":{"key":"CILqdPWmUUd29k2MmKoZQN2pMoaGJ0I/IsF1nYzlFz4","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"YWiiGm2dQJtS0+VD4w4llaJfXbCGbYI6DjxGPpjcEpfUuUtmMYXvz902+COMLG0PrmBjrxiD/pwrjNWWFqWiAg"}}},"signed_curve25519:AAAAGA":{"key":"DM1aAfQ42ZmHSff/YWsX/VB7/Ya3MrkZ38Ag7YSCO1A","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"krHvaclTqKt7v8Lg095z+M6u+lUhFU17SyOWInQmNSecrwjTj9sbZIp8esyUmk+HHZeUJBA68aiZZhPYBh20Ag"}}},"signed_curve25519:AAAAGQ":{"key":"zAUBQEn9CdGV82DdAfUV1+0TapfBpJEQJ6NSkHJjsl0","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"WlofeTrXTUF1ShpWmWzo3gBDgc4xqFUy7QNgvZSyNKzOVyfuZ/PnbKekuh9nOlNtH+eh94rkTBX3nibIR3TvCw"}}},"signed_curve25519:AAAAGg":{"key":"nKfqK5sAaXZqe414ppREhfbrsuWrxK0wXvbHwz3+5xk","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"8m3+/v6FWri1zC4JqvRBWOYFVxsCt0x3KaK/ysaB4UCF7em8Gg7J3NoirTWqkFJa5KefrV5gFyLUFUETLxm7AA"}}},"signed_curve25519:AAAAGw":{"key":"lYuENUBkg60ZfFpHL1ryTYj+s4nzqlS4oBa9Dl97XX8","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"zvbbvOGynqW2JmgFYaLzm+o3ODnWc3+YV933I3mb7izVV3WJq4edp3XHNnK4L0M06Tby4Mx8t6Sd9L9xgotiBA"}}},"signed_curve25519:AAAAHA":{"key":"7VsI90MQZLqTTjYEF9JnFIozzukI4lVS3r8ggGyVJEU","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"1B/6TKe+LGPg0qlegD54dzjPmnnxVLvVsOgftW7V0rZc0U2o/gB/U6Cb/0tNIjfz3UcRIJDLwhrKBztQw3G1Bg"}}},"signed_curve25519:AAAAHQ":{"key":"MnV1Q31o+Qqzm6OPAAwosoqTrJnMGgxOgImhMsZpU3k","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"Pjol0bHjXjuuAvZ7+IOXdqFEYLzIwEvhKwgXtIaH8F5foponesLT5QUtFmAI2zie5f5eOxNgvS4fueU6s8eeAQ"}}},"signed_curve25519:AAAAHg":{"key":"VxdJKZdskBhq2EADmdGks4qowNfJ6P0JHms2ikxhAxo","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"jPe3rDAFZTqXTgWHMIv91jYBytRtDAFDze6C1/DKedspHIwRCDXi9AdHswXfaQhqU2bjEtEYLtgbSR1ecjxkAQ"}}},"signed_curve25519:AAAAHw":{"key":"TNrjDAiiBIKQCIqXT/0jseLCRsSW2ULEBpjIOh3HLQE","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"RXr0s9Ur3aPlA2dAGke7hVEYWaTn5cCqm5qPAq2m6zrfmsgU2SwvurYaExIJhmp+hXOLKIp/wyfVYdEi0/e6Ag"}}},"signed_curve25519:AAAAIA":{"key":"yKI7144UYJV6/6Du3DnsQPamqb6I6X0a3GQUOU5eKg0","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"kq2DEmDRTRXh4kxd2cnK6BasfG6zmf10BxfVcF/IdE2LQtkweXN34mzZVkwB+z7LXVq9AFmLmXhFG1s/Gs8UBg"}}},"signed_curve25519:AAAAIQ":{"key":"2uencyYs+nZX8ZzTpC4Xt02tliaTUyhgAbu4bCUDJhc","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"NkSoIcDnm+NyfxzwiePG2+juH7wOCz1D0mmHQ2deQ/sLIKsVKWoc9X4JHVvzBwtI5yQ/48XEPKqWcUKLb8jmDg"}}},"signed_curve25519:AAAAIg":{"key":"A8d56OM60L540u+Usi7iW/hLwwMGBT6Z63bWvr27YGs","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"IAF7iZOy5FHBHLj9SWcpL+d1fR3/f8kpQZoAhrvW2Oe4qE6AzOQ9YG3ke6tSUdH7rSk/hlxbvg7y1n2ib/FuCg"}}},"signed_curve25519:AAAAIw":{"key":"ecXs+UXxuKLwJbMLzMcfgA4TK8zfXw3XFGwF9MqaK0Y","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"mlaHGdpne0jRQk87NY6zpL/KTk+Ird9dr43GeF55U8tQj84S5tZGwV6SjmBsJciil0c0LmrtI+pDiO4pHQgbAA"}}},"signed_curve25519:AAAAJA":{"key":"1sA872M0CnlfMk5TRQYlaZowXVmFWh2HxqRBUUif2H0","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"Z9GMAEmWMxYKc89rJGfNBi8ezYdfYr++fv4DiCB8rGB84GmLD27ZKVW54UL3HdVr7XIFxZ3d7sovgJPXrX3xCA"}}},"signed_curve25519:AAAAJQ":{"key":"eDTI7xQzkIEBPFOnseiEVtZRK1sHxsqAC6PZvi0weig","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"5z6j7BtamtgHIbkPoRpmhxE/+DFBxcgfoui/oMeZxPCyp8TNHFmPW5a541yjxsJA21QhaOHzldVUkMe77XY1CA"}}},"signed_curve25519:AAAAJg":{"key":"BBhasxucRIzFeTFC6Ray1RfnYybd5/udqEtz5mgv5kE","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"nvaXP3E5DyWRYeb2Krd1UjlQBCBTXpEexNLpF19R7OcLB7v+Ru/GX4kp7VdtP1mGT03BXXKRbS/V7oyOAStoCA"}}},"signed_curve25519:AAAAJw":{"key":"PEm2ufkmNxf+GkXAfYN6yviHXZSVJ/l2KcLTiNxtGQk","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"EtAMgTJqw9xUPvIi+N8Gc0ivE9/HXsaCQi8U0yYIJgXlAxzI7DjVvU7Enzn8IAJhin6q2foxNF/YPihEbAciBQ"}}},"signed_curve25519:AAAAKA":{"key":"H0FlaeUvyeuPuyc8SeuzDJy3X+yHXJw34fW9cbdkhGk","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"G6X9eYbQD7mneZS/0iofEhQLvfGsPFAZWe9MU/B3ZNROqwlc2bhRaF9CyS6mkMiUirG7beFVnxTW+e3j7JCLDA"}}},"signed_curve25519:AAAAKQ":{"key":"sTulSo8K4MsUMgt9Bmxevxs6Hf28O/MNKGPAKbENtD4","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"aSQR3Ere/6vj2ZEY+hw41dUAreu6pAx6KlIlC1VpR95x5HWK6Y4j2fhMgItnBqCgpoA0T5KrcURoPBly0XPyAw"}}},"signed_curve25519:AAAAKg":{"key":"kbXWYfOylk99sGlNzXJmaJV4oKaSfqI1QLD7SkIbvns","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"tJplw/to1caCXgT65zXXID7Qtaugxkz4SAabDwBjUsaq85wLlzbLJpMinzcHvXs1/lsdZZXPZe1SJCtUg3eWCQ"}}},"signed_curve25519:AAAAKw":{"key":"3mqPoiGYMyFsHITZ/ATexPIjYCjdVid0bMQxQ7Y9dQw","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"y0W4CgINzzy3NQvQn2pyrLNzYJ0k60tA8mljU8x8p+L0abLVzfRD6ZcTPGdHMH6j1sU86ZOuxH1CsP0sI7WFCg"}}},"signed_curve25519:AAAALA":{"key":"ZNx9bELYVyvaPiOrEzLiCEs0fLKoJoXOUC+P/qFyoR0","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"0/+YntlSJgcMiKHglmbPLvWZxQeDlyrOMMPn3CQ/NN7KIztZsoAu2MVf1V4+jcQbcbd1jawGslxsTqHDQk6FAA"}}},"signed_curve25519:AAAALQ":{"key":"1h0WpXIjFd/4fsMpQ20Tq3ce4JF0p49siPtVSSjG7g0","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"mj8x+REuu66n7snkrUGu/ceA5YleL77IHGyECSN4TfBKLP2i6ZIl2O7kgmZtfADoSldwur0aZdVbgFaNNEIoAw"}}},"signed_curve25519:AAAALg":{"key":"NM3v+nJM/jbVJNbNY8ofUVYK0nt7G1RB3axORYXuwis","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"sujLNGVpSUxc6gHtZ+ApGMO7C8ewgNLUTdQ8FtqPK1VdTf9vmrR2by+bUtJsCGUHPrp4FYp6lZ8JLA+gH3nMDg"}}},"signed_curve25519:AAAALw":{"key":"8K21eQ/4nmZCWi0FKpGGiH8KvE9an9KwBRSoJViNiWw","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"pbVYfmbEIw5e29zpR4Dxio9iGl1fg6klx/kvdGkI0uNQyZQ93ZBBCP8Nvt1uaokNh/9VLliePNMheJ8w9B8fDg"}}},"signed_curve25519:AAAAMA":{"key":"tWeoFzA88p221l1nnW7hBAJHz3JHaf0C+w9mzfMaAA4","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"/MVgctgj8ylcs19q48+lm8k3WzE4ISgg7CniKLZgMRp1F7ijZcl33UyxEQXQjY4wCPgY5ga18esg6+QQX+CUCQ"}}},"signed_curve25519:AAAAMQ":{"key":"w6A+By/vVN7n7MgOWkA4TRckrb8NXPdUXpNTIrNP8HQ","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"hMNF3FvBn2VcMalfqWYlHteaNft5UB1rtFCMnpTninQnzEDwJIVAt1XH0PpBWA+Z39v0CGHqX1WYWJua1j0MDA"}}},"signed_curve25519:AAAAMg":{"key":"FEuJXqwrmRyFPA/FrqiuaOYNb7WdIMIig5pNFuYqDHY","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"YOQPKqBDViEwU8HNrJ0bUJJVB9BQvvBnqhYaieNadx3YMH0uTj6XglpXkQiK3k/B1BZd3B8MPI3BUbAe2Yx2BA"}}},"signed_curve25519:AAAAMw":{"key":"uppJmTExk9I0ooGw6DNugoOSeeVzmoaAmcKMioTueCU","signatures":{"@whatsappbot:matrix.theocloud.dev":{"ed25519:PDSEQNSLKG":"n1yRSGVxqe1JCn57+u7qIv1oWCINXbfM6xv9Up3ja2D5Dm+Mrkt1TlVkMWNFnJB8C6sxWVdM1ykKUULDKQoOCg"}}}}},"time":"2026-03-06T19:09:37.010050246Z","message":"Request completed"} +{"level":"info","time":"2026-03-06T19:09:37.011569804Z","message":"Starting network connector"} +{"level":"debug","time":"2026-03-06T19:09:37.011627145Z","message":"Updating bot profile"} +{"level":"debug","component":"crypto","time":"2026-03-06T19:09:37.011644815Z","message":"Starting syncer for receiving to-device messages"} +{"level":"info","db_section":"whatsmeow","current_version":0,"oldest_compatible_version":0,"latest_known_version":13,"time":"2026-03-06T19:09:37.016022946Z","message":"Preparing to update database schema"} +{"level":"info","db_section":"whatsmeow","from":0,"to":13,"txn_mode":"on","description":"Latest schema","time":"2026-03-06T19:09:37.016100541Z","message":"Upgrading database"} +{"level":"info","db_section":"whatsapp","current_version":0,"oldest_compatible_version":0,"latest_known_version":9,"time":"2026-03-06T19:09:37.022093217Z","message":"Preparing to update database schema"} +{"level":"info","db_section":"whatsapp","from":0,"to":9,"txn_mode":"on","description":"Latest revision","time":"2026-03-06T19:09:37.022196793Z","message":"Upgrading database"} +{"level":"debug","component":"disappear loop","time":"2026-03-06T19:09:37.025014718Z","message":"Disappearing message loop starting"} +{"level":"info","time":"2026-03-06T19:09:37.025276627Z","message":"No user logins found"} +{"level":"debug","bridge_state":{"state_event":"UNCONFIGURED","timestamp":1772824177,"ttl":21600,"source":"bridge"},"time":"2026-03-06T19:09:37.025557113Z","message":"Sent new global bridge state"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":18,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/user/@whatsappbot:matrix.theocloud.dev/filter?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":13.266188,"status_code":200,"response_length":17,"response_mime":"application/json","req_body":{"account_data":{"not_types":["*"]},"presence":{"not_types":["*"]},"room":{"account_data":{"not_types":["*"]},"ephemeral":{"not_types":["*"]},"state":{"not_types":["*"]},"timeline":{"not_types":["*"]}}},"time":"2026-03-06T19:09:37.025538884Z","message":"Request completed"} +{"level":"info","time":"2026-03-06T19:09:37.025636175Z","message":"Bridge started"} +{"level":"warn","component":"backfill queue","time":"2026-03-06T19:09:37.025759167Z","message":"Backfill queue is enabled in config, but Matrix server doesn't support batch sending"} +{"level":"info","action":"resend bridge info","capabilities":true,"info":true,"time":"2026-03-06T19:09:37.025931817Z","message":"Resent bridge info to all portals"} +{"level":"debug","req_id":19,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsappbot:matrix.theocloud.dev/avatar_url?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":13.544021,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:09:37.028943345Z","message":"Request completed"} +{"level":"debug","transaction_id":"1","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:09:37.060765155Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1","time":"2026-03-06T19:09:37.060886261Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":20,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&timeout=0&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":36.633033,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:09:37.062498989Z","message":"Request completed"} +{"level":"debug","req_id":21,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/maunium.net/NeXNQarUbrlYBiPCpprYsRqr?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":5967.629242,"status_code":200,"response_length":96254,"response_mime":"image/png","time":"2026-03-06T19:09:42.996684335Z","message":"Request completed"} +{"level":"debug","req_id":23,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsappbot:matrix.theocloud.dev/avatar_url?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":7.375342,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr"},"time":"2026-03-06T19:09:43.004368869Z","message":"Request completed"} +{"level":"debug","req_id":24,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsappbot:matrix.theocloud.dev/displayname?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2.168183,"status_code":200,"response_length":29,"response_mime":"application/json","time":"2026-03-06T19:09:43.006903933Z","message":"Request completed"} +{"level":"debug","req_id":25,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsappbot:matrix.theocloud.dev/displayname?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3.929884,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"WhatsApp bridge bot"},"time":"2026-03-06T19:09:43.010960721Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":22,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_882_0_350_361_1_83_87_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30006.309021,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:10:07.069501612Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":26,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_882_0_350_361_1_83_87_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30006.251292,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:10:37.076284753Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":27,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_882_0_350_361_1_83_87_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.306936,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:11:07.082121722Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":28,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_882_0_350_361_1_83_87_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.420216,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:11:37.088137972Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":29,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_884_0_350_361_1_83_87_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.34591,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:12:07.094111275Z","message":"Request completed"} +{"level":"info","time":"2026-03-06T19:12:12.587285933Z","message":"Interrupt signal received from OS"} +{"level":"info","time":"2026-03-06T19:12:12.587428201Z","message":"Shutting down bridge"} +{"level":"debug","time":"2026-03-06T19:12:12.5875264Z","message":"HTTP listener stopped"} +{"level":"debug","component":"crypto","time":"2026-03-06T19:12:12.587584229Z","message":"CryptoHelper.Stop() called, stopping bridge bot sync"} +{"level":"debug","component":"disappear loop","time":"2026-03-06T19:12:12.58752172Z","message":"Disappearing message loop stopping"} +{"level":"warn","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":30,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_884_0_350_361_1_83_87_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":5493.18262,"time":"2026-03-06T19:12:12.587736276Z","message":"Request canceled"} +{"level":"info","component":"crypto","time":"2026-03-06T19:12:12.587781673Z","message":"Bridge bot to-device syncer stopped without error"} +{"level":"info","time":"2026-03-06T19:12:12.594444483Z","message":"Shutdown complete"} diff --git a/matrix/mautrix-whatsapp/logs/bridge.log b/matrix/mautrix-whatsapp/logs/bridge.log new file mode 100644 index 0000000..1e49dba --- /dev/null +++ b/matrix/mautrix-whatsapp/logs/bridge.log @@ -0,0 +1,16869 @@ +{"level":"info","name":"mautrix-whatsapp","version":"v26.02+dev.178c04aa","built_at":"2026-02-18T14:02:06Z","go_version":"go1.26.0","time":"2026-03-06T19:12:13.082186938Z","message":"Initializing bridge"} +{"level":"debug","time":"2026-03-06T19:12:13.082260343Z","message":"Initializing database connection"} +{"level":"info","time":"2026-03-06T19:12:13.082490473Z","message":"Starting bridge"} +{"level":"info","db_section":"main","current_version":26,"oldest_compatible_version":9,"latest_known_version":26,"time":"2026-03-06T19:12:13.084828651Z","message":"Database is up to date"} +{"level":"info","time":"2026-03-06T19:12:13.084880754Z","message":"Starting Matrix connector"} +{"level":"info","db_section":"matrix_state","current_version":10,"oldest_compatible_version":3,"latest_known_version":10,"time":"2026-03-06T19:12:13.085092585Z","message":"Database is up to date"} +{"level":"debug","time":"2026-03-06T19:12:13.085122617Z","message":"Starting appservice HTTP server"} +{"level":"debug","time":"2026-03-06T19:12:13.085146364Z","message":"Checking connection to homeserver"} +{"level":"info","address":"0.0.0.0:29318","time":"2026-03-06T19:12:13.085390742Z","message":"Starting HTTP listener"} +{"level":"warn","req_id":1,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp 192.168.96.6:8008: connect: connection refused","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":4,"time":"2026-03-06T19:12:13.107578923Z","message":"Request failed, retrying"} +{"level":"warn","req_id":1,"error":"Get \"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev\": dial tcp 192.168.96.6:8008: connect: connection refused","method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","retry_in_seconds":8,"time":"2026-03-06T19:12:17.109017276Z","message":"Request failed, retrying"} +{"level":"debug","req_id":1,"method":"GET","url":"http://synapse:8008/_matrix/client/versions?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":51.774681,"status_code":200,"response_length":1211,"response_mime":"application/json","time":"2026-03-06T19:12:25.161131858Z","message":"Request completed"} +{"level":"debug","req_id":2,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/account/whoami?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1.39894,"status_code":200,"response_length":64,"response_mime":"application/json","time":"2026-03-06T19:12:25.16284879Z","message":"Request completed"} +{"level":"debug","txn_id":"mautrix-go_1772824345162911718_1","time":"2026-03-06T19:12:25.166840972Z","message":"Received ping from homeserver"} +{"level":"debug","req_id":3,"method":"POST","url":"http://synapse:8008/_matrix/client/v1/appservice/whatsapp/ping?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":6.479963,"status_code":200,"response_length":17,"response_mime":"application/json","req_body":{"transaction_id":"mautrix-go_1772824345162911718_1"},"time":"2026-03-06T19:12:25.169493162Z","message":"Request completed"} +{"level":"debug","txn_id":"mautrix-go_1772824345162911718_1","duration_ms":4,"time":"2026-03-06T19:12:25.169549943Z","message":"Homeserver -> appservice connection works"} +{"level":"debug","component":"crypto","time":"2026-03-06T19:12:25.169580255Z","message":"Initializing end-to-bridge encryption..."} +{"level":"info","db_section":"crypto","current_version":18,"oldest_compatible_version":15,"latest_known_version":18,"time":"2026-03-06T19:12:25.169818836Z","message":"Database is up to date"} +{"level":"debug","component":"crypto","device_id":"PDSEQNSLKG","time":"2026-03-06T19:12:25.16990565Z","message":"Found existing device ID for bot in database"} +{"level":"debug","req_id":4,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/config?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2.535203,"status_code":200,"response_length":26,"response_mime":"application/json","time":"2026-03-06T19:12:25.17232715Z","message":"Request completed"} +{"level":"debug","req_id":5,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/login?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2.495882,"status_code":200,"response_length":78,"response_mime":"application/json","time":"2026-03-06T19:12:25.172559655Z","message":"Request completed"} +{"level":"debug","req_id":6,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/login?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":19.453787,"status_code":200,"response_length":174,"response_mime":"application/json","req_body":{"type":"m.login.application_service","identifier":{"type":"m.id.user","user":"@whatsappbot:matrix.theocloud.dev"},"device_id":"PDSEQNSLKG","initial_device_display_name":"WhatsApp bridge"},"time":"2026-03-06T19:12:25.192369149Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","user_id":"@whatsappbot:matrix.theocloud.dev","device_id":"PDSEQNSLKG","time":"2026-03-06T19:12:25.192450097Z","message":"Stored credentials after login"} +{"level":"debug","component":"crypto","device_id":"PDSEQNSLKG","time":"2026-03-06T19:12:25.192478662Z","message":"Logged in as bridge bot"} +{"level":"debug","machine_ptr":"0x8888bca000","account_ptr":"0x8888cce420","olm_driver":"libolm","time":"2026-03-06T19:12:25.192937037Z","message":"Loaded olm account"} +{"level":"debug","component":"crypto","time":"2026-03-06T19:12:25.19296225Z","message":"Making sure keys are still on server"} +{"level":"debug","req_id":7,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/keys/query?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":18.367391,"status_code":200,"response_length":649,"response_mime":"application/json","req_body":{"device_keys":{"@whatsappbot:matrix.theocloud.dev":["PDSEQNSLKG"]}},"time":"2026-03-06T19:12:25.211631709Z","message":"Request completed"} +{"level":"info","time":"2026-03-06T19:12:25.211759101Z","message":"Starting network connector"} +{"level":"debug","time":"2026-03-06T19:12:25.211810296Z","message":"Updating bot profile"} +{"level":"debug","component":"crypto","time":"2026-03-06T19:12:25.211837045Z","message":"Starting syncer for receiving to-device messages"} +{"level":"info","db_section":"whatsmeow","current_version":13,"oldest_compatible_version":8,"latest_known_version":13,"time":"2026-03-06T19:12:25.212261058Z","message":"Database is up to date"} +{"level":"info","db_section":"whatsapp","current_version":9,"oldest_compatible_version":3,"latest_known_version":9,"time":"2026-03-06T19:12:25.212618929Z","message":"Database is up to date"} +{"level":"debug","component":"disappear loop","time":"2026-03-06T19:12:25.212922673Z","message":"Disappearing message loop starting"} +{"level":"info","time":"2026-03-06T19:12:25.213545177Z","message":"No user logins found"} +{"level":"debug","bridge_state":{"state_event":"UNCONFIGURED","timestamp":1772824345,"ttl":21600,"source":"bridge"},"time":"2026-03-06T19:12:25.214861284Z","message":"Sent new global bridge state"} +{"level":"info","time":"2026-03-06T19:12:25.214951311Z","message":"Bridge started"} +{"level":"warn","component":"backfill queue","time":"2026-03-06T19:12:25.215046506Z","message":"Backfill queue is enabled in config, but Matrix server doesn't support batch sending"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":8,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/user/@whatsappbot:matrix.theocloud.dev/filter?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":9.441274,"status_code":200,"response_length":17,"response_mime":"application/json","req_body":{"account_data":{"not_types":["*"]},"presence":{"not_types":["*"]},"room":{"account_data":{"not_types":["*"]},"ephemeral":{"not_types":["*"]},"state":{"not_types":["*"]},"timeline":{"not_types":["*"]}}},"time":"2026-03-06T19:12:25.221803952Z","message":"Request completed"} +{"level":"debug","req_id":9,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsappbot:matrix.theocloud.dev/avatar_url?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":6.057907,"status_code":200,"response_length":59,"response_mime":"application/json","time":"2026-03-06T19:12:25.2231686Z","message":"Request completed"} +{"level":"debug","req_id":11,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsappbot:matrix.theocloud.dev/displayname?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":5.837834,"status_code":200,"response_length":37,"response_mime":"application/json","time":"2026-03-06T19:12:25.229273929Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":10,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_884_0_350_361_1_83_87_0_1_1_1&timeout=0&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":24.678896,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:12:25.246850497Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":12,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_885_0_350_361_1_83_88_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.671995,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:12:55.2540637Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":13,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_885_0_350_361_1_83_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30006.200894,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:13:25.260853922Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":14,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_885_0_350_361_1_83_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.544493,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:13:55.265891432Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":15,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s464_886_0_350_363_1_83_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.365668,"status_code":200,"response_length":143,"response_mime":"application/json","time":"2026-03-06T19:14:25.272176573Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":16,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s478_886_0_352_367_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30010.210999,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:14:55.282997924Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":17,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1045_907_0_353_370_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.533955,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:15:25.288185254Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":18,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1670_914_0_364_383_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.419825,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:15:55.293123029Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":19,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1870_935_0_367_390_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.189876,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:16:25.297816957Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":20,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1877_935_0_374_401_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30003.758757,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:16:55.302141225Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":21,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1878_938_0_375_405_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.021703,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:17:25.30768863Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":22,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1885_938_0_382_417_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.130616,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:17:55.312450969Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":23,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1888_941_4_384_427_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.245294,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:18:25.317692772Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":24,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1889_942_6_385_431_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.357636,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:18:55.323972604Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":25,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1891_946_6_387_433_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.827461,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:19:25.329487033Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":26,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1891_946_6_387_434_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2745.64087,"status_code":200,"response_length":1224,"response_mime":"application/json","time":"2026-03-06T19:19:28.076010848Z","message":"Request completed"} +{"level":"debug","transaction_id":"1210","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:19:28.080189438Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1210","time":"2026-03-06T19:19:28.080587888Z","message":"Finished dispatching events from transaction"} +{"level":"debug","req_id":28,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/join?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":39.668212,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:19:28.121144772Z","message":"Request completed"} +{"level":"debug","req_id":29,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/state?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":13.135575,"status_code":200,"response_length":-1,"response_mime":"application/json","time":"2026-03-06T19:19:28.135295922Z","message":"Request completed"} +{"level":"debug","transaction_id":"1211","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:19:28.136640106Z","message":"Starting handling of transaction"} +{"level":"debug","time":"2026-03-06T19:19:28.136906344Z","message":"Accepted invite to room as bot"} +{"level":"debug","component":"crypto","error":"no group session created","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","time":"2026-03-06T19:19:28.137574525Z","message":"Got error while encrypting event for room, sharing group session and trying again..."} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","account_id":"","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","signing_key":"2o86b04NjjxrT/KU4mZLeKxq8zZaf8y6BISpdR88Aks","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","received_at":"2026-03-06T19:19:28.138620901Z","max_age":604800000,"max_messages":100,"is_scheduled":false,"key_backup_version":"","time":"2026-03-06T19:19:28.138732858Z","message":"Upserting megolm inbound group session"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","max_age":"168h0m0s","max_messages":100,"is_scheduled":false,"time":"2026-03-06T19:19:28.139182921Z","message":"Received inbound group session"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","users":["@theo:matrix.theocloud.dev"],"time":"2026-03-06T19:19:28.139315412Z","message":"Sharing group session for room"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","target_user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:19:28.139528151Z","message":"GetDevices returned nil, will fetch keys and retry"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","users":["@theo:matrix.theocloud.dev"],"time":"2026-03-06T19:19:28.139591638Z","message":"Fetching missing keys"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","users":["@theo:matrix.theocloud.dev"],"time":"2026-03-06T19:19:28.139664483Z","message":"Querying keys for users"} +{"level":"debug","transaction_id":"1211","time":"2026-03-06T19:19:28.139989319Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":27,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1899_949_6_387_435_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.627519,"status_code":200,"response_length":238,"response_mime":"application/json","time":"2026-03-06T19:19:28.147163302Z","message":"Request completed"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","req_id":30,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/keys/query?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":7.218402,"status_code":200,"response_length":4906,"response_mime":"application/json","req_body":{"device_keys":{"@theo:matrix.theocloud.dev":[]},"timeout":10000},"time":"2026-03-06T19:19:28.147360466Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:19:28.147623","changes":["@theo:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:19:28.147645283Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:19:28.147623","time":"2026-03-06T19:19:28.148096883Z","message":"Finished handling device list changes"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","user_id":"@theo:matrix.theocloud.dev","new_device_count":6,"old_device_count":0,"time":"2026-03-06T19:19:28.149932755Z","message":"Updating devices in store"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","user_id":"@theo:matrix.theocloud.dev","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","time":"2026-03-06T19:19:28.156326111Z","message":"Invalidating group session in room due to device change notification"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","device_count":6,"target_user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:19:28.157544369Z","message":"Got device keys for user"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","time":"2026-03-06T19:19:28.157609252Z","message":"Creating missing olm sessions"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","req_id":32,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/keys/claim?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":7.759051,"status_code":200,"response_length":1606,"response_mime":"application/json","req_body":{"one_time_keys":{"@theo:matrix.theocloud.dev":{"HJDBKJHAMT":"signed_curve25519","JBMCELZDNB":"signed_curve25519","RKNFVHOUTT":"signed_curve25519","WZHBOGMGVU":"signed_curve25519","XVKVQEOXWJ":"signed_curve25519","ZIZEDCTNBL":"signed_curve25519"}},"timeout":10000},"time":"2026-03-06T19:19:28.166093545Z","message":"Request completed"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","peer_user_id":"@theo:matrix.theocloud.dev","peer_device_id":"ZIZEDCTNBL","peer_otk_id":"signed_curve25519:AAAAAAAAAAI","time":"2026-03-06T19:19:28.168419779Z","message":"Created new Olm session"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","peer_user_id":"@theo:matrix.theocloud.dev","peer_device_id":"HJDBKJHAMT","peer_otk_id":"signed_curve25519:AAAAAAAAAAI","time":"2026-03-06T19:19:28.170679245Z","message":"Created new Olm session"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","peer_user_id":"@theo:matrix.theocloud.dev","peer_device_id":"JBMCELZDNB","peer_otk_id":"signed_curve25519:AAAAAAAAAAQ","time":"2026-03-06T19:19:28.17258901Z","message":"Created new Olm session"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","peer_user_id":"@theo:matrix.theocloud.dev","peer_device_id":"RKNFVHOUTT","peer_otk_id":"signed_curve25519:AAAAAAAAAAY","time":"2026-03-06T19:19:28.174415314Z","message":"Created new Olm session"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","peer_user_id":"@theo:matrix.theocloud.dev","peer_device_id":"WZHBOGMGVU","peer_otk_id":"signed_curve25519:AAAAAAAAAA8","time":"2026-03-06T19:19:28.176162487Z","message":"Created new Olm session"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","peer_user_id":"@theo:matrix.theocloud.dev","peer_device_id":"XVKVQEOXWJ","peer_otk_id":"signed_curve25519:AAAAAAAAAAU","time":"2026-03-06T19:19:28.177908193Z","message":"Created new Olm session"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","req_id":33,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/keys/query?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":5.977376,"status_code":200,"response_length":649,"response_mime":"application/json","req_body":{"device_keys":{"@whatsappbot:matrix.theocloud.dev":[]}},"time":"2026-03-06T19:19:28.184426497Z","message":"Request completed"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","target_user_id":"@theo:matrix.theocloud.dev","olm_session_count":6,"withheld_count":0,"time":"2026-03-06T19:19:28.187409458Z","message":"Completed post-fetch retry of finding olm sessions"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","recipient_identity_key":"pEXI7qVGWTu835Ng4l+SFuhoRp5vTeiQVRHuJTTM/Eo","olm_session_id":"JcH5ZFlsYZEx0MIcfVwOXAzelwNXrKFWrZAOZXBSBMM","olm_session_description":"sender chain index: 0 receiver chain indices: skipped message keys:","time":"2026-03-06T19:19:28.187687151Z","message":"Encrypting olm message"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","target_user_id":"@theo:matrix.theocloud.dev","target_device_id":"XVKVQEOXWJ","target_identity_key":"pEXI7qVGWTu835Ng4l+SFuhoRp5vTeiQVRHuJTTM/Eo","time":"2026-03-06T19:19:28.188036083Z","message":"Encrypted group session for device"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","recipient_identity_key":"Qplzw30/t43HImcYdptKsUgfeY94D5RrI8rlHjrNY1g","olm_session_id":"/DdW8ZCLv78MsFELaCQk/n84dc47rLS9wtwPpJMyOko","olm_session_description":"sender chain index: 0 receiver chain indices: skipped message keys:","time":"2026-03-06T19:19:28.188129531Z","message":"Encrypting olm message"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","target_user_id":"@theo:matrix.theocloud.dev","target_device_id":"ZIZEDCTNBL","target_identity_key":"Qplzw30/t43HImcYdptKsUgfeY94D5RrI8rlHjrNY1g","time":"2026-03-06T19:19:28.188483562Z","message":"Encrypted group session for device"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","recipient_identity_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","olm_session_id":"egC94gb7m37oLBRE+btlutn40hE5rqs6UEfmuB/5svk","olm_session_description":"sender chain index: 0 receiver chain indices: skipped message keys:","time":"2026-03-06T19:19:28.188576033Z","message":"Encrypting olm message"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","target_user_id":"@theo:matrix.theocloud.dev","target_device_id":"HJDBKJHAMT","target_identity_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","time":"2026-03-06T19:19:28.188957022Z","message":"Encrypted group session for device"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","recipient_identity_key":"C8I3SHmLd6e/gsVQP5z9CEzXi+RWFOOZtE0PZORgQDQ","olm_session_id":"tlX9kwjk6qtSyS/aj7RnZ96mmGHJN/Fu6r5KcM1q31g","olm_session_description":"sender chain index: 0 receiver chain indices: skipped message keys:","time":"2026-03-06T19:19:28.189051937Z","message":"Encrypting olm message"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","target_user_id":"@theo:matrix.theocloud.dev","target_device_id":"JBMCELZDNB","target_identity_key":"C8I3SHmLd6e/gsVQP5z9CEzXi+RWFOOZtE0PZORgQDQ","time":"2026-03-06T19:19:28.189403384Z","message":"Encrypted group session for device"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","recipient_identity_key":"YEgoFZ1Lc6fdY2Im0NZpQUeD+x/UTjKXuBg4XzqyjiI","olm_session_id":"sTc5vHXmdgFzS/1WfQaPS52Xyzo0CdPREE3lFySV16A","olm_session_description":"sender chain index: 0 receiver chain indices: skipped message keys:","time":"2026-03-06T19:19:28.189482864Z","message":"Encrypting olm message"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","target_user_id":"@theo:matrix.theocloud.dev","target_device_id":"RKNFVHOUTT","target_identity_key":"YEgoFZ1Lc6fdY2Im0NZpQUeD+x/UTjKXuBg4XzqyjiI","time":"2026-03-06T19:19:28.189809586Z","message":"Encrypted group session for device"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","recipient_identity_key":"xc33/ogyctjjCeBqp6FuSLm/CGxOrvEDjE391vlOUFU","olm_session_id":"w+o2Rptw1piV7LsUfZDEo61BA98Np/3RbJ7lHeEfP24","olm_session_description":"sender chain index: 0 receiver chain indices: skipped message keys:","time":"2026-03-06T19:19:28.189915886Z","message":"Encrypting olm message"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","target_user_id":"@theo:matrix.theocloud.dev","target_device_id":"WZHBOGMGVU","target_identity_key":"xc33/ogyctjjCeBqp6FuSLm/CGxOrvEDjE391vlOUFU","time":"2026-03-06T19:19:28.190252176Z","message":"Encrypted group session for device"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","device_count":6,"user_count":1,"time":"2026-03-06T19:19:28.190305466Z","message":"Sending to-device messages to share group session"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","req_id":34,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/sendToDevice/m.room.encrypted/mautrix-go_1772824768190377613_1?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":7.742708,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"messages":{"@theo:matrix.theocloud.dev":{"HJDBKJHAMT":{"algorithm":"m.olm.v1.curve25519-aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","ciphertext":{"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4":{"body":"Awog0YQCuvIPKFx4KRmKbwR74Lk7/5kctglmCXyBTsXC8yQSIIlFu1bmN3USReysfgnnltMvVP3UFmDWqos/XfNgFJF8GiAWfXgyj7JPMbRnfvYSTqVLUj98IfNk+FVDsUtczBjCPyKABwMKIAlkFQEO3KbixBlCmERaaibkQQehXeZaxcrajH0LWJkSEAAi0AZWmPAo4Ip/FQLISYi3dYaCwDj9sdAaSVGQ/NW2qoGbwP3wj4CzBUSJ0ypfkDZm245btM902iPC8QuLFzC7zeCExMJ9B+W90dIae8PpG+a8FQrTJF9ltEKCy9FetdxVEc2huB4lD7JaZZAKANPZbs7yyaIuhnfKRxfDw81bC1ivxP6bJlC9LAz2ITK32AsKXNeO/EL5wPC0FjTnFAYbhBg5l9zXEf1HpqzKfcwE4aXFrS5zV4okVf4HxMs2si9cRmnlovbNeJmH5lTvV9zqQeqDpVDv6PS1ycQgiULpIXJOqwiW3jGuOHBzghT1bUO5PXmy0jdejraFTeAPtAuAJa4lnsBQ88rMswb0D377UgGKuznmK0TV9lzA/tmVatlUXIz2qHsTHPZrNsxFGhGDJGuYDSvnq9Ys8+oL3KDVZDG/hqy/7wsqr4nGfjy5mhclETJm8lFC7/PNBY4igpq5PZI64jMSnuWOVSoGg5VpjX6O9vVaCJzt9VywFf5pmYCC05pK1FWLpFRwhBriTVDn8SPj+vckj0mKXkOSIpCDqgrZ7rr7DhlH+q6jvn2uyd/ExIJVwpNHi1YGESXuSgwFEa/G22PSGsGrUlgcnsTFyV3kvvbLJ/j4O6A6fVZYPR+nVr4TJLpqdeVNAI8iCdZjVC5XsXO42t9JvT4QatcyPNE05eq6JfJbFFhMw/SOf78vDvZPth6Bq29XIy34qGjXXFu4ljpfgV/TW2qRiiAoIMRsGrD/ZN8CNmqi2mTGh/kg52Pkrl8dNj80B1TjtePhH94hBc0M+Ru/+MIBqWA0E3YwDRVYDZyZv1rpZMdW5eauyO6K1A4jR6SCf+3jgiUB9rVeT/Th6QgxJhWDKZN4LfqNCB2vztO4Fj96RLncdPcv4591akn9WkhDpsc05WLQ1TCGz38AOnhPiuK97awZbmdeClGxPXW7IMko/XWQQF45VrbZR0Q+OdRjEYagZNZo7GdDZA4OK5Vd/w4BjQvuggRQ8qfK+m2DOqoGuInkK7basUmALKzQJ4mjorIsCOl6LLopLHAxwGb4FAkC0odv2j1XyUQb/sl7J2ALqf6nzcEZXpWhup+ZFnnCD4/NFwvKsw9DyWvxdF4yDws25IQe2zX7cYttWJ3zG0O1","type":0}}},"JBMCELZDNB":{"algorithm":"m.olm.v1.curve25519-aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","ciphertext":{"C8I3SHmLd6e/gsVQP5z9CEzXi+RWFOOZtE0PZORgQDQ":{"body":"Awog/Fz+KyVuyPWjkbBisL/OnsOR+5gyTIT89yDUXPlHTWkSIPSaOEN1WvX7rhSEMCJ2pkJtLEWN7iJz8e7yNAy8W5Z7GiAWfXgyj7JPMbRnfvYSTqVLUj98IfNk+FVDsUtczBjCPyKABwMKIOunqVTxPRH6OHCWbwg8tYn7PgMMN7yseQ+8a30zcKMFEAAi0AYpYrdOKb7TREUtpkSpoDSYPV/iaUGwBqxQnk3amp2lnIKZIekJ8sDl2mbHt4uTjdiP9IkWmp0X2uvX3OLKkcKkqBj9q1ymJIpeBg+AOwdpey5OcnRgZX0LBLvJS2twN/aO2JFkk/a/b0MeMhXKSgM0G0aRI3w7p6aNTy17afugRosMv4LKYvt8rj/AXbujl/t0tQwjWyll+jYrTKLjSewtMi1Fql38Mg11HDR+QoTohdlWjb95aJM+MODDSjXmvqZ/0xazUFj/+KQV8xwKjjfwFAe+jldIx3d4hckHH6ANOefHQZNb56zLIW/t4sUyVrC7nT41+/YTiUpa2VXVPHKbOYCwBOgnuvj8Zub2uX8BT+IzaZJvoRv9YavCZI3t6+seZ9KMKzIukZUObhrs4/A9m6ozly4UK665wTdGiCjSOd8ct6l5qWkPZCojGb93PEtnetA5HvoYuoZQF1klDsGv8Cf1yg/k52c/pb5WBLFv9/P6i5ljuPzhVnAIeA8H5qB6Q8hwD8ILQR7SHCKzrHB8cnwuiqMDNfn+JdjiyrJANg6SNEUTVg9e8LzUUJP/mOFPXR5HsErD7kKMldgrc+PJk5kxprD1GGoLy9elVNXSDcDWLy45y+a3sCh2RyXjz4CQejzvY79ngZEE3mdv32L8L4R584762c4vXwHIfMu7ou+itNKI0fphMxNEM6TWUslIRKcQ+yD61fPGaz77HgNf1NGJv2e2roI7SKcv+7bYaQNoZdUfBH76abUFCaqL2dcRqPkdaAwjJOZxUYM35cA/eTy3Yd2bmw7cHCFr8atjcT0qHZDf65Sr0qSAWT3dqETrqdJ5p7KysMXVdoGyfHOqRYBjkxuVoRB/xJrTAXd2RixoeiwcIZYqTy+1myrLZm6o/kotmyvg0X4kJX/wzMYI3toCqAIJ2GQJBC+DUpgv68dyOysXLKMi0XfhDgBQ4vfz4NUR7m0LVocaO1sWqC7ARALQ/vvGauClgL6VBZdk3oGezL6b0rA9sNmw8Y7m/HUTikDdgeUXzXgXQ8KmxGHUiP38PSUwvvLn1hv6sBb3FZQJlaHvPJ6StNLjEjqiVT3hBUP0i7C/YvKOdsiHXp3widsEpoZ+rWUxC79ZLg8WWwdPnE12axIx","type":0}}},"RKNFVHOUTT":{"algorithm":"m.olm.v1.curve25519-aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","ciphertext":{"YEgoFZ1Lc6fdY2Im0NZpQUeD+x/UTjKXuBg4XzqyjiI":{"body":"Awog2IvlSuxQlelI7VIK2u2pibFCvRPzpRNUCoE3/W/cXksSILxjRHCEb2EtQWFsVuybHZnFSKsCVyXCCY6Ppow5DHVrGiAWfXgyj7JPMbRnfvYSTqVLUj98IfNk+FVDsUtczBjCPyKABwMKIGEjTZPTyrp2v11ONP9zw5EDGkbA3JKgf4qJ1z8a+2gTEAAi0AY8/q3hG1kQloMAlYd5nJclxWb3Rjz7O58dgQGO+5GkEWDI+mQrb2nvUd8N9oicKgy7ISGZ34q7kEXVNjCX1poDBLKlgJhp34DkaOgFPriyujwOXtQowbJP82Icr26ewzyaVeyJnDkFt9K+mLpuzEKPI3PxFZ+90lHP09FSSRPp7Cie4HeWxRVIA2gw9hIdrO5RLEFYyLINo0Hu06OgPKdJR+ZW5nSQtZf/KjWewb386rKU0NJ9TRNQxRfGsjd8e2HJLza7Yb0zHi3GjagvUxBLpMg/umypF77P6JE6UaFYpDAl5UJPFDYN87kL8Lh7W1XSwOPHJovppJypj+GenSxgCvSUCf6WDOSIm/Sgru3txBc+83X+cW0FjPX30T/gosbJJSyO4VPZUC3rkU9sVcppdxcEGa1YzX/JxvM+1n8gUr7vc8cIQkzXAdFYfVI3uJG8KDSzNbfBiM+pN+SsyfmfRKvQyJtK/A7Td6edbMPbQMb5tF3eCA8FCH7Wox3US1NSkgIVY2HU7QvrIT5pUT2/kr6sLHpHuigWqz0woNa29kmCro6cHLIyxZOAJOEdXmXGy4vdTet5uJdl89MXNy1+Xhw+4AuZ5q5pVZJsYu21JzS+ahsHN/XRTXxX2BC6UflxFTlkg2cgvYrdp6G6+iYHoDYg1uG5xFj/7nX674/u8HlslS9VV+moHORGglnAdMZyuxK6arSTAes+JLqk5hhG+p36wek8TiPdijmU7jgG3+Wz9hi19cqEtTQX6o3zuwmuCa3IBZjeTuqAAes6rjOydNx3H29ui5tqjLBclByYy5u8S4gFWWE8zwUiCMljI3mdO/3/8wVZCc3gXDlls/Tha122Vr8MYbfGAHptjIgn3YWNsdeAQZ+6XHzAeeYXpy8L/3/b8i9SpHplRAgEvLTuROHFtpzaKnH/LRateWo9Ox8Nkmuof6qlrTszUoGB1KqxZwZwvkF/XG5H1JZvVnFChLUMprhBZfpC9PTPIFgtnbA0fvjHbswVvWkn+JDC/xuzLpykctxJYtMxvHT/Mj5pcHWcCqxqyD78EDcD9NKXcmJQKxaQdR0oFqAZ+Uo7lWSIFMjqaMsd76K8VybhK+4SVLqfi6NZioBm21uUA+gcZznDtC9y8tBb","type":0}}},"WZHBOGMGVU":{"algorithm":"m.olm.v1.curve25519-aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","ciphertext":{"xc33/ogyctjjCeBqp6FuSLm/CGxOrvEDjE391vlOUFU":{"body":"Awog0FhFlLHax7bInsm4BtTUIJcHSuQq1GIwhDUEM+HSkwESIBgJAGgMcMk2iJpEhnk3MvD4f2dTKvwtIqnu2Yx4BhhsGiAWfXgyj7JPMbRnfvYSTqVLUj98IfNk+FVDsUtczBjCPyKABwMKIAwuHg0bWY4P/VFVtR47KvX/WfnGF7vEnkTNeQPcOCdcEAAi0Abzm9uQjtLBe+kGECa6nyxCdrCJ9BzXxWtWjqEXvqsp5n/IBEcVeWSoEm7bbfaQMqv2Gq2NKMKt09m0J0NZSnpzLrPB36r7JkBAAf7jEbYsjfcTghXdT9b1CDcQSD5rCk5p2uJI+DEHjDMxzrIoKKp0HAjwFQ88HbO/pXvfhEtqszU/dq2nduDpFLdMzPo1Jyo56eVaH9fwDqU5R1Jy1o4Eh4RL2of8NZTs0j8UKdSTVhg2U9EF2oZEC71SRB0luqZBgJft0WcABsmF5Vpnr2OIYV5JDx6SsUBEfIPXIyl2E60OzHLs3iuplJfTj2uoaatrIBljatvNnKrLV1Bgqp5to0oQFkdckhps5NVuwXGONFqCbOLUC/wOUW1hi54COdQYXi50QV/MHWWOtkb8OSRb/FdecZu2xSpqYM5OdCDDRdhNSSvdoprBtFnaJnQaf5ODayLFNKkRDqIQmjBklQvUP0zKf7XYOZe1w5EmK/0O60Y9T/q5xxnUE8kxV3dRk7lt5d/Mi+oeadU5XFHuMJXL2F20nDGPuYMwTZ+/irkyeVbx59gMsfLWpyYsMcjRRUCs7J8qXRwvAQ7TL9FQXZbM6EouyTkvl537alOWiKJtCrqxwkfPv9hA7vgvPjdNrzymj2TL1TIzUDoAQ+2eu8hY8vBgkihgSEx2ASbUVNxkVUQCuZgve4h70gJ4M1xwnQJ/QXz2K2SREM9dTa5slwiQ9nMU7OD4wVaoQT4IdZr/vdXzJYZUkIc9SsAgxsSlrDGNFDTqV8G1tkxDhkV6G7FOtKlkXqPlOycPj7QDn3K6DwD0J3h6AuIHtRpJkpegDDcmISS+MbAUWGU7+1wzi1+GuR8ZrhCqfYjsOzICQlrg7KDQqNmHVlIgn5ybt2rPvfDYn1AjQ1BhUnoUnLhLKnp9ZjS4VbRbfe9vi375d95zqedr3V1fM01b+Kv23ep0b3naxvR5V0R1QaPeHcZJjhhT74+Rlq2JVzzqxpMVYzxoYyUSwMwyS8zGJOiQtiy8cy837SMcUb9cg8goO4EonD8sOiymwJCJEaIf4SqJN5+6n5k4723FB/upSUn+5dDOkdpBQte8RfhisKJTeGh5Miewgy0c8J6wGTj2rJLWyK4xw2Z8OsfQfTPl","type":0}}},"XVKVQEOXWJ":{"algorithm":"m.olm.v1.curve25519-aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","ciphertext":{"pEXI7qVGWTu835Ng4l+SFuhoRp5vTeiQVRHuJTTM/Eo":{"body":"AwogzHQkQsuhOnan3xm0VmrVgG+5QpkbXzDeYxoq0Y2W0Q4SIKW4h8ldYyHU/bvsd9MgoOcCCx0c2mc6hKGbeGNDMcJJGiAWfXgyj7JPMbRnfvYSTqVLUj98IfNk+FVDsUtczBjCPyKABwMKIKlNfRQcBOzGKkIpAD0p2VIhv8XbYCh2EXECbAQm8UxWEAAi0Aa5uH+IxBdX0R5jtPo8CWbI0gQwcVv3MliHEydoE1xNttxpt9FlvqMEo2K/Cih7SgT5qiEErncTnkU1w0rJxsiyWF7bglWa3nPpjIV4+GPOrBWGxREI3p4j5g0P8w+nfeNJ8y0EljTul89sfiNbQaXSJ57WxNXhDU4lgsWgHpRmiFQmZIVQ4c5LvsApMfcsbPXf6WY/HYYao0bYuJRbGPLpCCIcYqx30RV9hd/9BaHyt5a42g8ep84+A77sTj3coLhCOk8/NaB1HlPSreOqfm9GruyrsJQBvwmcJXvgsjrnL+oXDsyIm9t2lFH697+A540+B0aaI9rbFN58Wa9HHXAAqhke6VmGg3OOkZkJT4NhrDn2OzGnY/P0+QEf2DpYyaMkGlSRWZXM3+LTJmW2k+FTHLNnq4WBuw9buI2HO/onzJE2MkiZT56wVGNgY2bYGkAPx2jQu1O7hngGluHkizBkvcIGXI2aoA0v1nZd1txcpeml0VLspsuj42kQu7kGcfHyn5zE0dw7kCMU/TFo88brbsWGewgrxj0czFt/ZZgpQ7QgM4uz+uQKSaxhyCsOkr5xVl5UDYFEihyN3QZzVadbNz9Ee24CJjMOwS9SoOnTnBX8ao/aKCVjYg2MYsDLODb/QEZnQBGS3NcHEha+It5dcQNexgTYRSWxE3gIkXVEZe9+3oamM9BiIFDvpm/8v8nJwpDG7yYQ6enYJAVLx6qH6ZKjvLI5IaC8eV0pcB0RuUBWTp2sldm5zjQubHvTUt2uHj4iO4Jk7GlOacow7cPrhepv03Zg3KSD/4jr9ZkUvUc6EvVhGRpRohz6gcn7nuKYdKMOoSvukveBFVamWFttMDysaaztEbC41eZRsQ79zOUFr9yJdhXgPKx5FYAWXg4zGmFv7LAVLU6Y3uWMgpZQwD3gPKdtPv/x+sfmV4CbGtispd9+lXRaA9zFKkEY+wsgm+iFN2cAWFykseCr0+MNLvgF+0Ffkw8fntYN6Hc53A0vtkrmtH4ca9QyVvm1etaxL32e/Pt6Adb026zunK47mfRisvmFRfZGP07+LcvbAq2Cj10AX7wp4hAt0JDS1/tmfIAZX2F2I997j0waMGrhiYX+D7zyXn139GuRYRiN3PUaUKqB4otl","type":0}}},"ZIZEDCTNBL":{"algorithm":"m.olm.v1.curve25519-aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","ciphertext":{"Qplzw30/t43HImcYdptKsUgfeY94D5RrI8rlHjrNY1g":{"body":"AwogjuToUXP3gNFgyEzHynyLnOysph8qWvlxrgBlfpWzWwUSIOXegtYRioTvtSzKJjQJ8yQLgehWsjwjjo6DE0iT+d53GiAWfXgyj7JPMbRnfvYSTqVLUj98IfNk+FVDsUtczBjCPyKABwMKID9yhV5f+cYr96xt++WeMuPyH41glw3dnDXjhGCGaUIgEAAi0AaWdoedid7ERM/U+S+b89nj3gd+g+XDQkvpL0k8igZU7bpzbFjj3DcH3Wh5qvy1n0UNup0C8EYVf3HddKkjVRFysFkO/6jWV//uVq0E8x934BGixxrdLSaWUH8lVQdE20doE10eq8fHkKA4CPPpZRK3z7GcwYzIeSdzzw9tXrSbYOs65Wstr6Nb+2NdrfVR0m2v5uCxY9ZDiKI/I8UBliseWOvPqy2F3uvjn5dSGAfOytlpm0/5tZPOprXXmOGBBcRRVoxOyJIqayO5MwkVRml0zrMziXs1i11JTKoGcI65Yc+En/MTlV9f54Sjquwh6xNLDb5iKyb1j2nNEtck2pbJ491Gmay+M8me7RLNzkW28HOsrHxIhcEQYxKKhYkz2qihTaOUPENq7bneL5/YDCKK5P+Tax8aHP2UNpMaTbPgUlfnF+zKvvR+JHXOtMk3Ren+G4p2IAI2jvP/2oUjBbnK6qDUy8hV3NMmx8DU+TXR7Q37YKCxg6FFgx1mkMRDi33TGxtYaiY04xebOoTE3Xn73b+Ya+xTkMX/s2V67w5nx2sb54cU3oeqxIQmb65GdZQ2rd/YmYd5wSgwv4AfE8/vceR1oSzKYpjWMTG4pWooqlpIM9JOR+BJizqWIaXWUTdPm9UMuVoVe0MESno9DmdsUjrwvyHNO1nqraJ3A2av3XwmA28RJDaqS8JgI0YYIz18erzUqIygk/Ya+713Wr8l4Evo9JP7m6N2lgcPuSe8pvEQhgdl8q9bS2UK8fFqxPzHcEe/9yQn1GkkIgxRFYz6ihMuBHanC9f0viNZolp7OJkenhjJ8dm143QDbiTExMjZ4/gHV4d6WAeQ+nO9gU0tbRrS0SJ2DtQBhcwmKVXvFVo29uMJBEK7aAYAmK1lmHbHfS68jXnB2HX/gN+DGvc/FXZJhB2eVpf9bB69IkYNDOLRVQzHSzobqVqFRJYObs2mjPU8/399dR7r2sottBYSXWphFloBq4tvIAI21cZ8O6o5LmtViNybf7xa8xXT1ogGd8auQQ15ERO3M4f1lzG5Fn7HvzR70edSXFrnnf6L9v63WshOpVoYG2WMjYbAqmRbP//bPcoy2rrMEPMRuIY6HG1bnfRCG3cR5XOe90eZ7u6YffU7Eyi6","type":0}}}}}},"time":"2026-03-06T19:19:28.199447113Z","message":"Request completed"} +{"level":"debug","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","action":"share megolm session","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","time":"2026-03-06T19:19:28.200309175Z","message":"Group session successfully shared"} +{"level":"debug","event_type":"m.room.message","state_key":null,"room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","expected_index":0,"message_index":0,"time":"2026-03-06T19:19:28.20193175Z","message":"Encrypted event successfully"} +{"level":"debug","req_id":35,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/send/m.room.encrypted/mautrix-go_1772824768202256586_2?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":43.017216,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"algorithm":"m.megolm.v1.aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","device_id":"PDSEQNSLKG","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","ciphertext":"AwgAEuAECxL/ccMmHygtuC8uWggDooUITwCdFIENnEuH4gEfIJsvTfQ3nf9ABKOPQrt/JEulKyA9Gs+J4BcTOTd82MPOi1q2ViIKZEjDEnOOc5EaCapz40RYarS+2KHH/J74+0AWwVWEUWGB6xqplZHHxuKvI5EPXQ4+t4Osw6F0oHFEmFd3lk+5/ufdxq3s8IL2DefvaRxwQOBsaxw7jxTb9zNezUgXhbcm2qq5ky0ZvPmGdrHPKFbnDPkSBYl1yUWhHu34+WBaB2+IqT+OmWArxSkrTZWtl9riTOghAnD34OpGvGa4zCS47r9NXXFFOCJ5/0FO50Od/q8dRu2nOzbLeRG5HhMvUh0qNg5IWQ4Ke/kIJ4IcMFlxxLbUtXwNYVztbQ8mLCege924LXhdIMuncpyXEE3TK1e17XE5Spg1lArRcc7EDa4mldvw7k0XpcIkXXZ3/4rpIgww6xnLEmrO9tjMNUine5r2gdSpqoJ9tqmQCeL47VePD5w02rmrJwVmEKjWAGc8Og+UxAah8p5qqpKV1w5cnJOL8Ew6AGW+HDrOf9Gs5AefKQZk0r2cmDCDA2AQ8UHCJjtrRw6z22TOd24hkIVx9s7SYezjiO9x8c3e2kcUL2/BbwIFe0rLfd9R3dgJmQhrmAHdHNseQuA45GenodTSDFaM2KwxjxHH2dTSYalaOXWIhSOeW9xvTXrkup1RSVITBasrPtDNuTGza62tx+VuS9HkhocMqtvs0Nw3WKekrZmECnTRr1aFdNQUzoeOKiBGXKvnDcOV8txOqvTAsfsWFyisfCkVqEf05Ug3K86Sot/Env4t+Rr7j9dQ4ydXb7Y3j3KUJZACm165qYb8ZwRF3ar519lNDQoK43cycswHmII0Gce9fUtYfW8ZDZr9PQo6o9qw7AQ"},"time":"2026-03-06T19:19:28.245525932Z","message":"Request completed"} +{"level":"debug","transaction_id":"1212","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:19:28.252671838Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1212","time":"2026-03-06T19:19:28.25277716Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1213","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:19:28.393398451Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1213","time":"2026-03-06T19:19:28.393524586Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":31,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1900_949_6_387_435_1_84_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":976.309774,"status_code":200,"response_length":2469,"response_mime":"application/json","time":"2026-03-06T19:19:29.124704395Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:19:29.125146","sender":"@theo:matrix.theocloud.dev","type":"m.room.encrypted","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","olm_msg_type":1,"olm_session_id":"egC94gb7m37oLBRE+btlutn40hE5rqs6UEfmuB/5svk","ciphertext_hash":"e720d34a1b3ad4f4ac4ed2e1e026b49201aa22975df09290962a5cb995cd8acd","session_description":"sender chain index: 0 receiver chain indices: 1 skipped message keys:","time":"2026-03-06T19:19:29.126635671Z","message":"Decrypted olm message"} +{"level":"debug","component":"crypto","trace_id":"19:19:29.125146","sender":"@theo:matrix.theocloud.dev","type":"m.room.encrypted","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","account_id":"","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","signing_key":"wQdldjkB7LWQqTiN+ORIk+dYY2fVUUjg11/dAkYhDVw","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","received_at":"2026-03-06T19:19:29.127071696Z","max_age":604800000,"max_messages":100,"is_scheduled":false,"key_backup_version":"","time":"2026-03-06T19:19:29.12714552Z","message":"Upserting megolm inbound group session"} +{"level":"debug","component":"crypto","trace_id":"19:19:29.125146","sender":"@theo:matrix.theocloud.dev","type":"m.room.encrypted","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","max_age":"168h0m0s","max_messages":100,"is_scheduled":false,"time":"2026-03-06T19:19:29.127530141Z","message":"Received inbound group session"} +{"level":"debug","transaction_id":"1214","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:19:29.234278237Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1214","time":"2026-03-06T19:19:29.234430772Z","message":"Finished dispatching events from transaction"} +{"level":"debug","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","time":"2026-03-06T19:19:29.234627378Z","message":"Decrypting received event"} +{"level":"debug","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","action":"decrypt megolm event","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","sender":"@theo:matrix.theocloud.dev","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","account_id":"","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","signing_key":"wQdldjkB7LWQqTiN+ORIk+dYY2fVUUjg11/dAkYhDVw","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","received_at":"2026-03-06T19:19:29.127071696Z","max_age":604800000,"max_messages":100,"is_scheduled":false,"key_backup_version":"","time":"2026-03-06T19:19:29.235903186Z","message":"Upserting megolm inbound group session"} +{"level":"debug","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","action":"decrypt megolm event","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","sender":"@theo:matrix.theocloud.dev","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","prev_ratchet_index":0,"new_ratchet_index":1,"next_new_index":1,"missed_indices":[],"lost_indices":[],"max_messages":100,"time":"2026-03-06T19:19:29.236325452Z","message":"Ratchet safety data changed (ratchet state didn't change)"} +{"level":"debug","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","action":"decrypt megolm event","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","sender":"@theo:matrix.theocloud.dev","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","message_index":0,"decrypted_event_type":"m.room.message (message)","time":"2026-03-06T19:19:29.236855345Z","message":"Event decrypted successfully"} +{"level":"debug","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","time":"2026-03-06T19:19:29.237317071Z","message":"Received command"} +{"level":"debug","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","event_type":"m.room.message","state_key":null,"room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","expected_index":1,"message_index":1,"time":"2026-03-06T19:19:29.237973868Z","message":"Encrypted event successfully"} +{"level":"debug","event_id":"$k67HCpSX5Cgj3A0JjhoHanefk70CX4n82nbaasyDNBU","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","req_id":37,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/send/m.room.encrypted/mautrix-go_1772824769238267694_3?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":36.021401,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"algorithm":"m.megolm.v1.aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","device_id":"PDSEQNSLKG","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","ciphertext":"AwgBEtAGkvrO5IY3KeY2JdVgptJP4Z3sUt6u0+BtBNT4jwF5Bhu7tDGDLLbc3DFADwwLoLK9kPnhCPxyvZz18cejZHEkAQqXsdZ/ZZKlK8LkIWjQGCmlAMwNg2gOt8wEaxEqP44hNUTquqd2eVqTG0DwFv0BDzoyrUAbAXMHFxyP3mfGCfEsgewommr0joM10YnStyGiUDHRct7Q4DV0RaH9xfVeDc11j6piwGcCGCww+sJYqe/GZXbBHhN8O91ohcVRUW5KFJ0/tYPPhHY79ndMXXWb71jb4NmZKeWQ9UaI00RhQ27HMHJAlsxgoFESzTa/peGyJizNUbDcJPTMH5GahSN0t78lkE0kpB0sT5HNYN3MpbOrpjhEazK7AbLwPOedp5qX050LCHHFYf0ZYlQvFZ5gL1MV1yMhKW2xDOf7oGvvhSHfy1ufBZC+T1yCJ5pNWWP6+4AZz7n3OYRUjTffQVI2nKbQ3kuDvAufhd8Ja2TMX1b4+GzBUsMQQiFnG/ZJDuBnAod8Ki5+3VhJbF6lBHdf/vYrZK/BzDJFYYTtVDOYg3n3qQn6RHarKzE31k49RAwBvhylv2I0Yjuo5mT2+dWxRddlOJEJw7A5ZeNpltHddTwehvMKcBIN4bQO8X+IsWxkocWusrWfbZxPXoKiRjRjLFJJqfCOtpBeyNvrgEzDLSN/CaL0B64qoVwrPmi5O3kOxbEz0myUCfuwjCuAa/mG+JtkCp49cTJyLWBCC/61Tul1RVyV2RJZaGZVDJVfke6FeZDl8Gg3qYTMAkIAaeFt5dQ4fzGq2Hx4msMz+kaw3AGWzF9Mk04+k+Fze2TfrX1dEaPUlK+LExo2xgvGMSNujBtx/ZA1/YaYYIGV6pxl+yZOf6Eaqq0XIvIoiIeQCfyDc8z46YzAsNpkxBHrZMvu8RABOusww9rvbJm1VHiOM3Rxk5YcDU15m9BHM9wx9aa/h+dvlA19eVQBipfFsc5qr4243oVFkUqZGYKvc9C0pUXX7x7DS16uEZad5h1F7FRrxsjqhLzZMFToybfHLg/eAL8s2SJTnbxd4xLkVSJdP2bUh7NlDjETWBG8c8i7J7yQGPaSKrBUPFSSfalRjcCoJTSDWH4crgf8dwxTYv0jQ5YeiZ7mBCW6rTbvapCnV99V+pmApxrZEIUA4WXy7c0JqRttB/iBzWeLPqDfpuQH/bfTW6cJ0i0NjyvmPEG2YlF67mWcvFgKTwU"},"time":"2026-03-06T19:19:29.274573073Z","message":"Request completed"} +{"level":"debug","transaction_id":"1215","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:19:29.282967339Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1215","time":"2026-03-06T19:19:29.2831219Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1216","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:19:31.392983578Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1216","time":"2026-03-06T19:19:31.393113414Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1217","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:19:32.796312484Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1217","time":"2026-03-06T19:19:32.796459921Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1218","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:19:36.585284189Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1218","time":"2026-03-06T19:19:36.58539852Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1219","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:19:36.691267093Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1219","time":"2026-03-06T19:19:36.6914102Z","message":"Finished dispatching events from transaction"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","time":"2026-03-06T19:19:36.691548627Z","message":"Decrypting received event"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","action":"decrypt megolm event","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","sender":"@theo:matrix.theocloud.dev","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","account_id":"","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","signing_key":"wQdldjkB7LWQqTiN+ORIk+dYY2fVUUjg11/dAkYhDVw","room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","received_at":"2026-03-06T19:19:29.127071696Z","max_age":604800000,"max_messages":100,"is_scheduled":false,"key_backup_version":"","time":"2026-03-06T19:19:36.692684541Z","message":"Upserting megolm inbound group session"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","action":"decrypt megolm event","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","sender":"@theo:matrix.theocloud.dev","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","prev_ratchet_index":0,"new_ratchet_index":0,"next_new_index":2,"missed_indices":[0],"lost_indices":[],"max_messages":100,"time":"2026-03-06T19:19:36.69307859Z","message":"Ratchet safety data changed (ratchet state didn't change)"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","action":"decrypt megolm event","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","sender":"@theo:matrix.theocloud.dev","sender_key":"RKNTyLYA6mllQnPvmL/QbR54Wy79FZ8QQvMT8X+tok4","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","message_index":1,"decrypted_event_type":"m.room.message (message)","time":"2026-03-06T19:19:36.693563854Z","message":"Event decrypted successfully"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","time":"2026-03-06T19:19:36.693971593Z","message":"Received command"} +{"level":"debug","time":"2026-03-06T19:19:36.69407021Z","message":"Fetching latest WhatsApp web version number"} +{"level":"debug","hardcoded_version":"2.3000.1033516464","latest_version":"2.3000.1034660987","time":"2026-03-06T19:19:36.905053898Z","message":"Got latest WhatsApp web version number"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Socket","time":"2026-03-06T19:19:36.908280049Z","message":"Dialing wss://web.whatsapp.com/ws/chat"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Socket","time":"2026-03-06T19:19:37.037500506Z","message":"Frame websocket read pump starting 0x8888be4000"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"time":"2026-03-06T19:19:37.147120373Z","message":"Starting handler queue loop"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Recv","time":"2026-03-06T19:19:37.36965715Z","message":"2@8BixdmI91l/gFDctss9DwY8v/vxfLJzMd3PDiPVtJSiyCIl/KEhikzn1z62eGfrL7/O7cUuYsK+GDD38rNSlOQ6PhQROTfjcRyI=2@8ThniFtGi4nauRFzsGhKeTbcYkfwnattDYHoAQF31QkZcj9OGUOmPPGPcqn2cT6JoRFeOq6VMSvFvNfIEyd57H1xIq82ChFJHts=2@vwuqv1oZe3SYy1YYLH8yAtBc/a8hEBSXUmWtJ8i4ELvsp1OD58MOMdLuWFg9SECuVcR0VNk6DrZ01FeFzNiiaZwXb44yiPfPPPQ=2@RIX2IBg6YnYcXrVcXpRrlYStrpe2/ubWPMkkpBZ197hVijYKq4vWvQizfW74J+506MDYIiPJZaWusAn0+FbJI4wNFtvTniUiLFA=2@/T+xAmC2fvhVom4bBJNZFytElG1x7N1IauQtzX7dCeOqbzG4RMuRQsnt6daqs3sEpupbn7h/CgN9PPIsomST/I9kkV8tBiW53Ho=2@JnO5GaDVBhygFkEtQIm7ELSBgyhQ/89m4TN1yeSGdC2gZsH31kc7aePsx84eiVpOTks1VFdXWxhNuMh1XNtw7B80BOxAn4yZJDU="} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Send","time":"2026-03-06T19:19:37.369862347Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"code_count":6,"time":"2026-03-06T19:19:37.370093874Z","message":"Received QR codes"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","event_type":"m.room.message","state_key":null,"room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","expected_index":2,"message_index":2,"time":"2026-03-06T19:19:37.370682643Z","message":"Encrypted event successfully"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","req_id":38,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/send/m.room.encrypted/mautrix-go_1772824777371014045_4?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":39.352106,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"algorithm":"m.megolm.v1.aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","device_id":"PDSEQNSLKG","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","ciphertext":"AwgCEtAB3tsnVPtAhJoW0+LvDaATpV7yyWvuNCRhIDyNtN3cIC6FmRas9dN59O1lCe/Y/fBPjQTOZBlSPI80Hc+dEnfPg76MmLu2AWvQD6BhymSqGTyATlHMdzvM+NkUXgtDlXHcxZfdoua+OzKNl8+KntgjG9MiMIJvd41kcbvdPq2B0g21mdJoQwrR996LlIOvbCe+9t1vAFFL3IfdkCLAhyPhLCtvuHkdfS//tOPmSiQ12g3CjgkmRxe+8HnO7+GaUxaa1gZy83+XazCN+OGFtcegCH720crineBYAkcPhEvyWtKSzDRKuc9axf58Wio6aIMqy/n6KvIYjSAl76KDQg9i244JCZ6z+f+ELs5ir0OETrICwEUebE9bDA"},"time":"2026-03-06T19:19:37.410549766Z","message":"Request completed"} +{"level":"debug","transaction_id":"1220","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:19:37.427032319Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1220","time":"2026-03-06T19:19:37.427132822Z","message":"Finished dispatching events from transaction"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","req_id":39,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":8.674752,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1557 bytes>","time":"2026-03-06T19:19:37.432152731Z","message":"Request completed"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","event_type":"m.room.message","state_key":null,"room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","expected_index":3,"message_index":3,"time":"2026-03-06T19:19:37.432858137Z","message":"Encrypted event successfully"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","req_id":40,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/send/m.room.encrypted/mautrix-go_1772824777433194567_5?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":25.783999,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"algorithm":"m.megolm.v1.aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","device_id":"PDSEQNSLKG","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","ciphertext":"AwgDEpAI5/iPyFkehCgqg/9nuiVuKE5tnXo5SK1s6qBfQcO8xclGDywarwKcxcPC+1E22i2vhtBZNh1AG347XvcEhc0IKcsPz6S73VIRbBRcBkrx0cNSJZK9hjYDzL+00l18vpd+nZj6/WgDETNah6Ni5LNVY6hXi5EKraJs3QRsgJ6H7Ro/ayY72m5nc84wxReel8Ncx8jm0NOvbYcb/5R2Fuzwn4fgJPPH/RFfOtGomgvMQbDQqAWrV+172e2ssnsxUzPPiHU7LvJOUe9lIiNkpTt1ETF20LdSFfl/LVbiUyWEig+xEcA2oMOkhZLQqCg9MXghRApM1538hJRres1iBXZLNE2FODE0egL34NlyjG6DWhs10zu+hhGx0Ziq10BUUbX/L09BYaIP8yBCLUkKfxnpOoQZaxMrTS8RszfRdazcoOLJr3njXYGkL0LrAG1F4keYMwJBoZSwqvtP4hW2lX4SV1z4KrKz1YOcdZVQHQsw9taDp2glS46Bg/YCZSBOAyk1lrhvNJ1OhjgV/gwO5mNgskPNT0s3RrLmJ6+qTU0arAXNSg/zIAIVs9Cm7+t530ijscmUuuiEKRiU/HQ99sGlOpdKmm2V5JIPwSuZC4WyKoYAgoRWXHAUN4BVvl31eDIGkWkQqUuZeol+quRxuHsuzunmhPR1g19asBaqMLI2CSPwBC3yeoaGxaz4H4YSAObNX2cfOHVxa8M6Ju703UagvPFD+VaqWmclP0KUtPX+vHkLJj1rtu3FyPFViM+3Spjd3H3jwFZ4WOMBZ1mz+GR3mGoUqYRO5JGDHGzkIoRsD8SGCkC32XoR6ePG8/gb5uLHf4zlY4TTAvfFwA30C+05PbzBEqga82XHHdqUyj8igKwMT+JnkWpClHEZfO6QM4atfwGzMqj16zs4wqi7B99IM3l/ysNHUjzHdu2whdFylvHHHX86TnnSCxd13JLVntq9LBUbZ1cSnttG+hbURLF8xNtl6Bra8m4kf3EqgbIwtKRtUhTAEzQqlqmuA0gq9M+Xyij1pRV+X2UAV/jn1gJ44x3gUaCskOmkTAUTYjtlMpfuj0ZIg1QTtCAgWaDbnuS2pN70Gu+oB12fhl+zmmvjZMWbFoEpWfFy8q4c8OVpMZW8Hqp0MYLiy6YTnhCpJgfLH/wZBlfImuRRAomlOm2jyF0FSeJWCI6tmGRWvDvQYUaWzcjR9Pd2ngHLnRa+M6wkDOYPuRWpC8s+yVvBZUmwekNju/uCmqJtsS5acflY2dw0tYOQx+SBilq6BlbWDZwmnJmT98jhGRtGXL17086742c9ff8I4m32eNYMm8MVJivL/ys8ODMCH+HzlKmppu0j++KrWJcmTiz5j4aKQTexRc0OXDw4bWhJ9JRT1T9tdom3ZqbessuXR0l2KS//B3As7EslL9zFdJFKJyqThHyXfKyUW+irRo0RwYWybvtX8Crl1KA7kwTU1M1EVLW2PyFLotg2mdHs/gU"},"time":"2026-03-06T19:19:37.459208557Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"prev_index":0,"current_index":0,"next_index":1,"time_until_next":"59.910829863s","time":"2026-03-06T19:19:37.459322399Z","message":"Waiting for next QR"} +{"level":"debug","transaction_id":"1221","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:19:37.46456287Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1221","time":"2026-03-06T19:19:37.464670776Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1222","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:19:40.450874958Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1222","time":"2026-03-06T19:19:40.450978813Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":36,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1901_949_6_388_437_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.274626,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:19:59.132997461Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Send","time":"2026-03-06T19:20:04.085045671Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Recv","time":"2026-03-06T19:20:04.192015165Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Send","time":"2026-03-06T19:20:28.898297247Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Recv","time":"2026-03-06T19:20:29.004521314Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":41,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1906_949_8_390_440_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.28789,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:20:29.138802393Z","message":"Request completed"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","event_type":"m.room.message","state_key":null,"room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","expected_index":4,"message_index":4,"time":"2026-03-06T19:20:37.371767651Z","message":"Encrypted event successfully"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","req_id":43,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/send/m.room.encrypted/mautrix-go_1772824837372103103_6?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":35.66688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"algorithm":"m.megolm.v1.aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","device_id":"PDSEQNSLKG","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","ciphertext":"AwgEEtABc/xuBgw4v+kwkCwvrwHpQPtgfQokQMDxKT08j2pW6a2zJZh1JQUhuy2wNE7FC5ZXOQSfIKDWdBABZygYh2GNJEJySQYPMI2KjIsmFgJkajRL4MdW1/IqWWkSNtmci4EvEfMVgTncbvk88/dm5sEM+8PP2euw7PJl6lSqBSCid2z2I7Yi64pv1qJlzkR8qMf/AK1k1FO0eR5/G3ZAkE48jGsgsdPgDzpRTH5s+JksQU381wj2SytKfxej2PgFPO3hdZGsKRxZlg+GNlFegbakR0Ecer1NEteZW3sBROh1Hm7H7L1tAU7LxraX90U05qs48oJXZfBI2sUy3AUa77mIFSU03bBFlNFfq+z/PTbFyn7OLFKd2g1xCA"},"time":"2026-03-06T19:20:37.407955205Z","message":"Request completed"} +{"level":"debug","transaction_id":"1223","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:20:37.420417849Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1223","time":"2026-03-06T19:20:37.420650494Z","message":"Finished dispatching events from transaction"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","req_id":44,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":13.517052,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1575 bytes>","time":"2026-03-06T19:20:37.434483931Z","message":"Request completed"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","event_type":"m.room.message","state_key":null,"room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","expected_index":5,"message_index":5,"time":"2026-03-06T19:20:37.435046021Z","message":"Encrypted event successfully"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","req_id":45,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/send/m.room.encrypted/mautrix-go_1772824837435258900_7?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":21.35677,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"algorithm":"m.megolm.v1.aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","device_id":"PDSEQNSLKG","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","ciphertext":"AwgFEsAQPyRxePClBMdZFT9U9yIfMJOaCAGvJjAYyEWWJKYoONn+rvVBYnCIdUBTBCcfQS29smzm58sHBxaJmQ8e9ZIxtMECr7WGEmDPYIg9CtxRb5k8slNauV1r7PS4SUlCJhe4jNBjg3n7ltZ9/YRg4bTlhfeoVnwaMec+5G2zAxT6wcEs61bf4oMUis39JSZWTLgcX7dFkwMuFHPhZ02fMEejIbUhWXfSolYjxepSIxNKGmoUsfrKbpCavtuXTW+FZub8pkc99lWbCkb8bbXJGZO8aZB0b8V/zoKh8J18vboQZqIG+r/1GPsS61Fb83A+gK2hGAArGHDzTbHfHMCG+lBkJindYKLPWQSACzOTQWBBL2O6q2IOgxgd3xbYpM75hVXCt+x6FaWXtaMHapG2Q4e4LNPvJ13Z3XWWyxXdurRlbZa+sF4Nokyb6nZuZTW4BukZSx066Joqev3FquXArWL3EAdsySYIeyVImiqUp0jaeAcAtQRTS6eT4r+qq4A4qOX2xrsLGba1vDaVw2b+Hreg8iYYGm89fYOGX03bsc8QetRsb/yZJhfYO/MNBtrXllqTIR1W/1xxBoZGkqOkMbkTUmHANt17gFjBCC5hnw43qRaoOSdsTB22Y81U6dTsd1Ru5ijaeG4VE5x3m2XMDa6B/1ot0LPiRms5JOf8BM+h0YE+lkUwatYa1D/1/2fc+2fjMZ7Rj+f4H7Ygt2CN9HkwyKW1Vp/facFIVYSaAXdSyWah1mi35kEobHyEubSDI2w5ZW9M9/4h/hwM7ZMHLjGHntBqFycXzasC4DtwlfNaoWJK6NoT+pu+7wFa0byfD+NPcZ59cFxZ36ltgiYIlSowgL4G1dzovEKlVHknqhhLH6HlfHwjxfjxQR4nvj8qDnP67cGMuC7hEYCn+2X4ZQcH3VRPAx2Cz7gPcOo9Zyl7g7BWwLqc72hgOQ2D7/PzW75qD5Y3SaPPrOq4bRZBn6kjwa7n2tIlgKbyObAwFvi1Emm6e5AqnVLFQrHfZ95to8iP7TOLHA6Z4z31jYrbOXfRZINpwTZYTZQDOk4vlg/8NaKveqF+Wzf1y1PKykDfvo5UZNPco+WPYrA4RPvsuzTIcI8TPzquODfE1ohxJhROGkIC5LRO/a0/H7q7qT4aP4BvJZErOcx4yHZtXePN/O4BgFGXcbxhiNSsPQJGK9LJLzrni3UycbnT0wdX60NTmOazzTI2Wwpu3A9VRpUK37m7tJ7x/NsxqrJQ5CwUuyjJaIottk4v+WGVfGf8HLGxX9JPrR/5aag3SarVb+G9nSXKS1ALdmwvviLtPLHHXzG/AdbiftWz4RvTLDZLM4PXu4ft+10vrhyLotL3tIoN3RZeqpYfOXiNz2LivM+3yjPy7MlqYRjjUQOe0Xfo/4bX3lMzTL5i9APWUlqhtQ6UUXtliSlcErSLfqIVlfmj9igsl7vJWZph7NE9ypaQiVY6WhIvMubF20qz0fXKtoVrJt8CFW5tldmiVCKzmFcnWvrr1M71hWu2GeBnXh5vYJC2KTvn/IXREmJUc7CFfqy8beqve6Oa9t2sMVVxW7lwpxNPK6Qj126XEcvFSw7yZLMJnKoKr4NqrcCwmwd3wVV0/yvXvfFKK5Q8S8w7NUNrLMOaUywCrbqlYFRSXZj3bugQxrUn6uUH0g4obqB0GjVLHk6J2WkBVhuxGZdz8E3VBNrayQ7nc8DN5kddrFw3yq5yYjP1/wr4MMAeIjH1Cn9Bxq/02x/mWiEilhqcU+1YEzqdycEtTrQkw7Er4LdVRL9gwb9dXumfkxckya437S9XQ2hJrzDSLwtp3/4jHQ+hiuiWufY9nhK6XRD/JIyPvSmv3x5r1FL2K8pCEAHR4ECkU0z7g2ILS4vmUF1aDRl/TkoVpRo7AxSEEg6svdVBHy7oJWlugB5Db56G7q/2v4BXNT7nkef0UPE8wOr1dpb9BoZTc+L13iafoSexAX5PuJGwMcRLDBNPweUi4KNympfMx25jvJIm7rUzj/gXh9nt2FezqsZAuoazd26YIEv8LdO1tIwrDY9QpqT0RL1bYDG9JXNnIYSN1LI7sNM0LVCgjYNiBpKmpOUSsiLL93kaQO+tlHh2yZKwromx+eysiec3HUSI3UC4fo4n/0AfJ/nwPmslt5vTtU9an0sY9DqP09ij9eXWraE5xaegsMCkNqqo0J1fJVQgt1mwXA8DJTRiGsAhOPW9hEKkSOCfoZiG03bIOeTrY6jrrMFYgssDmNg+e12ERgnxSJtNTaBKEw1WBt/jjcHF31IsTXelRxxqtJ+YqPVYBkklFBkv9ML191mXe5tLEmWTwdKn0Mtn/YfqguFP57N7xBNHJsasMmYQMWx6RfQ2UQFeP120A9AzX0hs/kWQywiReCmoaLFBjahIkauZfgVv0Atu+mTBGisbNSUkHNsQz76OU/i3Jn6Xgj/WHdxdHvi1xVtbbLZ/Syv7agoWv2QISmJVbVM65WbNJ96xYwedylq1bS7c34hOilHP8OYybpWADjME/5s3jun0Zp2OwR3vOE6YMJvTswQ12q0b+SXKOML1RiyGVqKEmki4yqMyqMvllw16hpqswq4nUWoUqsZ/Il/o1jbH6DKpTkNSg/JM4kVWKCRkhhv1ZMVmNO2wVOWzSorhNUUqrZ065XllscHeZB6Pt9gtyop089aUr2sDXLGbPEIVaKsg79aEBGCKuBqsFLDWHIFd9ZLwxiPvouKQeDIuhOKep8DmJicuhITL8NYtZoQlTQEYgnD2DCh/LjTqLZ2pKZRD0C7d8bJ/lnW6Flq09vVQVPA4huNbNoDAckut+WXzjRG7DS2dmJ7IulQ8SGs64uOLaqeA8d0rEBIlOVDXC9bEW+G9/AjUGBYPrNJH6w9n2c3e7Y0IFUquQn3d6AoSFZYJ","m.relates_to":{"rel_type":"m.replace","event_id":"$ilrDqzFEz2xmwdZiB4GV2lMKYwJtGZPb7LolYMnR8Yg"}},"time":"2026-03-06T19:20:37.456904398Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"prev_index":1,"current_index":1,"next_index":2,"time_until_next":"19.913070325s","time":"2026-03-06T19:20:37.457081308Z","message":"Waiting for next QR"} +{"level":"debug","transaction_id":"1224","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:20:37.461675948Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1224","time":"2026-03-06T19:20:37.461804737Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Recv","time":"2026-03-06T19:20:45.827308615Z","message":"redactedfee9da49c68225363205be8f621f6ba8bb7ff707eda94af9056b0119a709c7c381b1daae62e20585d298b304f7cfd2de395263e50b729f4275d930ce7c1647e77e2d818580d44360693ffb4e48174f766e0ab8e2f63cebc5a1466cb45bb237eaa38a51600f4dafba0c509c4c9c1583acb2c01cd16d5e68671cc4058d240828a2323defa2060291e3cfc4fc2fed98e76c307b2420608208011801"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Send","time":"2026-03-06T19:20:45.828239542Z","message":""} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"time":"2026-03-06T19:20:45.828407442Z","message":"Successfully paired 4917641870516:54@s.whatsapp.net"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"event_data":{"ID":"4917641870516:54@s.whatsapp.net","LID":"195790463058158:54@lid","BusinessName":"","Platform":"iphone"},"time":"2026-03-06T19:20:45.828462338Z","message":"Got pair successful event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"time":"2026-03-06T19:20:45.828511996Z","message":"Login completed without error, waiting for 515 event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Send","time":"2026-03-06T19:20:45.828574016Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Recv","time":"2026-03-06T19:20:46.258309296Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Recv","time":"2026-03-06T19:20:46.258430612Z","message":""} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"time":"2026-03-06T19:20:46.258504435Z","message":"Got 515 code, but login autoreconnect is disabled, not reconnecting"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Socket","time":"2026-03-06T19:20:46.357278292Z","message":"Frame websocket read pump exiting 0x8888be4000"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"sublogger":"Socket","time":"2026-03-06T19:20:46.357387106Z","message":"Error sending close to websocket: failed to close WebSocket: failed to read frame header: EOF"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","action":"login","phone_code":false,"time":"2026-03-06T19:20:46.357490682Z","message":"Closing handler queue loop"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","time":"2026-03-06T19:20:46.358607669Z","message":"Connecting to WhatsApp"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Socket","time":"2026-03-06T19:20:46.358663124Z","message":"Dialing wss://web.whatsapp.com/ws/chat"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","time":"2026-03-06T19:20:46.358646781Z","message":"Starting history sync loops"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","bridge_state":{"state_event":"CONNECTING","timestamp":1772824846,"ttl":21600,"source":"bridge","user_id":"@theo:matrix.theocloud.dev","remote_id":"4917641870516","remote_name":"+4917641870516","remote_profile":{"phone":"+4917641870516"}},"time":"2026-03-06T19:20:46.358705378Z","message":"Sent new bridge state"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"ghost resync loop","first_resync":"2026-03-06T22:58:10.358762998Z","time":"2026-03-06T19:20:46.358778014Z","message":"Ghost resync queue starting"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","time":"2026-03-06T19:20:46.358881031Z","message":"No more queued history sync notifications"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Socket","time":"2026-03-06T19:20:46.43052538Z","message":"Frame websocket read pump starting 0x88889ae0e0"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:46.474183676Z","message":"Starting handler queue loop"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","req_id":46,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/redact/$ilrDqzFEz2xmwdZiB4GV2lMKYwJtGZPb7LolYMnR8Yg/mautrix-go_1772824846474280548_8?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":34.198378,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:20:46.508594095Z","message":"Request completed"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","event_type":"m.room.message","state_key":null,"room_id":"!XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","expected_index":6,"message_index":6,"time":"2026-03-06T19:20:46.509184681Z","message":"Encrypted event successfully"} +{"level":"debug","transaction_id":"1225","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:20:46.52686831Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1225","time":"2026-03-06T19:20:46.526990184Z","message":"Finished dispatching events from transaction"} +{"level":"debug","event_id":"$PF63X_xtskrwKb6p_6CvkNQTxM991vrS3odJmvAT_Hw","session_id":"3RRyIK5/0ymjetAit1VbarsiqmPsjAlZLTBkCYdWsaQ","mx_command":"login","req_id":47,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21XwZhVSbRBHsPJdIGvR:matrix.theocloud.dev/send/m.room.encrypted/mautrix-go_1772824846509536616_9?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.981607,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"algorithm":"m.megolm.v1.aes-sha2","sender_key":"Fn14Mo+yTzG0Z372Ek6lS1I/fCHzZPhVQ7FLXMwYwj8","device_id":"PDSEQNSLKG","session_id":"q0C3881cWWp/crd1ySNJYRB5CK6PR9anAvYpj3VphWk","ciphertext":"AwgGEsAB1V9XPa1DB9NPcZ2yG6JhegHZzD0mV1b7xYTgW/gyRDSI6oKlDGSiQ63RZOV4W2PiVpu/qtSh5t4DRsb28Xhr4JSRyW9sA79+ZZ4TWJtKbY2LKSwTdWBFGkzvSgnqcWruwXM7fCoy8RTmp09pBvqcfg5nPlhpe2QVS0GGLs+i54/wxyYCpB5jpJGFZ46EOAT4kdpRLBiVLtBhmKbUBk15cwIOPd0ercZcXF4wmGgSOpxNvmI7znTEQwHO93HXaQ08wP93OYuV5c5j6nYnjs4hl4YnskDoPiHl9Pn534ITmtWrkBcc+U8i4EPkPYBwyiB/HAqvNBZDuaYLinKMyvZuy7oHPRHeWv0F"},"time":"2026-03-06T19:20:46.567685634Z","message":"Request completed"} +{"level":"debug","transaction_id":"1226","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:20:46.57219346Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1226","time":"2026-03-06T19:20:46.572279296Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:46.712796585Z","message":""} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:46.712921603Z","message":"Successfully authenticated"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:46.713291836Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:47.902292402Z","message":"080908030812"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:47.90301052Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:48.077926634Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:48.078038801Z","message":"Database has 0 prekeys, server says we have 0"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:48.213514391Z","message":"Uploading 812 new prekeys to server"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:48.218154917Z","message":"089ab2eb057a11a81275d35845ffd39270fca31bf4e830578170ed60a99116ff35e9648c0e00000151e19f79b70e6fb3f0e83f94fb4511fe301b3186008c4a13a4a8c72ecd76e704000002c33e3301a027c61fd8fab29502dbb972385f54a4cb855a2f86d51ddc89704a32000003ee5be44390827c4650a858a8d6bd321d80b8eb42dc0ed26429dc3b8c268e157f000004d0dd1b3317ab150bbc2fe463463bd7366be0e64d3d909c7ee5080c4eb4a38747000005ec0dc7911c39608a5b56d4a6c053c61072a7140e5b7c7c37c3247c2e40e7b024000006b4d04eea92c2eeb97dda67ca914edd7fa29a281c8d72352d3cd123e4f175ed280000077586cbc571668e1f58bbf6346a38d720a65836347ff2a67431976fe062efc957000008066327fc63ab664d157086d1bb8a73e2d20e98204986142d0e3d8f25e76c881900000972be2e99c5220868862ff83851b7f1e5557078fe688629482762f8146adcf77200000aa391914375e702b8b7ed6b8da7046e8bcb9dc8be3cf4a7bda4aaf8f4f1c05e2500000b782e5d51462ef79fad38a96aa307aa40a4cbfe7a474b72073eb9edd35600277700000cc931e345bc50af26a935a0cc60cc0a81d64b7dcf736aedb2c15990df3f7a916b00000d81f32415a2dd3b9b78c057954521378e1a25d39b2e8274de38751b334fb8ce2300000ebbd7ab95986993bd2ccfcdbcf3a7ba28bfbf9853a193bc2c2a5db394d567440d00000f8e0964abfbcde9f718903eff38e449a394531fea6058e34924a94b7f31c74e28000010eff38edca5079683ff9bedc013861a9e05ee0d57772fd930d422e8bb04a0cb430000114c62bef0fe574647a9a6ee4d1677f66b9cb43fb179b92fca30ecacfb04e3da4c0000122e1c39cccd9cf2cd14784320cdafa6639feb2d37d7acf908f3066072a8933505000013dbc6f7de29f0b7315642eaaed5b4f64192b1ad1126be261116999f4463dbd13800001439a1ffb9af7f4b797e95beeb93bd83410b0d3df647e23da0b03013c639365c330000150d58dc2b824cb4eb6fab5218101439f88fe7afd78288503640e29b169c28475600001624e91b7933692e524d9d62d5d51b6579be85b4622e8159633e0c115661129820000017c8a474d217308193b0892e5640e794931b406afca32285986f71bc15a3e5ad4a0000181aab0f3b765237e3fd099d0bc05a1a2e398163c3622d13d2b5cac76625ed9637000019ca7a4e593c0382767e2fdde971b9ba6aebb80b695d500d8c1fcc83530bdceb6e00001aa7f237a8d4fd0b48b15bbe84d5145a464708f2a2af6a2593ef23761324f7164300001b3b8c805073a57674ca8928f0ad6c448b7f1d1b728e5a3549a234e2ae13c08a7b00001c99e331949c64798948d95874a50aad9daacbbcf7e2fd459294e46b3fc92bce3100001d3923953e338e1d390439e341806c5d8c27fdde885c6c51bdcbc692b131332c5000001ec7fd0f0a400cacfc254951205a1e9871ce80e50a7288143fccb85b73b89cea3300001fef48eb6a64f392127c09de3379d5a2f4705db8acbb445f7fe1cb6b3f3cc04771000020d9536bc92809da3bfae48748f8e6289f9c65ff62017c88424149c92d906f554b0000214e3384c28aefff97907c941d15fd36740e309fa6895cc369e8e36a3796e80c45000022b04258c2e81252dfc18524364df2cd3c3b7d5f43c575e47d587d691d167d6021000023aaf8fe58ec27cddbc377ca04304e55781c393253e189190b77cd037794ab090a000024450851677d8393d225932d710efba5f70703de1dffdedffc6d4d077194f4a808000025a5853cc7784a38d597d7d68cbc4318fcc4a389429ca19a56509a1b188b68c775000026744765ce2cdee56232802d6c8d7303603f413cfb43d6feb1c82bff964c0f93330000276dc4b3b0dbdcffb15e9834473c953a162496179f39ecd4d9c4b21c86f8a3a6330000285ebab8d3ca50c97538b4606d32134905cf1ca1bacd4ae771f4bc069427377a57000029edbe87d070f6786b2472d2201f50aa650b05fc53e9c647fe758bec0bf66fcb4400002a7239bcb3a366a57eedeaac631ebd18c234de8cba7a2f59843586cb2e183dc76400002bac8042fdeeb5afe62843f91a9d39249b6acf2b17e2c0aa6644bac3e61029573700002c5bd0bfe51a1947d07cd6ab4d8be298f088699fc90dd60daf19d24353d661be6600002d8b409c9cb01c7c6dd4383e31b8ad46450b5f6ddaee80dca265737985514bd76b00002e65272f1269f7af676b03acc81d55d912998b16771dddc9b194b6942cae502f1800002f32066f666d600d773527f996f51ddd4444102e4be4e44997c660954dcc61776e000030ebd54e3ffc7e13ec1865e496e1e8cc3b54f248c4f67f363d725e53d0510754520000317147ca45bd2731c5bccccfdce0c51e785ea113c4c1c09c294695e185049c343a000032400cfa89b184c5c83e65c2ca3c5e3732b3dbf20690732e0a3bbe5f24fba24a51000033d7b6fb74c07f56890865aaf318c256c76f4083efc5a61f266c81bf1af440443700003424d845f55be51e7974df6f8f452b36a50950e23bdcc0ee00840f64dfd546ad4a0000354a811b7c50e2d234ea79d930179611775e74642bb667633e801631ef93555f16000036ce4073e67a0ca257e5021bcd0ee3bfc2526425ccab554e51be9a281ab9c3b51f0000376a40b51a2ab07ac93ce3311a7e428af01582e1fe701dd1a527c19e05f962b93100003894cf10e9cfaba4e697cf694ebaa019eb0f730ffff7bdecadc9eca1531b16432700003922c2c1139be807cedeadeba51b1eb83c3691bbb586d9cb4f8a99da6e6eb0db0b00003a2b8ea27e79e555648efe5d06f4fa4c71afd4511ad697b8ee8683ceb4600e0c1200003be3f588a565038985dd7480340c4cbe950b0dde5cab32b7d375755d4b8dd8902400003c573b1846fca6e77cbc058dd9d7eab6ab2df09d7796c7a906bf8021391211570300003d6ac0c5404e4d0245af8eb81f5618ebe1467aa0b2849388c1c9c928536871e14700003ec606675ac5ddb536469046b4f4a811d4dd918a4b181bf99a62875294e50d631200003f2a1295c99044739854171c3b3535ee28a8270cb0c975f9ac38418d52478ec41b0000401b4f501a0ad5fde73c9249574123b8538ce46fa200eece49c181e22c250fe2330000413fab33ecb8c81c2bd3ae6c7458934c93ec2d1177e97ea74f952468821f74027100004214111f95cad712549599b460646008b584770149a892f9f8afb657e7210f2e6d0000435cadb935072ccfea95d1e5ebfb7c980edf835b6c245f8ef9eefabdbbef136d47000044759e364524db014b8b1b088d0e56792038c2c4d40a38a14042f9938a3510bb3e0000450a0d6f4653727f8f25b2340d89e70fc5db21875c323d40abd6356a4c68c671340000467d66160313728fbc330c80f59060b538b74933246cb1a581d7830db93dbd4b7d000047808d1d1e635735f29fb42c8dd7650d7c7103fab97b56c28305ab6269e9a8d32e000048d0bd7005a53d3383156515f75241c56411cfdfded387578ee6dc3a38f6a7a44000004906ebbe1333cf3bab028bbda383056a350edab32424a11e31b96647d3dd69f80800004ad7cddbab78266a976d5d98e6f8e4f1101798e0e2ffb8c7cb28faf03856f8331900004beb282ee7728ea197f4f66d016350de6a3dfdc6f63d69b3b26e05d9122bb9ba1a00004c33d032dbd8fddbe16008b99ac3a632a0c5e0eecb6d0765b7fed094f37a514e5e00004d16ff7e91d72a51bd296ea97f0c8e45da4bd27e7972df29036ff9b6049b88610900004ee4eab10f5ccacac5540659ef1e48d7dfb1174a7c0bb4aba19d4153dc3fb1da5e00004fd9a9df8f8b80750ed09c1076d2fcf23126d236a26909c6f73484ea99530a246200005040470b7d46b5fa6a6a14975bf421dff613dbbfa5074b3ddae82d9cac1e32c323000051c93b166394954777c4f03d1896c740db0642df0730db4095d40170c0da8364130000522a771e263c403903063341a647ab1ff0c9e2496fc514be536c8be24a602ac3590000532c7097120505bf182f27dca42eedf87723e666198f1b0a34cd097f23b729923000005440c5407d96f218fa697fac491e58c1df252035269acdc12d18b1660979c97769000055cf38b9679e2a038ee57cc362430986ccc5aa84ca998ddddd106a8737fb4c9d7400005673214b8fc1d6269d52e1880e5049d0f12eadd55c166d7d92a3bc160ef853ee13000057013452b79c941fe3629a05668a89fd78618535849e3dacbfdc51a745db04fc3e000058d67b7092263c70497674118d6c72fbd97d8d478d45b230c3f44e2201d0fa4c60000059efc60edbdb76d2e8643fda514f2efff75bbbdad8030337671b2f791720e03b4b00005a0fc6b4745fa415f349512e128a6aaada631ed98824e94ea3c31d2cbb9e66df6f00005b9892b8fc7fbdcc8a3044a1d5b336f76feb5383cbd4761fb53526f2e99fbecb6500005c32908168e207e38c878c7d86bc21257527a01201333ad421bd533b684230b82b00005dda8701c92bf2ee4d3b9f14c0a3aeb6f55562cff652b99b143c30295a115f440c00005e0e35e4e1eac01abe0c7779d3980ba377a939d5062077893111f7772f0834b86d00005f99819e34b628821ee9bd4acb2dd2ba3196883326798e09380893f3e198e39f49000060ee78060f49825153abbb099ad8510349d14e8c985d38c06e1e36f909bf6a78320000612ccc0ebcb3054ff5d10e692863a3b60ff0d1ddc3c5665a8f19adc70253469b14000062889ef1c5c5c2bdf9da3ef02c891637727a4055a513a803b64bedbabc35b2417a0000636be6eb4cb68a5c3d43f8c114621ff7e5133774978953767ed352f8be2379e47f000064be535ac24896feea44815d30e85ab840d0b8444a01bb653e9753debc49c6a60800006599be95f68192ab99d2cf64b12c635ebf466fbe9dc21665e12ca2bb2f04098340000066d24a27f75bee2c8586883b1bcf59365c578a569588a4136bcb183cdc4a87bf19000067cb1b930de712120df16969cc68896b6c16873c73065313d117ce556806e4c979000068942d7017db3b0438b302962fe84d73df6ea2f75d794b99fca15cf8e148c96c29000069e591c727213b0ab15ed9e5b56477ba62d1d5ab48845c2821847889cedcb5cc3600006ad42f85208f7535e6c77c9cbb34a343a745ce5b78f14844ecc5e3570ee1ea212300006b80d50c4b87af2bc719741df35c5dedbfc43a263dfd6439fb58ad54a819e9da4600006c4a0d608e25abf5997c9624ea635b93f709fe93850ca7b2027924a23567b83c6700006ddc0c47cf6e648205d612eb886baf19e2171e2e3da051c22ed1b8381facb1290300006ed154890d3c2263c110fe9f75dd653be3e74f4cd6c2048de112993b24f7f7c24100006f9e1d804e3d796c867a3ce112556392508dd18dc8d4b8dabe260d342dbee1cc4700007029468d0be213cc1d1ce52e9a7dea19d0196258d02095f9cb05736cd61fc7240f000071c55c9b391d911463ed4e76547e9ddb20b7674f16144e713ff583d88759535049000072b2932bee74e633237410f15760184a00d663573287613607e070b313a1009c16000073801c3703c9cef5c56eeebe7b8d1738970ce6b35b7715cc29447a4ff89e141550000074f300a0382c329db4f0560289e9f826d11341526534e2694d67d7f0c9de7ed400000075b0457cbd3441e452feb38745ad1cebd8d55ec1cae393cbd3f706368916c50b1e000076f77738aacd1784a22fcce3353c605c6f04c2e7c7fcb6d3ddb166459c75d3d3700000776ff1df7d3865791110669150e4330851ce4ce848c3204fb2e117286d453dc601000078b772a2be7c7c3126b0833dac42133ff9bede80a72c519af6e6fb5f5109ff037f0000799ae8f288f7b4161a41d83b00a3625c9aca29bed506a8774297611c97c2fc291d00007a456243df8a2443be50305722a9bb6c4f37cf0657b75f58ea741232c9b30e3b3200007b571a82486b6db4b161dc1393f9906da778cb4266b22f8a93cd57fa3e4757714200007c571a1e79c7c061f6b3d04964fcaa61c089554dfe371a8e3bfe67049ff825da0f00007d88e372051a5521961b30cb7c392fe1ebe1f7b988252175b727ca642cd887971100007e44c19375151065736a47ac03bd3da4958e4f1997709b4177570212e3d912ee3d00007f7a098180d155523f23baeb645bf8d427e5851dbef86fe79276a96a29413840460000801d966a670c2306dde42edc0e40d32311afa392470f2bd0af159fc269cb4fce1b00008198e918d1aaa3d20b7c053c88f9a89b0fec7703cbbce847b2babe0a1cc292c67600008297ba0b299ead7f2601ab1f6ad941bc9b681e223735860ff267f6edf4c0784a09000083d42a1fb3c76fbe19f6851dd0b649b628b678f3feb2dc1bd80a6507954e0a01300000843ab2dc36f50acb81d2cb45b48f745aa0e4d0c9c4fe8eb3fcd5543136f18b770c000085744692955745bfba636bc4a735583013ae315787aa8bddc50be83c7f029bb8100000866282849cb22a062613e10ba8cf051b4615f7530a2d171a9289ad4a53dafbba12000087f4168c3e85dfa446a778a7a32a05fc03272882fe9e5315501c993eba64de7841000088665a955ab518e8a7f51768356077bd71f271254ebe096e6cc68855935057a10000008971bff64f0f16e820f01d72454480ea68ffb63636500c5a884526c7c91d30485100008a408790d23fb2a5aae5c9e7057cfe85c048799fb6c164215d4df539e5ef37300200008b258ba2cc21eae73d46e57ed90c7545c78764d137a8888298113645b979dd174600008c95a662dd3995563863e9d1f957d54e5cb12212fab23b7ad6a556c8913f6fb51a00008df934160abbbc195ef335dca4ab1b06904e1be37d7f30051447110f308f03b60900008efc86d313cc6c644ca73ac7de7460588fdc7d70d74e32545a8e4bdd46fe18101700008fb45b0a2ac864bf42808e7a3ab5cb88c7dac77268bfe510e5a42d8987c0485b4c00009058017e3eef0c5e5fa34d96be799d623ec8d8adccd6cf1e515f8c0ca5683fc04d000091915e3ff6fb5a8a359f8a2e71033f4e538b47627145dc51ab37c72d193918e948000092e6b6c53ea6c70340bf459753f35fd5ecac3596bfe820242e44a2aeac22c0d81200009344a083cc22f6af6bd3233cb7051817a97b7a7aa1543cab5684199b0221196d5c00009464046f3739716956eb2913c86adb023b2f17b941346d801d2523e9f914e6fa440000953fe7d08269b5f32292a24f0194c11a56d8e50177ddf5b559e550218acf700a4c000096a1e0ce261f2fc1ae2993738c9613cc33ca10f3b51e468be5ca2d5d6761a4810c000097da61abef7007347270f6c4950c32cd3bde1fd45a06a49d242790395c23eb3c1e000098e655d2fcfe9f7f0c56daf9ea377bf3b12ed5673a09531586d2988d498fb69b3a00009919059c321965abfc9caa5bb4d228c0237ffd1c47cf854914670379455bddf45600009a1a5910a8616f6fc949c77bbbeef2ce880db74b165c19854f89697726862b985700009b140adeae944fd3ee38d6ee93c92709f14d48a9023ab6c6ce9a20c179db6c9f6700009c871c23c508b33be1c48681d12b1f5a4352cea2ead0bd6842355a9fc5dadd071b00009db1cfda94ccc0a2283022c8067784ff6c4185208897fdfec2f2633c2b737cb80d00009ea3893c3fd9a4161fbc99b25ffca06d360e6db4304537a50c76fcdb04990c1f5800009f6073478023aa8b37c599c9ef9d31340b69bf54efdcc05aea9c4d3e754ea0600c0000a03a7705868f842f9c64df0b67516a0d3c0fa73dbc41eccbeb99f0442d8c54e3580000a180bf80c441eb2020987696cc78e51e0990eb249da5dcd7450eacdd203bc8f7570000a2f0174e52b509fb9ee6f412e11e33e5b60fdca2aba282653c5e0e55812765ec000000a3393aa89f507a06c2246b9844ee2b6cfb634c8f6096458aaa7e7fc8c5ba4faa3a0000a4a801d597f2bb63d7d2f0bdbcf87d327bd34d135b46db6c7efb2939995c4934700000a5b4b6c91247fe246f348055e61edd5f521576e3dd30bb663756885dd3a04c55670000a6f4b443f68237ad1f108e32eedde01fb116928c07f2ce37b5cf2271071a2828300000a7aac8896b8a61eba079c1f001aa535901218f1b80d403a695fe052833fbeb5b0c0000a8b6cca72794c4da7809236ae3e80c33a03d8f34e3560eb4290b1fd7a237ece9410000a90be6d974767e176424bd460c5907b2978fa01c0c5ac03bd629f2915f6efecd260000aa85be27943cd35c27cac1b9589f9e2d1f31066cc29dd2a6e5d8aa86efff83b4450000ab3ecf7126fe710ee02a27fe2ea28ccdf82cbfa95ec8a98568ba4c5fa2d39224510000acf7b0f0ab329c773a519135cb18245f57f765e705fef2c85ed616a9ceb29193540000ad65eb79efb65ba518ce57da62e939f5c33f75fb5598922320b476bd2c845e7c270000ae28f4d56433a79f5860cf3389fd16e2a039f74eb53243c2ea723d605d7aea6f7a0000af66816dec443813f16f697bf82e91024a22fa03038a4855181b67c82f9fb8197b0000b0a9962d613420e3f2b85e3e5e1075c5a7a54af70c8be7b1b2e5be1990c9ca174b0000b14d8e70e5324afd9602fcd1b02b5a8d5266676e930d14c8ac3a57009263d8d31b0000b2d3578c87cff9ca77437e12fd2b6f9e9eb37afa9220bbc496a1b4a8708dd195310000b34c57d933e054a52280debdf5f34edfd5138eb861da91d1abf29816339893a6300000b441d07050a76cf79a4646705bc367fbc1c04fdd13c84ada183a743e9d2c061c7a0000b5f1e49b8be66ca9d1b54175a45b9a8e77a558687ae0c4a4a93e5d2e0bddc9db180000b68f3506be9497a73a764c09ca843f5b12bef3644fc2e8d90fc4537b204b15db380000b7dddd9ee0ccec5fad433d8b5aa745cfa0bdc8c054fcad111e5621d4dbd31233370000b8a9c932bdf86da619b24fc02eca9bd3d81f93d0b1b672f3ec4f6aec4e25f7d10e0000b9641efb45caa5f2ef47d782c316aa9eb7536906f733ba9f4039cb9e8832069d7f0000ba4a41b840d21acc20b62168fc21a900ab668ed250277e309293ed5f6a7269564d0000bbff760449698ddea18055c861b2170149c6d23c37cd331a14f5908ad8dbd64c680000bc850e9fe274c3af2b596396524a36ae39d6609e02ff17cb86d60e054584183f4f0000bd561e574e4ee83da7d07aea7eb444dfd0b16f0be9e5419a16a7638d12b90bc9480000be570324301315cf7d00359e3546dbc74453668d5a08fbbe48d08b914d1013126d0000bf15d7ace90b6134fc541d387c7d5ff9502db3b9dbbb00d677cf23e89381058f310000c09895f33cdb4237ac76e1cae6544c32422194fc3ff7c865f1beda569c40500d5c0000c1fb87b479130e0580716097032245ba1457e5453daa18f92c745d10a9d3cbcc500000c249291c1bb7dffee4288a3479f2b0b8643a36b7e7195b50ceb5c2034c86d3b84d0000c35446bb7937cd562ae7c3f1b8bbe8d0bf314fdc44a46b2e94fecb797b5027321c0000c4c9e8b4fafcb9b8f2e7ace379f54a0094afbe714c5d44ff587edf03b53b06e3620000c59ff2b24870d1621681e10e1acaddf06889bf566964a60d0ee75d374d9d3d2a160000c655a2d920220c474277f3d2df2195ed45875c54f76e6f8ad65f8e633eb13c91720000c7898bae5a115d9529b6eacc7bcd83f5865af11b4813fe01e4ce7be5c74066057a0000c889ecd19a310d64e15c8617a299f7300dca7a75165ca4beee9ecd450ad5af8b620000c9f27e8d33a35d32cd8c50e0da9e0d9132c59f25568ad44570256007117fe5af5c0000cae20835391c10e9da056c7ac2bfa8450b4b39a6dfb150582238ebf3d347c884460000cb14c4b1a370cf82fea143e5996271159dc7aafae5e7d4bfd9dc4f99bae807f76f0000cc1190ac1dfcfd5cd9c8aeabebda14e097aabe69ad824ad9adfd3c963a1508ca530000cdf88ecb3772925e10108853076993398cb61483f39a9ddf7b68cbe5507dab5c220000ce3749e8a6d0b569746d06d04aed1a618882af77f4678ec9ba4ce3123b390d58250000cf9e5090f453989b1391c830242ee44712c2b018ba7f49dd230f7d7ddfe0b7a1030000d092c9bc98b2e1941c6f33fc48a3fece9fc011f0ad7e0be4e0005afb465548c11e0000d17e6728c86ac7c33769355d31d39755c66ab5d4f997cc9fe33f28da8cdf8c86760000d2820c9097d46577def8db4d28740191004fc047f1bacae74fa72f9560761b9a090000d3a8da69cfc4d8ff939747686ee4649bc44d372c8a615489e9ccb4d746d20b86540000d4c92829b70ba0d346a12ea00f231bf32f4d5a4bce1fd0f1b39f9873967cd06c580000d5ee031a6a8a6f6efa51bf1e1647756e212b5f92c9c85c07744647440be46a51600000d62a8a06fb28f8448a8c0425444cdef4c307c2f706d163ef50e83fe6e5afc9ec280000d7a7f16cbf4ca274b72ef99f3b4ec24a53ba59177ccacbdc47c2506eaff7d1e4300000d81a3c5f6ed4de201cf5d30e2dd0f7fbe968db643d2dd96dbdff8c63375965bf500000d96402dd27aa441f63a111504a30918f6553590fb32c654932a22e33084a42ec770000da8546743101563b961a64917608976456f4467c040eccebec78d715948ab13c620000db456c7c728ace1cf388e7f6056a45cc15a45f8a19023cc90dde1b4af4755ff20c0000dca7a304e54242fe2a828d5631c720811ebc980ba3dcdacd35fe847fc094d6a41f0000dd9040fcd1ada2d53583125f99f4d78b5746a8c306c15eb031a7c1e7cfc78d9f7c0000de20a3256c5e57df64bc8465de30bc935afa3b63805106d7ff80ce45476553ef480000dff6476d73d27e1421115d36395552e081712b6761f8ef1666f4cf5da862c035240000e0c956fbcd377ff9ca52103bc29cc04aa82c9b3808e4fb2f4b624aef39798e7f290000e138c42369e42bf3e6fa2c099eabf4dd7581d63ceea97407bf134fe58df710e1560000e219a7849ce8f1751f7acb1d040c3df21af5425d53defb3b574fe42c95b3278b430000e3c689c08660f5736ef4757a8552d0a7064264575a9a8e86a18b35862e5a1250130000e40bf4f5e4c51f280685635850757af0d3ca0977ae3f8eb850f7e68b710b313b710000e52879f75d1df7bffd430113051d4b31ecf1cfe2faa8f32d5abcb84fd6cbf8707f0000e645c70acbbb51b41d75c0f53e533952e281d68c88f27791c899b8382d0a70cf370000e7c2a19e0c68e5c01264cb90ac7c9060fd42518553f4375765e96b1b2da920ee380000e865803fbb993446fc5c77db25028c3fc1b119fa957644250bd9da640c8bc03c110000e9c58db7b58ba981b300c2dca1d5058e3612a1aa993d0b377a321a208dfee991070000ea3f47db85fab25bc387600f0f8d9b86ecdd40e459734e450157e590c7587e61460000eb676803b306c7e740723474bd2d023e8feae96bdbeac16df5f17bf5af3ca4fa4d0000eca5677e07aef41d2d82fa8b69f9afe9104cb80ab4e5de331103f1f4b7fcc3e1790000ed2bfe26a8561d9522a4b0fe3ce67cd628c0ee9c7bcfc710d5e64dc70ea546951c0000ee0a8ae42085b9c2195ff81dd8efe431d75567951409c1c0d596c929bd4aae0a590000ef9b4d07842fe1d8308204e10688a128ca40215543772b9aa7cbde5222e2a4c96d0000f067b7e0c7a201b9a7f38ed57be763c66987e556a6167b572ea3b8da9336f6ae170000f129ede5046ba76a33b46f89f630ccdfd4fc9758beb0af6aeacfbf656f8e4575640000f254c1b9ad8230bb63dd8f04b7c446866aace0f22308535b195ed39599f30092310000f3d0a12c80e76a25fa3e59068e0d71b2e3e3a29c2304badf65bc800acfcd3547790000f4fd560cc1b82738054cce4e90be714aadba4bfaca8ef94fcd63a1bafd49cecf050000f5f4316705daa3beabeaf44dcb784c8b371ee7ca7e794f3b1fcd84f55bda5028340000f6b8f2a3d7aa3f38bf4beaa5ecf9ae70a37c80928b815db6fd4f5e4e9d85a4323a0000f77e06f2151fd506ff10289b87fb95e46ccfc014d2bdb7e1a6092723f2d008ad7a0000f8ba00f05d3a8beecc57564c94ee7a2145c0b62e276b3dfc50083bea92d2c816080000f979edd3fea997a62a00b7da9416675c28a0f3bd7a2663ac2c1aec6ee72c73bb4b0000facb360edafdd543fef5bca4ca6f2736cef92e4daccf89014e0eed1999d84ebe280000fbf802dffec8c6722aa88161c453054274802af0dcca246ed954dec48e7d2eb4330000fca0d29aa98f19c5ec74827223f82963ecca8cba7ae674e04a2a4aab46074a4a060000fd63c33fad8f4b97ab0768dc3bfb83770e39e9e87fa97b26b8f1090061739352590000fe42b6d3640243190a254273c890a20747a7954d574fa909b93c9ec550697d656c0000ff9abc64c9d01283e8a1df1519107aa13cfe519882d80164c758d7385f1bb44a1c000100e43ea463e7b1b7c39d0acc9b5b85d651e5497448f234a3666ffe96bec6c3fd3800010125edd6d9b9d01d65c601589619cd613ac75cf8b4020958e902ab28322645a12700010250e588fb8d38039a7de59e4fe0c8ad40c0805afd9be18deecafcfd5eb34c527500010350bff56d288431aebd4abb4c15bf652f6ac30e6ce599ff1ab36127b41dc8494c00010443f2d1a38ae1feeef67fdf507115d96c8bdae8e71ab8411c6fe8fb2d7f6c9d5a000105a4ef749b8c28773c74da60861df4629ee5596a34f9b0e687ae82c3804b66f330000106e6ed4412c6f40331495b5f885414b7a7a807ff3b9a2dffdd5ea70bc3846321450001074b7e4b95a63e01eda001d88026b66f29be6103cd584813ff757f57e5c0d25e55000108c23a35c1544db56130788c9882b4d3d3db6da360db470509ee2ea72132048d01000109d1c4438ce0956e47a5818e8d66ef7f56a865bfc415191120da6dc98034d4f00400010af2e2a11205fad3bde0c11f82fbf2f2ea598e5b6756854ca408a87a90293a065100010b9a59c213943e01db44dade9b03cb530837874f2ffa9d00fe00a198f53904ca7f00010c6f26e312ebd90a7cbbbd0b2b81548a1c484aa494501f2ff8e0083dd7bcc50b4700010da28cf13dfad8db6c8012c445efda00e65b7dc84e00c507cda6fad280a6c51e4300010e4a04ad3b5abd07ef927110df5a6ed68813f9a857024450eb1fb717019d64235b00010f643bdb7b11ecbd4abc42f99e33d972110a68069775528fdcfb6c1b25c26a192100011020ce2f0ededfa698d1e3d2537d3c4cfd8dc961f0c05020b3a68e5b005d3f8e680001112bbbd2dc9d5d63cb3e888306faf5a13244c098d656054bea8fd9fca90fa2b515000112027ae90b1de06244c03b1a74536aad9d6796dd96d9df9e4e417a9e3618b4c115000113d09447c1f09da3313312d00a0242d00b314a5a5e85dd3da3c436647a2c4ffb120001147dfae837a6799b331a540c4bd491a411662386e73caf3195a7032f23998c1d5f000115734eb0b0c4e45dd1aa21f5cebbd3d2607fdbe643d9ebe50f937a6dc85032f65f0001167c3a08c2ed13caccf0423507035aee8ccf395ceafe842ede698548aa765ec1500001172c4719b7ba20aaaf8819afb6af4de89324eec21929ceb3bee3865902e554f022000118a429d8b6823c67c60223d63c313c594eaaa12866e2fde0329f51125b18cc8648000119c82daca6cb849000630e7144ff34a08dfa9f39e3ed0a4987ccd1b399100b4a5400011a47003449731f51a200a91e40361b2508c03ef1b578927e308ee9dd335316f02700011b072e793de1ec8115b5713823c559d693cfa42a9fcbb519b765ac2faca445661900011c49d88e69abcb14d36a9480b680655ded27afb3bf4a7480b056255429310e332a00011d790d49b47879e933e43a2e7cf83304141b43fb4e67dd84a6876ffc0ed99ce85400011e081527162646ad8183788260593e3cae9daae589e37072c32f61cf35b8a37c2e00011f7b04969a34456ba21c461197090e2c310bfb4f668a845691d47497a4559e466d000120e97e981bc2e98243a9f432d73bceed8f178c242681e8c44cfce1b8e0b7c4c95d00012157554b51101e8c014788fec8ee94070ffb03739a9395caf90f945bb0bdb7083000012265dc95c4b40df688ad6eec67d7177f35e88328477d254136f38db280b1c48f22000123477966f5d27e8ad5b915de4a7df51469faf10f861a18726db4647793320c5709000124f9b646a5cb13e2ae7b7431f78e64a0e61abfbcb51f553acd1c17024e3362400b0001251939c9b1f0dae4e20976d9bbe2ccd5661515d5591387f7f7f8ee3a4e0898dc3e00012653be8ccee4bba6ebb616a3f540300e0bbc3cc27d7091c09b82a1a25a4fd4a358000127826658b4b761331e5f08e7212ab65cbe40dd0f2a47a0d8f9be664bda7e6df7470001284d358792ad87ce2e10bedfac3157d12bb5ba10d7550199982e0e28b741cb222f0001294d87e14a4cc8e2074b492d7345476ff259d244dedd7cd2afcaf6b5cfdfeebf4a00012a70fc29a5bff91b84df37bd769a4ea13f616d30c3af1a0bff15a524cd6db0921f00012be1237a5547eb7426c143c3c57b20a3a1b782b9c4260b526dc1d2181f5004ad5800012c7fc82ca4173c0a37a37abe6ff7adf11b094fdd5a8e34308ff1eb692919e0135300012d6c72522537dfa372cf27787bd9336fabd84b371376f13ca65ca400f9d219fc6100012ef3b21816320e552b988286a14b144e47ee3a6a80bcf38e15b801a783bebfd03300012fd8dc60e834a3b169d3cd9de8747eedf4beda6f824096b6b0b221b0a1c22ee83b00013065ab79d25f9dee8577d41d028e5e43d32c651814a4b455c2b8bd9def0f89d8330001317743fdd861d7e9515a55f7fc944ef668773b8e4e0da4110e10bc9d09c49d6c6b0001320929d53e7e91538a415fba24715e17aebb6dbef95f2a2a0fecf0d3fea0bf5b770001338231136af15731b057110411e7bcd56221508ac09c839dd6f391c11a74973442000134c91ebfe3650e15899f75f7fd3a2cbc35e5b7aed5b658af1d632a3e1e75ff2f020001352dd7844d820432018944fd1ab1178229c90d85aca1d94e987be5bd1a1bdeaa31000136ef2ca9ff64c51990ff304f2cc5ca01c86b4c3e3d10b44948f88235b0369ef96f000137307a9f2bfee0c75e0d2944e508353be48326a55bc7df9d1aea5c68f196dc257700013867d0e35c2b5b245f485b8417d5e67619e2a50c87e3056ee8fa2a2aa9159882680001399b0630b70c0adeb1f48670a0421167f4a159fe2e6dc2b7c08dc642621350f52100013a9b49f4586a449b29520d5e11436d526b5a4ffab58ef8e12d5989fd39f60f927500013b2af1a59893abb3e98d68915876ba5d8b184c6b529a2c2d782e2eb6045643cd1d00013c66e326573c2425c8072e1dd3e21f945117158b76cffa0a3844ca51bd73b98c5200013d4f6cffead795f180eddc6e7be26d9ec412dfbc552f3a3e07628d1ba52d45bb7000013ee97ac5faaafc0418bc48a863016b36b77c0239d4233e620b5ab9e3b3fd0aca2a00013fc1404c255880fbbc48b6745baddd0edfa3f8f0ba518be20f291a3a04c1ce7b4c00014016cf736e6dd473357e585415f5c93dc1c14de7e6b42ec34382683f24595ada7400014171f39dec9de28f72d2382f0724486a7cf3346ba807d3c87dac1ec126f555cf05000142381ae401e6547d7eebe203d922a4f2b04458be6c99753dbd6e11064dc774fa550001431e0f070de31c6bd5e865fb38a8cb8189f667f052eb09a3286b534c9d8556271e0001443e3c77e1bf4e57c00558fd73ba8ebe1f715016458aa50b082760af1668f9f33200014573157883ec5d33b2d0234d39db82d34eb9b191d85f28b07aab33462681c6c42900014682aa4f338e2141a5d57d4c544282d2baf9a392dfbeb368f144c20965b7a298280001473cec9baa90832e7cd3f12018de880a4072e220c4c01e563ccfdcd709c523d96a000148b9c4ff1e8f1f0ed26083f53ee29b8de70f8cf2b1b4cf18ceb14793e73dc7b9440001496b4d4dc4f9ffeeca5c375fd43bf2f8aaff880da9d1b9cf8c79f6549eb90c863700014a59c1391b010dcf73f3829fe5e2caa1ce0798493ce3a9d32e740ca11a29fba86200014be019bdbe29725f7971cc78da92d3acc8795346afe29fbb5f8200f960db66697400014c26908f6803af6841e23738dc88a3ec0b8eff2a9c273261b9a189090766ee281700014d3f942d1847c11098196acbdb1f433aa385909a5cdc7615db3c88b835b959010200014e5273eaa4936297ac0e210263fe1076ef4922d79f2eaf58f46f73769c0125441d00014f54749b3bf524ae64d6e2ae6bf40c7e5d854e7d09d8cb6ef60a22778109617f240001508bd1b61c6011e993d1aa287dd277b38be1ab9b30f7b6609e7b1929bc19a8372f00015172811e96445c0792e6b736655fa389fd2d5d6a18c3231bb6b5e1698262e13c1f000152a271877f0c4ef74340fd817ce77b192d3be5f9f732993d6d8bdfe65aee5acb6a000153474c18d80722778c05bc8a079be7542ada52997dcdb75a9914fd01831ac61241000154148580832e2fadfa7e1fc13938511c9ec8e2804e35a7f18049ac6a9515b86338000155e21d98e84161f39efe2d2c1548eab89e1dfa8fc284a1171d73e942c34332490c000156905b5985399ce2e8ec5135a191d69a89119449261c7319eccf6a696dc2cf9f4d000157af7553a6ac1cd225f1ab87589c82b6859cea167304d92ab4f03da4c0bf50921900015861ae33c501b45e0ef9f80958e22c7522785665e0a70139fb7a75fde605101c060001591467e5e3831b5985bc00eaddb533ab6de4fd8bcadcc3c703368a476865144e4b00015a3794e1bc8ce3b9c5fb7693f76bedd4264f4d6e0599a7715618132e29edf4537600015bfc1478574987f3caa402efc78e6474ff5817f5b2b5874f4aa8782146036a1b7000015c58e528cf18db618df9a771fe70ebbb931086e2410b6482d16b3dfc86129f0c7900015df247f9155d0b322ba0134780bf69c0d4aa6204c58457d7694afb81a88a94fd6400015e9a35227d40d58024824bde1bd8ddf1f90ece1415bf1a6669fa57003138a38c0c00015f8f39a64d8bff347115406dafd7940f301ee4dea69ad5d9bca4cd18c7f139a56b000160459931225f2ae02b2784fd3d990903807c39eebc4064fb1dd4679d4617cd702c000161ff7eb5223c9072e2782560c756b35589685443b0e5b5deddb161a8cd6e89ff1a000162e5524d52827b6c26cf82a633dc9f73180422c3c2f192c923418b202b74b0dd7d0001632da96878fb9064623bc815b512d27b7f56d0dd965ca7f775ca0212207cd79c64000164cd427376b2c8df35ae4a72130a63a85037a11c4fb6699853001334c0d5032074000165293cd278ab4536407c67452fca48cce0217e23c8aad92c4dfd3191cf993f22260001660198d92efe7e3c07f9dd83e294de29cbb037427021cf64ece346185e701d7563000167781311dcec923dec8bd66d56b757086e6bddff5855f6bee4b3ad52d1c45bc9410001685e675e45463b2d047dad201021c15311a6ab034b40be2fc4d1643fea8859c83a000169f8b4573dc3dcef0096ad21a30ec2ace767a0432db02092f0eadad8bf59142f7f00016a9be67aa10d60d67fadbf1ddff83e55b798b4b2ac3ad60f4840b65a817b7d6b4a00016b2495409e616957362e4784d7e589ea7be4dca281972b034ed5103385e844c25600016c579453c7024ac51f7fc393897dd7c8cf497e9b080a8d0808d677a1e40474615400016dda603c6cf37d289676e500f6431c99ea7a918d63c53ee061cec161de7dbce11200016ee126e31928d3ac31a1e24524de78c9da339e3777bd8b7ef80cf75db882132a2500016f1e53ee9b63d838ef9ec93847bec2239ea88d894646f9e3436cbe914febcc343b000170e910739bf0f76925d48ee75ac09846f8fdbad7f9ef2888dde28bac57770e9a2d000171d4ae623a37b0fd3b4c76e645194f81265c652d19bc4029e81f46f355ea89c937000172b0010cb1be51da96fa00f534d816d581bc2d3b1fbb8157504d6b19bf3bdbac6e0001733209ac54c26d359a5f2a6df0b59c354c6a83f8683f120045bfcca9f56fd1c569000174135d2ff02ca560248d2b7a2291723ae30b50cff0d61dbc9835ca2226beefc737000175855ab562884e950117a11544b69fbf76381be238e706b60b6e2a9824f0fef537000176f0835c72e40620007619446bfe5fb63a4a4e28b789bce77b75405e96dd759e440001773dc297d92b49cfa9ccbf0f3e4d8759a0d8b50241436b3603dc370e3759c4d970000178930044da020462b18abe534a2e3b73664969d8e870f9ab02b7965fbf10e056120001799d8b4a5cffa414471dc08e45fe463f823984d9fcb31ff52d68b97cdb3dff770900017a0900b72056b6b0a8f47e2fbbc3c1bcbfbfa4c60eeecbf62f627ecaf806f00b7b00017b5bac297222e7e981bbd3a784d6ad0361abc1a015b3560f41a1f3c8ec71eea16c00017c497e2682d03dceea8bdf487bacf50a3953ce87a59974303d2da03337c781ab3a00017d441be135c92b1f7b07ff9ba91f97f493b3acd1ab8624cef86e6a808bc0675c0b00017e7d1d4a640acf759cad28d6e52cd6a41211ea27cb6088f63697bd1fb86b31ef0600017fb90611721edb9216255b2576d41c0a5f04c609654e64060be27b75f472a11c740001807b1889c8593c5d98bf7ae2e292d0e0c6f4f9d6831b92220854040ca4c2586748000181df54da11ba51901a7c2c69c268d54bbcb4c8f86f7d4ad0796280b25d1209961b0001828097b7b2df8e75e4ea683c2efdd6037072c584a3d53168dd06d438604b5599090001834b8a85ba026418762f84fd35714b0ebddcb25231a61812f8fa18c37e65d9f56d000184850d6aecc784223abf2604ffcc4986d17db63736923c31ae2abe96fae0a6366e0001857d45f426ec3c84b208c0bc46181c1655d3c7fa77ec09074cfa3b1b66392f855f0001862d11d255dcb62a6701f5c18ef598d750d9e0514cafd7a28147a28de181bb667d000187e954640dc29896feabb552c9097a5492e06c1f5013cfc01e15ab4b773bfb8c58000188f00fe9c3b54c4ffaa3110b9c1d93aeaee44d4859914de6de2e04b2241220e557000189df426be94d81272accaf9861aa1fae29d5abd475796804a54eb756ae16cda46f00018a4c92d5f071f2f87c92bd1c6838dbfc7ad338336168b474d7fe7b877d2c56433100018b356c5c7a6ea15021692aefc237e706d5049e917769e40e4ba7a62d4bd1c73f7700018c6a621a82a0f4582a4c2da793d428a90f69fb5a8175eac625659a2becd562e32700018dd0260a6dbcfd361b6540e11f91acd8aa59a7279c70c72b3fc5421727c454847100018e39dad718841a2c0e6b33099955184140aefa2bee7bfe6e2e6da0b80e092ee71200018f6149917ea0a339ed388b1de520a7c6cbac4b5e954f916c10227e15ce406169030001903eab1149f43d121edf27fe54bce50506bd08d66fdaefbe415fb6e3b1ccd9ed380001911abf4ad12f7775d24113970d2a5e2c276f866eeb631eaadc7e1ead12aa26526a000192d5807cd383ec91d7a4b6543b72c76fba8696a9f5317973a1f42c6976b08d8608000193e6dbf06c6255b76fd0a4e4508fa29036d7c73564f28df11e3c6f763df781da4c00019437f71e889a04ccf02f21b1ce2b6e186a4c1d4875b439cd1a9f3674a427e0942c000195269a0fff7a67f93aa163a2518e4018df6280078494481a61ec1a36a7799d712b000196d76f98356a3579a2426dacdbe61de72488a615a97e42384fedfe3a4fc708422e0001978bf1166a16712bc8f95b5340d115c492930c165726dddf3743ec1b13a20ea100000198df82ac10e01ae930b5a18dceedbd5193cb3b4069c1a86affad3c3b11f2adba2e000199bf824fd23503b7b3ee987045217874be27fa18f65c3927b790a72602977d2f5600019ac4244bd51b00ea762dda5667ac781c86c6522844d7ea9955e1dc9d48bccaf75000019b9ead13c042d7e0f6952570637e5bfeedbd130e36cfef45b33890ffbfdfec410f00019ce0c8eae1f11d9bb0617d0a4f3d612b7e7b0f6bafddca6dbb19bb04200422923200019d4eb741ae5bc43aedda44597607a7362594ba026653f075602a65fe34a2e2e42100019e5755b69d9f801db78b6d9636401149cb086f087bb9c1c0385e445dad7c8c916800019f1a92936cae673a85c249dc825faf3a19a20c33ea47a61b763177cf593c320c470001a07b5782bbdf1d39c6de2ca9c734766eeaee30fd8b132c5b3698621ac57a0b092c0001a156951d7b3f5e63b65065acd660eef1f98a73ea4e9a113cf250507da687fd9c2c0001a2fc887e60428fc2c1e996eda85b9d90cdeebdc80685d70c35339ae253316ec0700001a33f5d735321281d24cbcc24c7c759e684737bd49368586a04fa12fd96668c030a0001a46f556a1c1ede5df374e85f7fc1e7787ae0585947e3f0fd0b84de443b80db283e0001a5e562ccd850263cabaa758cce24c05eec160de1115fb7fb44186c600f44e7817a0001a6557b1a1f0de2c638c28ccd0ef1090b24985b51ba239e40df2d6ad1bbcc73326a0001a7e3deb4ca9ccf65a82010fd6ee3f3edfa8e0d8e6e29a0db15fca2ce0eb0be75280001a8b4cdf829bac054556918edae7a87db262ee19af2d1c3c2ea85f911780fbdd9600001a9f5b8fa4420f4a8712dd02481afde46a464c8e4a39ad2df14ee63d2ad61fcda760001aa566bd000d98f5de90d6850c8800c74a381ffdafddf97bdd1d1280f90300879440001abc39bb9d3735c44a411cf54db1f5d5dc9810282caee5e2a94a21d931d430244600001acf8a37dc6e87501e89f0dc851344e6e2564a9bcf364480f744a531012b09622250001adf35c44693008ff9e56fe5fdebca8298aacd53e5af52f759e4d1c84342c548a670001ae23573c1dbefaf79b329c7011e9dadb9bee493a7c5e8f68496d28558719d91c110001af9e1efbc0c7fe2bea121c4a5c1be3b279bd93214a46b83b304aee8fff54e7333d0001b02884baa52a69bd350508d0404ee94d9f80838c01ea16302183bd9f9c034208680001b1a0f28ea67e755e7783bb1d8cccb304926d71e58b3cb01db0b033f29da5a7a9270001b21c014b92307f1e4f6634316356d6f314441067dfd60ec88d63019bbc636459480001b399d5d036c47cb910bd91675329823936fd8cffedfd3673840122d3d87c7014090001b4013392a2dee4a643a1de66805f0df2300bc48ee87a2a242accbc3941fb6a94310001b5055b062ed3e14920d2f39f1b366c568f55b3953228a21e26c158dc4562baca520001b6828cef37beb24dae8d63524040e02f9c50787e18d2b9777b5681620ce38a20190001b767e2d57f27cf09f52d4ff3cb987fbc3d6b64a1e37456448f38d4344df67b98480001b8fa93c8db44fe60d87789b8e0759800527de41e35ff96a8ae31c76fa191a9a30a0001b9da7242b8746f613418f0b14cc7cdd7f5c4d565ef6eaa21f65f2bc9066eb80d010001ba21ffbdceb7c854b9633a04e7a1f8153cb5d1075d6a25795375853ff7dda310030001bb7fe5831ac3a097a1db0a4fe2e7213b3fcacf31264f3255dab1e764f55ecbb3060001bca1ceb1f56ae7c3080ac69bd23c5eb7ba095b14f7f3fbb4c40367bee5fef7984e0001bdce658a626f4011dff7842594d968c52ed86195f6367e41b191dfbfc00053ee390001bee3966412e49ef89a080ee68813ad758409fce9c524eb64a3348bb17554f23d2f0001bfe7ec54964cb53b1857fcab0cefbb68122c1db36ba1095bedda325789ce12357e0001c09c920aee5d6fc734a80a018dcb64c16ef4ecbd27a767cd629284075fc973d9490001c1ca79ea084b8eab0474df8575172c19628c5540f8e99da76cb275585fbf6d446a0001c28c83ffd631b3d0cf884ac99911d0028391bc31bd4663ac4d168d66dcc38a54730001c3ebbd3c050f83fa345e017d901a528abcffe31a1c7f27f249d08ca8c49394d30a0001c446cfb092512d1181cc5cfc17bb18964d7414bc254c24bd8760ac3a8898a8aa760001c5dad3492b0cb424bdd4912def922087b6f4cc3c2639c1cf358280ad49093f2f6b0001c69544bd0a83d1370fb4aa0cad979e0e30bc463ee334216ec6045272b95725ed2a0001c778e51d28ab5cc2de3ceb9c51128c03379307f8085f6322a4c5ebc74ac0373e220001c84863fd03eb7d979139ce21090c4e61c2e79cce43cdb4075fcfe31aaaa66f17700001c9951f2ff3ee32c88f4be7beed7302e10fd73bd5ce2788bf970b8aa89ee1ddd0770001ca21564e08bb77b21127a75fd9f9c828c5ec6dcdac8b536e0a7b6e13620d95184c0001cb90b11503e450df925c029917a6a9070ae54d54fe8b3ed2c9a76728eddda5e47c0001ccbeff12b81bd591d5be79edf521796aa82cc01b244fb4f7b5b531e7c6b591d04b0001cd8589ef2a059854f3133904ef82f36c13ce8d349bbb66580d2e98452e23b83e400001ce67949f6385305d113f310314dd1e339a4830222ad2d8372541b2dd44b1c70f600001cf57c1ac296480803fe713d411167e0988ebe87ecff030e78b568e502efc595a0a0001d03c07531563107a41b331e6d7050313fcf0a247c84628cee123acacb11671e26e0001d15c530985d78f368ce9786d4628b7f97253617a613a19726c536373ed2ce7ad0c0001d2594773106dded6e7eeb43cf7ad0c4faddc2878c35f166ed96f43273dc9502f690001d3d4577b6a7a8ab0219a99c861aad775561b19641537a9475f9b594c9f7ed7b8640001d474b08c9666d46ecc28d112bcd9c6cff08b192e41ceccb8432fb44667294f8d2f0001d55c789628de084bb010d53b72bead2fc06f8f966dd29e4be3e1ab6dbef382494a0001d6adb2315c65def6f0897f02c5a66953779450ea34c64ac3df1037f6364f10ff6e0001d70d4ec6d2b2e615751a116a3a09311e63b9614a43a8479b4d9675ff6e81514a200001d84c517f41194b689b2aad162de8c6381aaf7521aa3d2c9558130402da4eb3bf7b0001d9e8e4b1b6afeae7223721d7a53fcd45476210e0dcd0c687985f7fa661c85ca44e0001da0de29c830af3b5dd68b4af8d0bbf5a70b64dbc87c333b41fcf9529439ba19f150001db7555304313173d4794fe66e0a9fb54813c01bcac9ba4e3f64e12d4235b473a2f0001dc25f0c9789d667d2de4aab9a2c34f3bb83a350fc53d747f753eb9b582519405740001ddafa475b15abf90f9f7145c54f8f77c6e1146cb9e3f537af75e176eba316c82740001ded74322578610503e3be73594099a94695d1cf541936db5c3831f7f1a5bfe84220001df206bd6548f0560705d82dcdc01ea39372d742ed5ee6f7a26d285a8d89514971f0001e08576cfcb108088b93812ebf24fcd5830471794da8230fb380053503ec27bb95d0001e1b0ada6274bdb85f3ac25097ab92d4d9542998ca8b666011f78d4eab92d56bd420001e22925e173ff4fc991864cb482c96a7b67ec28f2352155366089b2ea9f0d4252480001e3dd989865d33beb64a0162892abebd851663da317166923cbad4755af0bbdf44b0001e4a4df12d42de56dd63fa07ea4e34879ab82c52005ae5af0e9e26be530c53eb5480001e5920aaf1632cbe3462d163a87a81f719fc5b6e8fe6488808120ffe6a90df8bd5c0001e603865b8e4b868e105162e443d9459322981f87d17c45ab35474699aec9dad8520001e75ed5e8ef69bc6dbb48c0e575a4c471b617938d2ccedc7802bc118096f8da7d6e0001e85483edff0d78e375774cadf34c9e3179c4e176d4b5b93440be953ce059e9c61c0001e91148d071eec4909a927784a64d0e4013dcbd452dbf8625251af6f642b4748d000001ea365c01c46c87de79fcf83e4834445bd0de5b70eae81931f676459e3bd226e0210001ebfb3f1e9acda1e298d0eeb17164dd4ed32bfb9d262b7fca2ebf41bf4df15bbc070001ec192920cc07c830a365154c4b7a8241b7463b420285346217d8883d77959d45490001edc101bf5eb994d0944cdbfc9f33e52e690c7164cedd14ff919d37ea2f9298682a0001eed8b070e6e0e716aea93fc8dfab0501a785ffe7db7609a9570f2a22aec97b5d000001efcd4543e4f75a248976d03bf9f4938ff71078368870b8826073f52fee57bbd4000001f0b6b636d02cb6fc457536af6ff58329433c6cff4225814e94011f269f0c69562d0001f14a133f00e703959fe9fbfb17c54fbf89233b0cdde07be7b8d024c50673e3f90e0001f238785ef2a045ab2487bde8187fa9cbb003657f4d7f3eda019bf142665f32dd0b0001f3e1ed34e9daf470a1e0d7456b7e7197ea2ebbd6c390703f0a3d63726655f0e64f0001f421f093ddecaf5dd5995f704d9c9b4514d5ebd1021115616c1f5926001246f1010001f5df75ce0e583172b55ef22710faa278874c789e7d7375bcc374b9ee0f79ea09790001f6a83e8871b0de4c486f5222a632afcad04010523ab60b2d87bafb465fd229634c0001f7a4a97cb13e9b26ab65976e33379d2cdcaef86b860cfb0ce6a52aa68e35f4b12d0001f8f3df05aa36f784d13df76659d5b1b666f7f7759c1819fee7b1ab6c81e0791e350001f9f64d4b3e243070b505a7430a06fd4c5ed32797d47cc37819123db1e061da3c2e0001fa695c5cc2b63d3f92d00d06acc0406d1456869edde04dfc69ce7b6572190a374a0001fbc4a7575a6e57329e008651643bb06309cd82625087e0181e0c310e63d2032c480001fc02a5912878d79ca259d613700e6496a290d67dcbb6d8b149554c0f0a5d992c3d0001fd96a78c5f5ee5e4ba68afade2c0848b465294f83d50af37c99b696888d391ee510001fee7910fe21beea07079109405a8c332d0f9759a8b435039aa30722c9547c0155c0001ff7af47d7295fe5f15a81972e2329346e1ec12149d0fa8c6509bbab1fdd5b4226e0002000b1ace91845c9d3b6de4ce18ce4059f964c9d30c779f3ee77898ecbea2c5f4670002012ef36ac13c44cb5ce5eabc62564480cbcf471cafb979989020eaf91f1d483826000202801724e997a2f5369da85c68695a15da9e3fc4415216040a82ef4461885f6d1f000203dbd89484bacf676543057af51111cafac1f57e611ba6df91e3a5cb21fdbd8714000204b282641e6104fb0ae043adc062b7aa67f98535108ddbefc339ce81220c941817000205abbd76039bec9273d795d0509afb43d6c7172eb13fb1c749cca4c2852ff7ce7e0002062e9bc0a351a8529919563fb96692b9a170754116a07cb76514d7c3154d85b807000207f005d549e8a435dbdf7a9ec3f6dce7547608983ff183fc618dd54535f9ef1423000208e7f0f4900fa7d2a30493d158f1347dd55c969736f0cce7655ee3e26d22bdc9190002094abad2c92ed6dd3c2f6adac8c7532a98697b4b84d7f80b6974e3664517b9913a00020a2a7bff756c51039d74d7782ddb103e65d5e878a9d7b4b0a1d8dc5e5aadab4a6200020be2e442f89d0cee748d669f4902ae547183e60bb2544b105a68e2a282aa877e0600020cddd5ae2639a1b4c053d33749f0d5d39c619dd0f6f24bb7d90d6d19f45b67062d00020d851aab015b7489a2bd98902ece608f9df75c1a60cab2586a526d863152a8d83100020e0e31dbc7bb951f7804b4016e8c6be1fe43b875ba53ddf11841e4496cd60d531700020f2590b7939be3f51f048a8654dc96e31be83f972e0978690db4b9e6cd2be27d3a000210ccd9b6235be96c9eb7de0b5838cbc9c61e7589abda554426cfd1d63514ff265a00021161254ebbc957f4f00471b382e716a5dd2fbf137669b1c3e80882762ca4cddd560002125faa7c16ef546fdd5afd1efcb04e4d5024a15ef34b672ff47aa68a40291bec620002130f0c527fba14f3406da9181752fc311d8c4328903500e68a773143db2f628c4600021416690460bd085a810b072c6fab331fcdeaac328573f232ee89b72b2637af663d000215b35888187efb911d28808160da733c9f221a6a28284f053ca7dcd811541b0800000216623624016ccbe4b17191a5c5744c56ba911f520d0a38935aa41dfaef3cb48508000217fc641c40a600286a211a33ca5fcf43f428f2c88c77a357aec153c8d54d94467c000218a14314669afe070a9f233684d7e5ec48c452a9c49d39caeb62b1eda64ad86b13000219dce9551d0626f0a9b993ce838cbb00c4d8f46e269c412b45b0b67d020c51362a00021a00ae8216bc6f7715fe927b73900e5ede308ce111c05b82a367901bb88ac70e7700021b77b7fc1dd092a6fe9e4b83e3e384e493b2b208a2f25a8913b261f772052aa45800021ccb118038ff174047b7b7f24d15b30f54337ef52549c878adf39f0f223ea7922800021d1eb7a9852a650e4ccfd5b5b9c93308e9be09a9a0d4f8e677f909a409cd5a6e2f00021eb1e8c7a97162157c73e6c372d989110d0a90d0de82f97362292204dbf31df34e00021f9cf4f56ae59d266285bcd000b54ff96036a72589a9c4a16a591efe859b94c7560002204648b36df39fd166f33e040d29e2ab909c1f8403fbf80f996e756dd1ed1202600002218f6229547a259368ae95e13932c0e58a4f6d81f391d29e169d60e9e2f5109c2a000222fe918c74fae5d6ba70ed37ebe1881e86d9da60f82abdd0ed3b06a7e2e8e0162d000223e2b01e772dc19a79d10f74746a1873c146104ca5fce28d9de2a4057d38bebf5b00022499dcb97fc83984936016390f4b441b298a53ca81d2a735e35eace330c3284f6d000225180a8b7bcf1d3edd42ebbbbaf63c4a947fdbd21979af3a5cd5f662d58007f0460002267efc95a1b7fb7617da68c6b97a37d5f7fd41ef0564cd43ee8f683c87091ffb4a000227c0beb93e07545c9a1e57b6cdc13832664133575870d0616808b3b43fc3aa2175000228ff88a956895c925ba566414ed56c0c977b471649ab9367fa867af98bf637a4440002294044b9dd5a42f51bf276306316398996c0159b4cc56811333e3831b0f5e5794c00022a6ba269ec1898a4569d4e287148b37663ecb25638227224892eec1226dc1d8f6800022bb8e2b965039068a8ffa3e941ab5137c94b075106fbade32bfdbb2944143d585e00022ced3f4a9db44f280f64ed9ba86701f0e1dab2a3e5548a69c97c0b37c16a9c3b6900022dc3e745668c8b2bb7fbc6b1d6366cb3953436cebc3cc4bd8456482ca14313f04e00022e8e835c40681ffaa3da79e5cf5cbd28a9febe29d4f5efbbbbe9507d6492f9e95700022f91b9363e5af6bc3f1b2dbaee5e81a52aeaab47fc2903f0e545fd7b48e4b9ff080002301e31ba079e6abe822ba95d56ed8f755744fc23281fc7c3e08526cbfb08f16817000231d4c15afe6f3f0fa2af7acea8e2cee4c79b7154c67d82dd097d1e6ace023d857f0002320166c5e20f36def020fd981ce9b2dd9f9ba28d3d78587543bc63cdc7bc4b2d120002333fa8cb30831668ca9d8f303cacf39b47228ffd0b37b762cdfd945715b23f635e0002345c21a4b7b71a6da4fe5ac5650e162e923d4f67a0c557f948c910e8a2243501490002358d32f99ba631cfc6521ed82d93b14f1e1a1555ef270b03231b180c166beb65070002360ff61c0112e514f04573723ac7222dc80adf0cb3b5291a30399b32f4997a894c00023729ff8d8df96967decd66aee4f961137556d9694ead10c7923a3a683e07df1453000238fea22bfc3d878ed0592ffd4a3e289ba10448c72d145cef0e721ed6a36bf90e3a000239a8230ef96515098d660d2a16e03fe02f5ea02774cd61b296b2bedf0012bc161200023a68949536b044ab1ba8daef068e940ac46af2a86e8187111a270cb70ee74aee6b00023be36141cb7d90291ed6e6f296836f4fde218c5a2e09330ab85f1c10333df07a2b00023c043f7141e4cb28086180aa86a995735bfdb1fda6a0a42c3f59edffd667c0436a00023d642fdefb20ea27f1670ef7e3387f6b4dd8e50fe9055273a5ead5573483d1a80100023e3110fec4cc6279c79dff9d0397d021bf8cd4a317f7b848e280163e8532aa4c4a00023f0c4d83cb6d95c1b126d445a80c219ea2a1cae7d64932d3bb3cc759d49984c77a0002401b01338f5a86ddb2d41870f48ff45cc43e34a722f35492eed642a3b795f7812f0002419ad9cede7ba570e2c7a3cae3bfcdddc5c8006455eafbddb4f8d0b0cab04fb919000242c73c6e8b1f34adb5076d67ed81bcd807bc8a40fb309b5a7cc09c0ac10db13467000243dd0558320543bc8d0556b002c4fb4f664724473cfde122d7b1be098a5b8d93610002445973dc56b616516c6b5d37d02d98a009334f539afd49586b25d9aa6bcbc10432000245dc3af47c23a9759e1e033ab9feca8bdd18d883801ba4f54b88b5070a9cd1c83e000246d1ae269dca305224e713f8a62cd212a9dd50efd359e9de7264ae3d8db333692f0002474bbadff8373ec6f93231e2c16b72502dde1b556589d148867d9a9fe4cc4f2e230002483beb91c03f06cf6879ffad9faee09424dd40a1ccd2531cd05c6810440236df000002494dc91cbb86c056f4053b251e5b958eb3c746b6105f9a812090510d1ef289015b00024a8ef9257b0f4ca69cfcfb766723a67f8373dbc050993ebfa214be9b0ac8c50c7a00024b7868296a87cf18d21eb2943931fff56a5fe4a777fe6ba153937c39a29335f96d00024c086039c84b6e20178eaaf2b0cca84ca0ac86a82794db7cf7b1c5f7ef6e93705100024d21d6667dba14485ae6262c0be755b1d676ecb479e1a37754d201cd26bffc1a0900024e0839ee843cf6790dd1fb5c9054c7a503584e49c26fdfbfddba67424c9b7c6f6800024fd23e95841476ffc2793557493527af8ca5d9ce538cd068a2c5ddd95e922c9b4d00025033be8290cf2afffdb834ff1e54284df97680e4baa8ed048a1c1c9a32d6f0337300025184cababdbda627aef33da1feeddddf993f9a593694b38aa6194f5a165d5c0d39000252626a2092cd4b9a6d4caa4903e374d58110a7f3e2e2428d7af3f1154ad7b99c0e000253e2b7fd863413d18fc99e074d873b3d1da1b158d24a84d5d0ce52bbccf1110806000254db57df35ee5c6e17a9d80cbc60984c3119ba888748a78cb9290c83ee345d9b720002556584a7f41f55603aabd741f1af241f7f56c540b2786a6addf56e7356e7fda2480002568fa4b268fa84750c11ff2d260f0a76f529cf1bee5f2cdbc8375a0e2f56fdee66000257d290900685de3a7df7c59c188e7cbe40cb9d8c08bf6d0f7fa375b7a55d3a563f000258938ccd64489a0284338e5461904fab81ec15bc13d0a56335b7c702c600ce944400025952445860274e9a02da357ad5459d59172c2d1ca77f40048ad0b201e0dc8a4f0400025adca7457a42c0acc394b17f81f312786f4ff4b4b0fe86eab2684872def3ea140200025bafce315021d04f4414c9ae7726094e0d393e496805b90863f670400591ed470300025ca6e9e66d9eb9483686bb884d05cc876f8e81353e08fff4e38efee0173ea34b6800025dede381b106ee2defb88983efa5a62a44f8607ccf7cd295d4fad7c36a381acf1300025eef5b4af2450934c2dac864712f6d7209e6e5c9a8ee71fd6805a6d8a800b5db4400025f90d6520c60d06e555daaca374285920caed31b3b8da74cfa5f85d45271996d69000260731db06ec6c0c77894912b260d5c17c9e5ef2fde3ba7f0a3f4cc722c433356740002614dcea270ac673063684c05a3f42f9216f095590fc68f6e526f5a6e950f0ef54500026245df60ab6a9f1721f7950bb122a53c4b2f8cf4d6b834ae2a5893808643f8c611000263f538121874d57b3eb6d16a4e1a5288de4d926e6ecd789c702ea74c4e1108ca0d0002649d4b0d25e1b0e1fa377d53a5ca5d3fed0f37f4880bf4a0964beb8f06dc3de7100002657e63056ba4b97ce3e9ecdbc9d5e9c1e315c0e6ea3697ffa346b9ffa0f4c81d29000266eef4940d983ea7455d6db1e960326e5fce6f06db03255679aa6641bf38ee143d000267344f86a0fa327789eb0d3e513ddda2b6d98d02ba41f6530905f0cdddfbd2d313000268efef8f8970bee4af659ca08b21ed825434b508a27e479287e09c3d5edca90a3d0002696e58ba74c2b063a8a4e782b7d72a920ab86759e1cf4e59880535720e6237ae2500026a3a72f7493011756956665c376bf2827d436f1172e90907937d50e57be948dc6000026bc278f7f10cd032235242480d995f974949b65f2c8ea166174e0101189189c37400026c459e45bab1da986bc4a16d4f5ab9bcad5a857e7390a912f9e6640e10efc26d5800026d7a82085093fde24e523bc2691ff1591ca211534d4f0a40d04f9bbb3bb1f8e32f00026ec38395ecc3bffc6175acf5541038b79175362477da7bed6327f8aa97d3236d1700026f5773ec1ed74130d9e52a7c865f532e9133568db85e63fe7d0d614c4705acde6f0002701fcb03aa5f8ec1a8c98596c7b85138e8688c091922b3c68d9d2f0921c229f31f000271564764150deaf4f3df394555b81e66a475bcedba2be5d4752fcd8ec3c66fc16f000272497855e0cd2a79bf93a7f1cd8f92640601ff8232eee8c1ae24e0094f852da9390002737da8be6d94dbfaaedfceeae33cb1b90b8b19351a1d8b26f691cfc0516fffda390002740012eedadbacc66e292a7ead5ee24e6af4886569cf5a65aa68084af7467c3a670002750a5ef656d5adb2955d6643b47b5d562cce2cc403e5fa9a7a8f8b0433ec3d5457000276bba835213f70aba4b2fbc3d000b957e52cd70790b4dfaf194dc4495b379f7e3e00027757fef04641c4072a628edc0739263ce76665f5dd8961756c8e2c2633530ceb1b0002783689c1ed163eaef020be8ab0e2dbaf0504ef25b6e48ee2f7755400f52594e404000279b80280cec9e9290990fb750a1fccf08951bb3a11793c189590b904bc1899c93f00027a27c394531859db651e26aa947f5ab45f6e0f5cf9fa7b7aaae4fdd42f946f0d6f00027b9c311666ad9aaa21050d16a1bc7ba24ad6bbea327408f291d7275a67ae1c990200027c26316c849e29d42076cd2dfadcba97a7b4557766949e8c8a14e226f13ad01c5800027da3281a5bd9920ea2f7e16af07c8aa777129e9a04dd659bff9b6eba9a039aed5a00027eb865218f5846f9cd225b4fc73e459b30624e34cd40810feab14c7037bfd0c56e00027f8c3296fb020a14bb86348926cb1f7ce1de0b0d7633e8e3393d23f4666c649b060002807f71aac77c8378f015ee319fa5e320393d75c68babd8d9352a72ab1241ed4158000281227967aedfe8c7ed5847736d620c9f574c6cdb247e625bb26d8e55b9446d1a3e000282301ceec49e9660cd645f2c62322aad507b21d4b4ab3cc93ccf4f916477bc1f1c000283082f80fe9a5b22d047fd1c778272342fe06d4fd62674cea0f51f7078c8918f6f000284edd9d32852a5f4dd355c225083747cca755dd87ca3dffc08d34b28899adacf3900028563d04b0d06dd0a7aaee3ecbd5d10043e47b32944bec012e96a709250da93e0420002861e0c8d4763bcc7b4331d32f64195eb9bddef4d7eac8624317ccf397355ef0e7d00028784ca1cb75983d937976c71d99576145ed59145d8951d45fab41cba98fc3c5e1f0002888cb02be45f05b81371a8f4ab0ed5296e6aeb8513200803e80255d612f9269118000289c4461602be824a6edb2ad723c2f59237b8ed1729a0b95091f3b3a671fdc6925f00028ac93243962e039e1d96193feda0d533ae900a7dfe2098246ff05ecef1a82d8a7a00028baaa06d60fe4ebd1fac32485171c0b04f0e2b82756c83079421b86a2471cebd0600028c24c8b89219f490ea99f6f5251e1b3f7a28544edaad1a518633255ac628944a7f00028d8fdd8c3c445d2cab0103b0fafb0598c2bf0470665883e728df1705df56db5a5f00028e42efd9f0e87e094c01743a49400709b3a0f265be520e0f9bb06203ca792aa55f00028f7e71bce30efec995631d25d16c0b245b8c563e54a9c78657fef0e03e3dcdf73a00029075f23ce2d60577ba7acbb834c5ebd9e6558a697423d5db95eb550dd21f1170500002913520c5673c1a422ed4af73b79ffdcf66399e6d8e5778221b3a19902dfda9a200000292a3556c877f0afb53ed31957e1fe307a086c7c6c4ab8ab68db944e678a519ff25000293f09b7f7bf0b5705ec420069e7a638a9ac0488fe0f2264b20d82c59b0853a0b0f000294d44e186ac2a36ce7d86a45c52061e3e6a22aaf275cdca300df5f9379ea2399550002954cf70f75232084dd2b92adb0b22f2d43d9f97bf9eb08a938271000dfb6b92f55000296747dc05c7f9649874c3398bb5006a44ed87cee3c1ef20bf7e9ee7450c0db486f000297fd2c7dfc2cd536945305b808eeef47a05289820af7d0fd70b15ab96c3981f758000298e1d714154f2424c296928daab2e14d3ce840dc35dae60bc21d3199c1686c59730002991b569e4fa219dde5ba0b1c92d4f0561543179f58a13aad7797c171c069d27b6100029afc42744b3724b383c545a2015541f0fb0c4b016712465048e85c5d30b665724000029bec7434f29f4deb6e2918d3c74fb83743e6b5e27db1c11a3de6a7fa5027c3985e00029c012760ef6f983f51881d5ef1bcc5e8fe92f8cf1e5139c1233a39c12e9e15552900029decb1f19cb448239196038c85793681af834d94328e8768b62f235e486bcaf24500029e0f8c70af33881cfd160f179211e6a6c0931c7478ab7e6ea393da1c985e80694f00029fe1380c3e9c9819b1c074ebcbb774f697ace7ebd95b878452de85f9894f45a6470002a00b83a6d22a3f166f4184f8aee93e91d3f4c42d18666f38689ad53361c22343190002a100f575bef0a52d69368167da89ab79a7f7957067d330fe2d0a864a293e2a53650002a22737d1dc352de181b93724eed8c759072ecb062358c9668ae10022c072865a1b0002a3126a2ad45f8ea29e52493727b85817b8c87b95c149aff2f26160b28fd931516c0002a443b4c2b1e60154848f5823a9fca847105b6895170e25dfea0c7f878ab974bd450002a53b5a7962e1dd1f7d387b68c66ec4253443cf1117f991be4f3607a80faeedae650002a6abe98ff4123d246ac84a5386c87535e8a123c3ca09e3a483047a2267ebaf255b0002a7569a82c719f23844583e060191378f862c97ec2f225cc1479812b32acb32b2760002a857bda6bec0c58471e7da0dfa7bdc67514fad77c8494ca1a77dbb6fddaf8975100002a92e88742070a240726b9230922e0cda1ffa8d5a48d765a17b97bc230dbe2e242d0002aa256e2912121af9d2212a78fcca04f513ea113385598455a5e5a668a11be80c010002ab5203b0de7406a49af0dce0bad3b40e4a053df9518cbd0bb42870751e99cfa20a0002acfb22014cd783b7479df7b2c7e8a537c441a41b9078189c6b882dc1244fc119680002adf8f2426e755c178e63c5ffb131f2dbacf3a01320212fb35d6cae90b2e57ea0480002ae53c38388e5d555e8a2170828e432d5d70256bd24b478a4085e3b9f336f3b00540002afa6d9621d1b00a21a6158922e73c01a87b17edfbbb067ebe8653ce535b27085510002b094fbb19f34548754fd640783f2694a43dfe229a5ad225e04f47d3e9d1ba3c10d0002b16991e9b9df11f3fbcc281689d54de23126c223231a25bca534a665f8189101070002b2b9aaa84764ad01f561ef96a0a7484bc00c54696849fac81f39c6e5b5f7be94050002b30872cdf845eec373113ba2a7ae5572e34d524fadbb0a3a000fef827e3db8d1410002b4cefdf1485fba056b2b3631dfb9ab1996d1ca1e301115e64fea3ad4bfaf218e000002b51ac176f0e51f20a288c70e1f082223dc7f466a162094cc151ddcc61939be34480002b662cfdeef1596c14539f16c55ee52392236c8eae3e5df9d54d6edd0473d38d02f0002b7be53681b2561f2a14a201c8edb3a47d70e4ec929a923388a60d6292adebdd4400002b8e10ce32d224fb9519b90d0d630c15930194064b0e183dc279a3636a4236a75350002b9b83bda5b1675be80cb6221085d47ca25bc50740a5a798b9629fc7755efaad03c0002ba15c1554a953bec4b773bbe1903072c1abba8bd8fb27a0823dd2355c7165d7d250002bb8aea55b58540ef4354663add5afb6694d5d9405595e7ae2507e03cbcebeb3e120002bc4b9bf208699879e4e217506d806cbef8d3c8a07126b801ae6fdc7fc5bd7546290002bd4ea2f8e4e4adf2b348b5a2dccad401eec5c9980a2576945824ff3f59d98b4d690002be0c51ed381ec0341199d13be366870c9350366390bc38d74ed1ca625985223c690002bfef746b9687e1df3b46cc2fade92c5327b3f6c341a63fc88cbf43479037e7d37d0002c078c50ffe419c55b8fa1ccf0a9578bb20faafa17259fd28433dea9552c55b03290002c145362d966d3e25918897285d9992dec09122dc0229a6e5d452c64273f53151520002c21476765919bb6124cead71a3503b97bc5d0eaa72db86e01a190a7d40da50422e0002c345f6c23db7932dd6290593c7dcad6a3e5d9b1a11822cc23d907a3ed6110edc0b0002c443346ec12641bea0476973f07d2aec3a21e1255fffc5b91605b3d3cedd3e164e0002c5d86e015d5a49f8033452586314be4854608690f0908ad2fb8b01c5a5a7d88d420002c602fa74e5f3859264a3cc6de4584148d17eb15269ddd910eb0c6763e9691ee0010002c71e7c04cc5d4be37cd9432cdef56c0e7e29f9de8d769e51dd7209ce2f0a08206b0002c8bffabbe47652a357a3e473b17ea6e9c9afb19a5a993c66843be085f930c11d250002c90fc1c174308ae5137dcc035d8f252d8a8d7e6dd6183f7c3ca8b8ba91e71dde600002ca87a96ff5361b8d8b19fae54bd566b21a63c7f3cb180b44bf79164ecaa317be0e0002cb283fb521838cd0c0ec5bf4078ba59985213bbfc4cb4718a222092c984e7b0e790002cce405da5e52e9d688a4604016b371e64607c2502db0995864d16ff3a8a8fb721f0002cd37983659beb6eec598512a8a3a48875a114020d5809b59f97eb471031dddd9620002cef4c501deabadd1d1a01797953bb2b7e77b0188b8f137f2577f9ffc7cf8af9c680002cf2ffa0c81e348646934def10d22adb7b86d9b0e126e95017c2ffee71489b67d510002d00343438dfa87d7076a63d4a7994b2e8087154807eb6e239f59811ca045153c1d0002d1750518d5a58cc8f66cc6de9f08486489482ad79aa5299bd91f59815b42aafd0a0002d256d59bda45baaf0025df167dcfa50f23c0f65044d642231a6bddf853d0b89a060002d3a75d9f0443f1f23b40c9175d29fe249158e71c997a68ee02e20178969d54aa2b0002d4bed1a9ca3e305e18d7ea8ed6b79c729b35a36f13fa158c8f792b7d1bc4fc9f700002d5b42d7f277c700747b421e2715764a00fcfd94b6940a50001a722724eec58f63f0002d61ae4f5e756abc2e69903d0168c7940336c4aacab8ae8e0c5697bdfe58c5a20240002d709fee01ab5d94fe7c0ac1e7b24497931b2564dfe711502adac2a0ba795f99c070002d8c5fbcce93cabb2d6e525953825269459a0bf9390da103f56b54260ec22b592790002d902d0d74c72ea983e18114bb9320f2bf041a6a5ead4a29e5d852435ed848851070002daaab9241a33d51c3b2a2884b8497e07b20db3a7d126d730c3ef34cd3afcf261380002db508ce1e17dabfc5ef27b005e902aad6d9c6a80f487c931935c5facb9703b6e2e0002dcdefba6ac740bc564544949c2bc0fdc304e67c4a1bef0ebdeef479cbd2e9d7a210002dd1a05f816a5988ffa82f57ac59b3624885982dd8bf480cdf66f26daaa7a9399580002de9cb9f720668a7558d657c19630231adaf451a40bc5cfb3d02b46a905d0f7a2660002df052444a1988827cad039a7348dce00b93abb40b548c8418a0657e065045470510002e00a065b5823281b32bc1acc39667687f28ec6621f8f3c3644943b41e49f892d100002e195502d613c8b476d0a92f114f46f03341e657c28e48ac0353ef45ce7b942713b0002e257e941c838b1ad1b443acd55c1de8dca2319a418b2873af832c76113ba6cb1730002e3259c5c67f039a62bb0384cf577d76caa8be4c0404cc833404ba9db3b7735d9260002e490e73d105c41e970b85e058c0a2216d95615bdadb0f3589b497ef39970e2983c0002e5a31a846dd2d36e63d2872b1bd89fced7e6efb71bc554b5e8e9e26ffd237fb97c0002e6fe9a1367e1f11311e6f41d0e9f4a503ccd66ff75a22c1aa42ecc4c125fe930270002e7513f447ec055e8c8fcf9383069a4950de42a36daa26b4f3546d184520d754d2e0002e8b49b67325ffce2d327ed2ad643ff40a4b7be0a80446b76bd16eb15a390afa8650002e9d19afe95c235964c91c8643915e3dfcbbdcb550fae27ebc18e56b6a4c46bba5a0002ea6cdb55916ecfb58f148d4028e581b67566b61f295f36a4de5d12f41b75bdd1180002eb35f6a952c1701849c2e20e9bdbd2d5086a25bcc2b2f7f8488ecb6c6d12aa95560002ecc48efccc2f5683b3fa13fd191653649116bae53f2f8ef5db422da4ebda5390480002edd33b3844bf0f5ab54477ae8f3266120783f0b91b05378f2a604a0fb4228408330002ee9e36131054d8909c220cb27f12325e2e4be5969d48d6b0ea0e673ad76e08ec490002ef0579df454d2414227156b0ba447f5b2b5f2a8cf9ebfa48f18dd86f16172536170002f0345bb6979407c83cddc0b9f04c0a6eefa73ce73d7cd2f8abe6f158f30d558c3c0002f1f73b6ef29e9fbadd05249212e9586f1cef31aa29c05f0af391bdc63dc24cad2d0002f27430ee0ac2686f1854618f5c51542e53299d5d7cf14dce46c4e13e11c1bf9d720002f3dfe3cc9a4e493de3825b869682803c1faa961f18e9f914364e510efb398a3c5c0002f4764f1ddf4932954c86d440675a5945f7163a418428a74dd4df9c6441bb2f0e320002f5acfb57fc411d95e71528094a1f035a08e2fdfd43c241e7d2ff79a700e27eab110002f626061ad6b5eb2e31be490ff8cd359fa02a790610c336aec5f820977bea74eb550002f748e13468db1512176e3543138acc74f4079a997b4498265818e3ca9185fc07290002f8bbece216c98a3d8f25d079643ca437be77c550178267e565ec1edc2344c4cb610002f9a55b261ee098e0421d38a77ba76a316586fd0886d679ce826fac44ff9fb29c230002faac5a005819f6539b9e34d2c7e3e8a8aaab914cef3b97790fae3c199f815e122b0002fbcd12463a4196337266b968cacfe8d4dcba7d41fb7997866aca914542cf5860760002fcd16808a1707fc8f15e8db47bb454e9eb9285c78f9c4389bf79fdb57a2e42c54a0002fdc0bd2d54ba3bc366ad64828365b3655698a61ede7fcaf9869beabe38677a20030002fe7b2ad40ad3d8a96b7f1145ae46d50a8352e2aa1813b440a75864b973bfdd70670002ff61e68eb8af60c7b233fed7ff6be1a59b688de7d571af592705666a4f51b9580a000300ebb219b91256af268722aa58c922ebf7d45d5463f6a186a95b4b5ad5ae89ac4d0003015f3f050ec426cbf7df1d7c0250bce5c5003b448e3c6f8ecdd3c1cec01bc37b12000302ba48a6762444d7ea5c96d15e92d423428605225c15c2c9206ecd8bc59b57b96e0003031d3e581d91fade28933065388495f45cdd4db283c8bcd1863752b80a3891de06000304e56c3b08c1713eabeb3f612cea40ff4ef2b75f2a31135d57a6ad2960e284e50a000305c042692f182d059e614dabf4d5329ee74fe116598b60c09706e7ec76674b2820000306f72c33b173e8c99ffb385f9324b9c4c25f2b85c39aecfa3faae61d39f2735403000307ed3e498a0a84dd4bc626c26c15a8c7df79f330687b699d80e26ddea67efd527d0003085a23959b3e80f49c3363bc8a7665ed636396327b1f6890e1e08594ff22636a04000309b6c326a5858a16c4bd71be73019e641eb7b38580eeb95c69e545f94f2f61983b00030a94200695e1ce423a0899344323de3f86f3a8e291579a25d7d1c1be30e60a842700030bad39353faaa35335b9cfbea0247f12face89c0f39b71d3315e9ce3285e5a385000030c4840a14ad2cb6c146664986547906aa103abb3937aa650b5a6a1b06057f2211200030d23c6affe4dbb50869ea39591f9fd84394214b46590a263c51249b7f5fb96951100030ea18512f7cbdc8153a79fe7b764d05b015298c40c23d07d68facf8058d26b782200030f07b13e522544c16be6b08c9b7ca006101654f89cf2da1a5d9d5ea4604300611e000310e3c6eb44c035840cdd1845de01685e59c6437203d402b29522abc8cbad69b445000311ef136ae8f1fc82d17a089e8a4e6afd56b330029f4b63033aed3f9a716bf9e76300031287ed93031e2cc258b450ad9e13fd296fb5ba26201d32ff5c3622d1fb793c50340003136de5b6a256d5966a2d228d4864b1a887f3e5816bcbbfbdd8a88fa0334438e274000314f527c6603768f5cb0a485281d5fbdda4815445ffb10ea7ab96cfa8c9f7b73055000315941a4d24bf10b71a577bae6d6dc738dc192e7097e519a153909dfc6ee1c24014000316c57da8eb4b00aba5dddba28e64838d4aa32d15d4b34587f9b7ee853aae045307000317b9a752469599e6a878a042717f9660be8a555395ac92dfebf1108b401621ca0900031836fff91747379fef7c2dd6ab38f17d8ce97015ce0a08ae794fa6906adeb59b30000319c6b2084e193df6d35fb02d981b5c603f317c94cf3b25e85e396d8ff9db381c6600031a312faa417676da7e64b618683e7252f8602344383a19a0bb1b430ba5bee2aa5500031b6bb1618cbe082da859d790e9beba30ee55544030ba6187859258a7cda90f354f00031c56a19d2b2700d85989ecb34c5ba5bf797c851456fb7bb72127ec56af097d491600031d18986c175d7c201ce588931e7c8015b3ab62032cf9325f44bd45e2ce67de403600031ef4d13d317611118da06b488211bb561c6f4c815ffa36006db26cb93f77bbd74f00031ff8d6873f2ea42731116968e2e4910372293c9bfa90188ebbff69b3a57f2e213c000320021637f10cb52abfa135366e82b6a35ef8ea6e7c301fe8b7352acf5044f1d316000321bc9bea280ca8cc6001671a6f4fd60ca0c0bd40a89cc23618702a253d08a9df690003223e340e28ad251930b029a9da740b7a1165c18542c0efb2c8d82e8c049d6aeb62000323ebda43dfbd6c7e2981fc6c97031e805b4c8a215eb592606447af1379996b2135000324eda59b02a4b797b1815c696e2f50d04b2aeb3e7f66accdc4ec16906d8adc005d000325cb82c51b2fe163ebfbdecc5b416f1fe7f4ddb61f7a571ab64a53e66a374a620e0003269bd8a3d4f0676f38eea3f7f0f250240bc283bc6937ad9ac9de531c2a46245b7400032750f89e0aeff0c729394516f8fd36e526da65202074c120968b54e95b688bf869000328433666881a1e500addd55a917a1847c6480dfcfe3bab0e99f7a628145f7c8c44000329be62e4e639c956ef0b7aa84f04b37371890b419f863ec9f43d0861f3f460b56e00032a24a1d865ef9dfc8d89444674dfc159f82535fa7c7c66bbed8437c825f06d8a1600032b6140528d0a8bfa75e48749579bcccf4dd379d104a1477ad01b58a2f1b0af745800032caa8c29f24ce32b4c9b411dbc90726abb0debfe2f4a32b4e3b147760cdb28355a000001a1eca73cd4255007f1629b0eadc6160d92d499333adb3e56024225dc1b161b34d55118f64ebad9eb5440f4822833f9529dda53ae0910a80df17cc85c975fad4efa416f23ecb9224ecbf7822596ef34dae96db2d362d567ae18a8959fb23a490e"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:48.98027612Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:48.980418528Z","message":"Got response to uploading prekeys"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:48.981149008Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.206628368Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.206741932Z","message":"Prekey count after upload: 812"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.206805418Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.249326334Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","time":"2026-03-06T19:20:49.249429561Z","message":"Connected to WhatsApp socket"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","bridge_state":{"state_event":"CONNECTED","timestamp":1772824849,"ttl":21600,"source":"bridge","user_id":"@theo:matrix.theocloud.dev","remote_id":"4917641870516","remote_name":"+4917641870516","remote_profile":{"phone":"+4917641870516"}},"time":"2026-03-06T19:20:49.249556464Z","message":"Sent new bridge state"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.446077987Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.446229195Z","message":"0a1508cc9c90b30f1089d2accd061802220300010228001240d884d8224128fae529e0f52b3f46c8389f648aee4528eca1c66651b1b54b4b46a1f2abbbeccf85bb99c6fc9c073faa37e542459fa4b55ffa01b2e10364af5b8b"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","message_count":0,"receipt_count":0,"notification_count":1,"app_data_change_count":0,"time":"2026-03-06T19:20:49.446251335Z","message":"Server sent number of events that were missed during downtime"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.446363711Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.446439001Z","message":"No device list cached for 195790463058158@lid, ignoring device list notification"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.446499135Z","message":""} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","evt_count":1,"time":"2026-03-06T19:20:49.446757691Z","message":"Offline sync completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","state_event":"CONNECTED","time":"2026-03-06T19:20:49.446843737Z","message":"Not sending bridge state as it's a duplicate"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.536840733Z","message":"0a1508cc9c90b30f1089d2accd061802220300010228001240d884d8224128fae529e0f52b3f46c8389f648aee4528eca1c66651b1b54b4b46a1f2abbbeccf85bb99c6fc9c073faa37e542459fa4b55ffa01b2e10364af5b8b"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.53697916Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.537080012Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.537087485Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.537171924Z","message":"Ignoring own device change notification, device list not cached"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.537201049Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.537293031Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.537406175Z","message":"Decrypting message from 4917641870516@s.whatsapp.net"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.537425242Z","message":"0a1508cc9c90b30f1089d2accd061802220300010228001240d884d8224128fae529e0f52b3f46c8389f648aee4528eca1c66651b1b54b4b46a1f2abbbeccf85bb99c6fc9c073faa37e542459fa4b55ffa01b2e10364af5b8b"} +{"level":"debug","db_section":"whatsmeow","time":"2026-03-06T19:20:49.53871411Z","message":"No sessions or sender keys found to migrate from 4917641870516 to 195790463058158_1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.544217816Z","message":"Got 1 new app state keys"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.544303513Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.544241493Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.544574011Z","message":"Decrypting message from 4917641870516@s.whatsapp.net"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.54464979Z","message":"Received app state sync key 000000002542 (ts: 1772743557161)"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.545487897Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.545608025Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.545697214Z","message":"Decrypting message from 4917641870516@s.whatsapp.net"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.547259863Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.548722709Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.548807986Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"time":"2026-03-06T19:20:49.549205039Z","message":"Stored history sync notification in queue"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.549277116Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.549486992Z","message":"Decrypting message from 4917641870516@s.whatsapp.net"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"download history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"time":"2026-03-06T19:20:49.549689953Z","message":"Downloading history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.553858136Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.553858136Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","sync_type":"NON_BLOCKING_DATA","chunk_order":0,"progress":0,"time":"2026-03-06T19:20:49.553949141Z","message":"Stored history sync notification in queue"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.554037631Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.554305685Z","message":"No device list cached for 195790463058158@lid, ignoring device list notification"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.554400601Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.556768322Z","message":"Received history sync (type INITIAL_BOOTSTRAP, chunk 1, progress 100)"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.556864075Z","message":"Storing 101 message secret keys in history sync"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.563135906Z","message":"Stored 101 message secret keys from history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.563223697Z","message":"Storing 13 privacy tokens in history sync"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.563636674Z","message":"Stored 13 privacy tokens from history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"download history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"pair_count":49,"time":"2026-03-06T19:20:49.570456976Z","message":"Stored PN-LID mappings from history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"download history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"lid_migration_timestamp":1765576291,"time":"2026-03-06T19:20:49.570743957Z","message":"Saved chat DB LID migration timestamp"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"global_settings":{"mediaVisibility":1,"darkThemeWallpaper":{"filename":"current_wallpaper_dark.jpg","opacity":25},"autoDownloadWiFi":{"downloadImages":true,"downloadAudio":true,"downloadVideo":true,"downloadDocuments":true},"autoDownloadCellular":{"downloadImages":true,"downloadAudio":false,"downloadVideo":false,"downloadDocuments":false},"showIndividualNotificationsPreview":true,"showGroupNotificationsPreview":true,"chatLockSettings":{"hideLockedChats":false},"chatDbLidMigrationTimestamp":1765576291},"time":"2026-03-06T19:20:49.571112585Z","message":"Got global settings in history sync"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"conversation_count":41,"past_participant_count":0,"time":"2026-03-06T19:20:49.571199538Z","message":"Storing history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":30,"chat_jid":"4915903048642@s.whatsapp.net","wrapped_count":30,"ignored_msg_type_count":0,"lowest_time":"2026-03-05T20:53:42Z","lowest_time_index":29,"highest_time":"2026-03-06T16:44:05Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.571480094Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":30,"chat_jid":"491736748726@s.whatsapp.net","wrapped_count":30,"ignored_msg_type_count":0,"lowest_time":"2026-03-03T11:29:28Z","lowest_time_index":29,"highest_time":"2026-03-06T12:49:02Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.572784398Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"491628947581@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-03-04T17:59:11Z","lowest_time_index":0,"highest_time":"2026-03-04T17:59:11Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.57384998Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917657607100@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-03-02T13:43:53Z","lowest_time_index":0,"highest_time":"2026-03-02T13:43:53Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.574424363Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917623702252@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-02-26T16:27:31Z","lowest_time_index":0,"highest_time":"2026-02-26T16:27:31Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.574972694Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"491783743461@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-02-21T20:00:22Z","lowest_time_index":0,"highest_time":"2026-02-21T20:00:22Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.575531851Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":30,"chat_jid":"120363163455706585@g.us","wrapped_count":26,"ignored_msg_type_count":4,"lowest_time":"2026-02-28T06:41:56Z","lowest_time_index":29,"highest_time":"2026-03-06T15:44:51Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.576283492Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363192861790277@g.us","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-03-05T10:36:05Z","lowest_time_index":0,"highest_time":"2026-03-05T10:36:05Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.577393006Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"491637362958@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-03-04T06:33:03Z","lowest_time_index":0,"highest_time":"2026-03-04T06:33:03Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.577896708Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"0@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-03-04T06:32:20Z","lowest_time_index":0,"highest_time":"2026-03-04T06:32:20Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.578403134Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363400918258753@g.us","wrapped_count":0,"ignored_msg_type_count":1,"lowest_time":"2026-03-04T08:30:10Z","lowest_time_index":0,"highest_time":"2026-03-04T08:30:10Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.578977516Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"491731828379@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-03-03T06:41:28Z","lowest_time_index":0,"highest_time":"2026-03-03T06:41:28Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.579079905Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917620338641@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-03-01T23:19:07Z","lowest_time_index":0,"highest_time":"2026-03-01T23:19:07Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":1723059169000,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.579577949Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363173737697025@g.us","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-02-26T11:20:41Z","lowest_time_index":0,"highest_time":"2026-02-26T11:20:41Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.580068381Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"lid":"266657507356684@lid","pn":"4915150515988@s.whatsapp.net","time":"2026-03-06T19:20:49.580567683Z","message":"Rerouting LID DM to phone number in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4915150515988@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-02-26T07:08:23Z","lowest_time_index":0,"highest_time":"2026-02-26T07:08:23Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.580654777Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":0,"chat_jid":"491736669329@s.whatsapp.net","wrapped_count":0,"ignored_msg_type_count":0,"lowest_time":"0001-01-01T00:00:00Z","lowest_time_index":0,"highest_time":"0001-01-01T00:00:00Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.581112942Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"lid":"198041059483854@lid","pn":"491605556877@s.whatsapp.net","time":"2026-03-06T19:20:49.58121114Z","message":"Rerouting LID DM to phone number in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"491605556877@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-02-16T09:14:06Z","lowest_time_index":0,"highest_time":"2026-02-16T09:14:06Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.581272112Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4915735701057@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-02-10T10:42:40Z","lowest_time_index":0,"highest_time":"2026-02-10T10:42:40Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.58176443Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"lid":"105699396837592@lid","pn":"4915234825973@s.whatsapp.net","time":"2026-03-06T19:20:49.582225807Z","message":"Rerouting LID DM to phone number in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4915234825973@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-02-06T18:18:15Z","lowest_time_index":0,"highest_time":"2026-02-06T18:18:15Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.582322958Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917680834617@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2026-01-01T00:07:45Z","lowest_time_index":0,"highest_time":"2026-01-01T00:07:45Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.582850965Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363393464932293@g.us","wrapped_count":0,"ignored_msg_type_count":1,"lowest_time":"2025-12-21T11:49:12Z","lowest_time_index":0,"highest_time":"2025-12-21T11:49:12Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.583298723Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363422109419332@g.us","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2025-11-29T09:35:58Z","lowest_time_index":0,"highest_time":"2025-11-29T09:35:58Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.583453703Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917641870516@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2024-07-17T19:47:35Z","lowest_time_index":0,"highest_time":"2024-07-17T19:47:35Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.583949932Z","message":"Collected messages to save from history sync conversation"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363402100533692@g.us","error":"couldn't find sender of message 3A7460AAAE4A8F7B9226","msg_index":0,"msg_id":"3A7460AAAE4A8F7B9226","msg_time_seconds":1755087955,"time":"2026-03-06T19:20:49.584449653Z","message":"Dropping historical message due to parse error"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363402100533692@g.us","wrapped_count":0,"ignored_msg_type_count":0,"lowest_time":"0001-01-01T00:00:00Z","lowest_time_index":0,"highest_time":"0001-01-01T00:00:00Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.584531788Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363417948931600@g.us","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2025-07-23T19:03:14Z","lowest_time_index":0,"highest_time":"2025-07-23T19:03:14Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.584626703Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363373705450816@g.us","wrapped_count":0,"ignored_msg_type_count":1,"lowest_time":"2025-12-21T11:49:12Z","lowest_time_index":0,"highest_time":"2025-12-21T11:49:12Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.58509269Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917616043654@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2025-02-22T14:49:43Z","lowest_time_index":0,"highest_time":"2025-02-22T14:49:43Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.585197244Z","message":"Collected messages to save from history sync conversation"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363192066603177@g.us","error":"couldn't find sender of message 5C8B82ABDBE4DD5CD119819C4F863C17","msg_index":0,"msg_id":"5C8B82ABDBE4DD5CD119819C4F863C17","msg_time_seconds":1750263955,"time":"2026-03-06T19:20:49.585677898Z","message":"Dropping historical message due to parse error"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363192066603177@g.us","wrapped_count":0,"ignored_msg_type_count":0,"lowest_time":"0001-01-01T00:00:00Z","lowest_time_index":0,"highest_time":"0001-01-01T00:00:00Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.585771836Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917658289477@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2024-09-17T05:41:56Z","lowest_time_index":0,"highest_time":"2024-09-17T05:41:56Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.585869196Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4915901353554@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2024-09-07T10:32:41Z","lowest_time_index":0,"highest_time":"2024-09-07T10:32:41Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.58632345Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4915258731774@s.whatsapp.net","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2024-09-04T21:42:47Z","lowest_time_index":0,"highest_time":"2024-09-04T21:42:47Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.586892245Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363326854732201@g.us","wrapped_count":1,"ignored_msg_type_count":0,"lowest_time":"2024-08-31T10:25:02Z","lowest_time_index":0,"highest_time":"2024-08-31T10:25:02Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.587377089Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4915146137587-1583773347@g.us","wrapped_count":0,"ignored_msg_type_count":1,"lowest_time":"2025-08-10T16:41:38Z","lowest_time_index":0,"highest_time":"2025-08-10T16:41:38Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.587858721Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917661014451@s.whatsapp.net","wrapped_count":0,"ignored_msg_type_count":1,"lowest_time":"2024-04-03T12:44:21Z","lowest_time_index":0,"highest_time":"2024-04-03T12:44:21Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.587965929Z","message":"Collected messages to save from history sync conversation"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363171915313530@g.us","error":"couldn't find sender of message BAE0CC6F7968FBCD6C295F0217B79F4A","msg_index":0,"msg_id":"BAE0CC6F7968FBCD6C295F0217B79F4A","msg_time_seconds":1736890695,"time":"2026-03-06T19:20:49.588050229Z","message":"Dropping historical message due to parse error"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363171915313530@g.us","wrapped_count":0,"ignored_msg_type_count":0,"lowest_time":"0001-01-01T00:00:00Z","lowest_time_index":0,"highest_time":"0001-01-01T00:00:00Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.588117277Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"120363023877766288@g.us","wrapped_count":0,"ignored_msg_type_count":1,"lowest_time":"2025-09-16T22:29:13Z","lowest_time_index":0,"highest_time":"2025-09-16T22:29:13Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.588195431Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4915206843979@s.whatsapp.net","wrapped_count":0,"ignored_msg_type_count":1,"lowest_time":"2024-01-29T14:21:39Z","lowest_time_index":0,"highest_time":"2024-01-29T14:21:39Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.588273305Z","message":"Collected messages to save from history sync conversation"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4915750452518-1628699323@g.us","error":"couldn't find sender of message C15A9752AE02CD69E4E1569BE6B8DADB","msg_index":0,"msg_id":"C15A9752AE02CD69E4E1569BE6B8DADB","msg_time_seconds":1750263955,"time":"2026-03-06T19:20:49.588376322Z","message":"Dropping historical message due to parse error"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4915750452518-1628699323@g.us","wrapped_count":0,"ignored_msg_type_count":0,"lowest_time":"0001-01-01T00:00:00Z","lowest_time_index":0,"highest_time":"0001-01-01T00:00:00Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.588441624Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917642763519-1632554108@g.us","wrapped_count":0,"ignored_msg_type_count":1,"lowest_time":"2025-06-20T13:28:17Z","lowest_time_index":0,"highest_time":"2025-06-20T13:28:17Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.588529486Z","message":"Collected messages to save from history sync conversation"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"491723825475-1534758475@g.us","error":"couldn't find sender of message 68A101524AAA7B8E24077F542F7271F6","msg_index":0,"msg_id":"68A101524AAA7B8E24077F542F7271F6","msg_time_seconds":1739826585,"time":"2026-03-06T19:20:49.58861169Z","message":"Dropping historical message due to parse error"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"491723825475-1534758475@g.us","wrapped_count":0,"ignored_msg_type_count":0,"lowest_time":"0001-01-01T00:00:00Z","lowest_time_index":0,"highest_time":"0001-01-01T00:00:00Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.588674199Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"msg_count":1,"chat_jid":"4917679326938-1420886344@g.us","wrapped_count":0,"ignored_msg_type_count":1,"lowest_time":"2025-08-16T09:40:33Z","lowest_time_index":0,"highest_time":"2025-08-16T09:40:33Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":true,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:49.588752492Z","message":"Collected messages to save from history sync conversation"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"INITIAL_BOOTSTRAP","chunk_order":1,"progress":100,"total_saved_count":109,"total_failed_count":0,"total_message_count":127,"duration":17.564966,"time":"2026-03-06T19:20:49.588832671Z","message":"Finished storing history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.589106243Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.589813744Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.591202068Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.592007349Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"download history sync","sync_type":"NON_BLOCKING_DATA","chunk_order":0,"progress":0,"time":"2026-03-06T19:20:49.595774149Z","message":"Downloading history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.595844619Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.597254734Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.598030192Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.641706227Z","message":"<0/><0/>"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.680318144Z","message":"Received history sync (type NON_BLOCKING_DATA, chunk 0, progress 0)"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"NON_BLOCKING_DATA","chunk_order":0,"progress":0,"conversation_count":3,"pushname_count":0,"status_count":0,"recent_sticker_count":20,"past_participant_count":4,"time":"2026-03-06T19:20:49.680524039Z","message":"Ignoring history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","time":"2026-03-06T19:20:49.68167881Z","message":"No more queued history sync notifications"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.727807355Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.727977002Z","message":"Decrypting message from 4917641870516@s.whatsapp.net"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.729087423Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.729098249Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","sync_type":"PUSH_NAME","chunk_order":1,"progress":100,"time":"2026-03-06T19:20:49.729249457Z","message":"Stored history sync notification in queue"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.729368398Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"download history sync","sync_type":"PUSH_NAME","chunk_order":1,"progress":100,"time":"2026-03-06T19:20:49.729612078Z","message":"Downloading history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.730141482Z","message":"Received history sync (type PUSH_NAME, chunk 1, progress 0)"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.730200638Z","message":"Updating contact store with 326 push names from history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.730516046Z","message":"Got push name Wagner Ribeiro for 13069475909@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.730785916Z","message":"Got push name Julio Cela for 206734241087531@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.731041189Z","message":"Got push name Laura ^^ for 33994833981513@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.731278094Z","message":"Got push name Al koudsi for 38504566390811@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.731672912Z","message":"Got push name Esther for 224927957410033@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.731915264Z","message":"Got push name Lori 🦉 for 4915141346015@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.732318813Z","message":"Got push name Phie for 1876967866385@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.732324121Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.732623185Z","message":"Got push name Lulu for 242828928122951@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.732930351Z","message":"Got push name 🏋️Матвей for 4917627560255@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.733227111Z","message":"Got push name Brn for 491783900163@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.733525686Z","message":"Got push name Julia for 206699780640847@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.73379381Z","message":"Got push name Pasi for 59463872561404@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.734072411Z","message":"Got push name Martin Ryu for 84533647044725@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.734410308Z","message":"Got push name christian rzadeh for 87162133413943@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.734722851Z","message":"Got push name Wowaa for 39964771365006@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.734979522Z","message":"Got push name Felix for 59622887026730@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.73544062Z","message":"Got push name Harun for 11373224415308@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.735819793Z","message":"Got push name Nick for 40570445631616@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.73608666Z","message":"Got push name Mahmoud for 491624155301@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.737376297Z","message":"Full sync of app state critical_block completed. Current version: 2"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.73745019Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:49.737712727Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.738966534Z","message":"Got push name Chrissi for 4917655091547@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.739224601Z","message":"Got push name Karl for 4915157563910@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.73954378Z","message":"Got push name Zaki for 267950527361145@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.739792069Z","message":"Got push name LENA for 256676053647524@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.740040987Z","message":"Got push name Mumen Moawia for 70476638453883@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.740285295Z","message":"Got push name Dmytro for 182961395781844@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.740574372Z","message":"Got push name MM for 228681305870497@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.74083607Z","message":"Got push name Ella 🦖 for 4917672609462@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.741099864Z","message":"Got push name Tami for 154361158209573@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.74143371Z","message":"Got push name Brn for 265076942577859@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.741704698Z","message":"Got push name Julius for 491785548939@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.741943488Z","message":"Got push name Karl for 80358888464591@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.742305341Z","message":"Got push name 4915234801116 for 4915234801116@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.742588202Z","message":"Got push name Momo for 261327436177425@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.742835653Z","message":"Got push name Yasin Güner for 5768224989416@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.743084082Z","message":"Got push name Liam for 491639747105@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.743324199Z","message":"Got push name Vale for 491605556877@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.743610901Z","message":"Got push name Philipp for 74526322876491@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.743882029Z","message":"Got push name Robin for 197577119109324@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.744137721Z","message":"Got push name Florian C. for 491776941237@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.744415972Z","message":"Got push name Balou for 102692751978521@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.744685424Z","message":"Got push name Nico for 4915787360808@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.74492617Z","message":"Got push name Stefan for 186646947455090@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.745165589Z","message":"Got push name Karl for 131026634416177@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.745431897Z","message":"Got push name Nate Jo for 62921489018884@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.745686612Z","message":"Got push name Bryan for 174715159236763@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.745954038Z","message":"Got push name Wik Wak for 171970641588327@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.746189196Z","message":"Got push name JH for 4915782942616@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.746469264Z","message":"Got push name Wiktor for 253395034206287@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.74671888Z","message":"Got push name Florian Weis for 4915126692444@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.746985677Z","message":"Got push name Dya Singh for 168212561981526@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.747237179Z","message":"Got push name Ahmad Azimi for 151466652258375@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.747504046Z","message":"Got push name Yasin Dalowar for 50058112307202@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.747764068Z","message":"Got push name Vitali for 187849085329414@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.748023392Z","message":"Got push name Vivian for 4917610305000@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.748266653Z","message":"Got push name Ahmed for 99939661148216@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.748551958Z","message":"Got push name Ahmad Bakdad for 220538484043940@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.748825321Z","message":"Got push name Razik for 56895431819388@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.749110626Z","message":"Got push name Sandra for 156500169334858@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.749428897Z","message":"Got push name Lisa for 220327544094730@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.749692202Z","message":"Got push name Junior for 177811813859547@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.749943215Z","message":"Got push name 🤎☁️ ~ Lukas for 69114630545617@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.750253873Z","message":"Got push name Mahkam for 80522080477241@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.750528283Z","message":"Got push name Ali for 61955406606386@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.750782509Z","message":"Got push name Alex for 241506145304775@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.751035897Z","message":"Got push name Tobi for 196232895029386@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.751280833Z","message":"Got push name Lorena for 80565550247962@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.751551821Z","message":"Got push name Josh for 127753970032737@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.751812263Z","message":"Got push name Nora Ouwerkerk for 84069857669232@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.752095682Z","message":"Got push name Saad for 4917630390609@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.752496926Z","message":"Got push name Nihal for 245517661540533@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.752745145Z","message":"Got push name Elias Spurny for 92655430197386@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.75299085Z","message":"Got push name ben for 143632363450509@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.753262327Z","message":"Got push name davidevo_ for 191890615967944@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.753562927Z","message":"Got push name Meta AI for 13135550002@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.75382735Z","message":"Got push name Filippo for 6000186790141@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.754081157Z","message":"Got push name Nes The One for 4915776207693@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.754387345Z","message":"Got push name Colin for 70231405916394@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.754660218Z","message":"Got push name Juan Pablo for 109869759754428@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.754922127Z","message":"Got push name Armano 7 for 280664972746828@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.75518166Z","message":"Got push name Illia for 146720914698447@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.755496719Z","message":"Got push name Alessia for 123531916480575@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.755753389Z","message":"Got push name Sven for 266502737506505@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.756002027Z","message":"Got push name Aaron for 32156537630722@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.756256881Z","message":"Got push name Anastasia for 4915903048642@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.756548472Z","message":"Got push name Mahmoud for 129064018960516@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.756822882Z","message":"Got push name الزير for 21273073692847@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.75707187Z","message":"Got push name Uwe Leuthardt for 87321047232618@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.75732854Z","message":"Got push name Vitali for 491783743461@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.757624601Z","message":"Got push name Marielle for 111437372489803@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.757885043Z","message":"Got push name Imo for 228500967542864@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.758142691Z","message":"Got push name Daniil Bykov for 145066932846614@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.758424225Z","message":"Got push name Wally for 156203732750524@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.758674888Z","message":"Got push name Roman Demchenko for 106669891670209@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.758933025Z","message":"Got push name Boris ✞ for 83017473200255@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.759191092Z","message":"Got push name Danilo for 4915174428025@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.759467667Z","message":"Got push name Jannic for 151054134034515@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.759722661Z","message":"Got push name Siddhant for 252960856604824@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.759978912Z","message":"Got push name Leon for 4915111226110@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.760233627Z","message":"Got push name vladislavilcuk8 for 38276949905550@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.760518932Z","message":"Got push name 🥳 for 146415502245916@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.760776301Z","message":"Got push name Bea for 110364100427965@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.761046939Z","message":"Got push name Yasin Demir for 235862491136132@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.7613122Z","message":"Got push name Chris for 491774904330@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.761598832Z","message":"Got push name Christian for 66709616595045@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.761858645Z","message":"Got push name B for 4917634652400@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.762116712Z","message":"Got push name Mihoshi for 157088495980744@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.76250734Z","message":"Got push name Sero for 4917617625494@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.762773718Z","message":"Got push name Philip for 21479232127054@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.76302969Z","message":"Got push name TJ for 13473413128380@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.763286849Z","message":"Got push name Giuseppe Tullo for 393201550470@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.76356056Z","message":"Got push name Sasha for 59197668491519@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.763824913Z","message":"Got push name Vale for 198041059483854@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.76413194Z","message":"Got push name yousef for 274010575245356@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.764415429Z","message":"Got push name andac for 275883097071617@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.764670702Z","message":"Got push name Johannes for 251826901377165@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.764957125Z","message":"Got push name Jonas for 218845914619936@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.765213795Z","message":"Got push name Jakob for 46462989807759@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.765519006Z","message":"Got push name Hoa for 184331557449759@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.765782451Z","message":"Got push name Lisunka for 4917666512961@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.766044569Z","message":"Got push name Jules for 256693099352121@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.766301728Z","message":"Got push name Taha, for 114310957285378@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.766593249Z","message":"Got push name A. for 239363409617131@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.766846008Z","message":"Got push name Anja for 199870648455306@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.767096322Z","message":"Got push name FloJ for 102147257532455@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.767376739Z","message":"Got push name Anastasia for 220641227747573@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.767645352Z","message":"Got push name Julius for 46858126766286@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.767894968Z","message":"Got push name Neesha for 35472185270487@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.768152337Z","message":"Got push name . for 66189975912485@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.768428423Z","message":"Got push name Elias for 97882405363848@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.768716592Z","message":"Got push name Marcyś for 4917620338641@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.76897424Z","message":"Got push name Paul for 4917648311543@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.769233564Z","message":"Got push name Domi for 65244881764452@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.769507834Z","message":"Got push name Jonny Philippos for 491759232609@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.769771139Z","message":"Got push name Michael Spaller for 491735440250@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.770099049Z","message":"Got push name leonie for 88369103143137@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.77038156Z","message":"Got push name Martin Kuhn for 4917671069363@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.770710377Z","message":"Got push name Paula for 138817721917594@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.771069646Z","message":"Got push name Uwe Leuthardt for 491794159819@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.771359421Z","message":"Got push name Lucas for 251037097177288@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.77165653Z","message":"Got push name Aitor sav for 101829530640580@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.771911803Z","message":"Got push name Liam for 242047260864591@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.772041919Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.772182442Z","message":"Got push name M for 166829649616999@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.772529488Z","message":"Got push name Fiona for 4915224432375@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.772791396Z","message":"Got push name Shane for 156668226703416@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:49.772808926Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.773062733Z","message":"Got push name Dya for 4917672322250@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.773360051Z","message":"Got push name TJ for 491756680777@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.773645077Z","message":"Got push name Sven for 77859284607025@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.773911106Z","message":"Got push name AP for 491727724601@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.774186564Z","message":"Got push name Bes for 267847112642661@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.774466422Z","message":"Got push name Silvia🌻 for 275436907065507@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.774745092Z","message":"Got push name Sero for 86861754155032@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.775007978Z","message":"Got push name Nads for 141378109608075@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.775270305Z","message":"Got push name Zakaria for 83674703904795@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.775563643Z","message":"Got push name Milanko for 4915141630205@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.775846294Z","message":"Got push name Florian C. for 184928843075621@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.77610059Z","message":"Got push name Tobi for 190219840168190@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.77636585Z","message":"Got push name Katie Bird for 116685805768767@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.776623708Z","message":"Got push name Chris for 242661625704624@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.776806974Z","message":"Got push name Anna vdM for 165566878843022@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.776984932Z","message":"Got push name Maja for 4915150515988@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.777166661Z","message":"Got push name Marco for 170402944921672@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.777367527Z","message":"Got push name Костя for 235244099776580@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.777562178Z","message":"Got push name Stefan Strolch for 30653349408787@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.777735526Z","message":"Got push name Brn for 57879650386021@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.777942678Z","message":"Got push name Merle Lea Luttropp for 191783325712532@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.778110928Z","message":"Got push name Michał for 273069826400467@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.778268003Z","message":"Got push name Shaimn for 194820068913233@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.778444494Z","message":"Got push name Vincent for 75930894614615@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.778602827Z","message":"Got push name Mustafa for 40566117134352@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.778753965Z","message":"Got push name Taha for 35442120491030@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.778907269Z","message":"Got push name Georges Paul for 159292468543547@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.779058337Z","message":"Got push name Paul for 4917662348078@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.779225819Z","message":"Got push name Florian for 152510111158412@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.779408945Z","message":"Got push name Anjo for 237597657964579@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.779620218Z","message":"Got push name Dmytro for 380976416447@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.779771357Z","message":"Got push name Tami for 4917670136222@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.77993339Z","message":"Got push name Alvin for 86230310109332@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.780082364Z","message":"Got push name Paul for 105029298036926@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.780250474Z","message":"Got push name 🏋️Матвей for 199450228215815@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.780424311Z","message":"Got push name Nico for 142237052747971@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.780573774Z","message":"Got push name hanneskannes for 25628103458978@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.780727846Z","message":"Got push name Yasmine for 4917652878401@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.780871581Z","message":"Got push name Chrissi for 251745280225436@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.781041996Z","message":"Got push name Makhkam for 4917673282928@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.781188874Z","message":"Got push name Luis for 491729374600@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.781371232Z","message":"Got push name Jonny Cragg for 276334119006314@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.781543672Z","message":"Got push name Pat for 247824025391160@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.781714716Z","message":"Got push name Batu for 79564369862829@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.781869905Z","message":"Got push name . for 54975749202069@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.782041228Z","message":"Got push name Gianni_ for 198749678780508@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.782197256Z","message":"Got push name Christian for 4915906323168@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.782393373Z","message":"Got push name Rudi for 54756772999170@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.782560156Z","message":"Got push name Ibrahim for 260580380246145@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.782709688Z","message":"Got push name Mici for 105699396837592@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.782887786Z","message":"Got push name Yazan Elahmad for 4917670876760@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.783053731Z","message":"Got push name Sofía for 135613944741978@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.783196558Z","message":"Got push name Linda Elke Alice for 72000915652689@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.783430739Z","message":"Got push name Beatle for 4915253435944@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.783597103Z","message":"Got push name Tino for 58927135879305@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.78375362Z","message":"Got push name . for 4917636343979@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.783913419Z","message":"Got push name Burak C. for 21079833710744@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.784090259Z","message":"Got push name Helena for 70029659869242@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.784305443Z","message":"Got push name Daniel Gleissenberg for 4917696505264@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.784525306Z","message":"Got push name René for 491608358183@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.784744331Z","message":"Got push name Nikhil for 281144599826466@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.784925083Z","message":"Got push name Loredana Strano for 131061430358216@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.785080971Z","message":"Got push name Sonja Eigenbrod for 88601031344164@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.785246148Z","message":"Got push name Alex for 66662220976313@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.785416702Z","message":"Got push name Alex for 27956059590853@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.785567212Z","message":"Got push name Viktor Tevosyan for 102886059073748@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.785726802Z","message":"Got push name Ahmad Al koudsi for 4917656979328@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.785875286Z","message":"Got push name Emre-Can for 210453582090448@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.786022095Z","message":"Got push name Yazan Elahmad for 10501648023786@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.786180846Z","message":"Got push name Sidonie for 73736032112697@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.786363134Z","message":"Got push name dokkis for 393490711350@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.78651532Z","message":"Got push name Andrey for 172988750102720@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.786656541Z","message":"Got push name Anna vdM for 4915157953288@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.786831287Z","message":"Got push name Raha for 95765573664918@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.787006102Z","message":"Got push name Margarita Pantzali for 4915566025985@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.787150954Z","message":"Got push name Nico for 169187452428542@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.787305026Z","message":"Got push name Giuseppe Tullo for 12786134462711@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.787482565Z","message":"Got push name andac for 4917647781821@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.787655285Z","message":"Got push name Jenny for 256783310393511@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.787801744Z","message":"Got push name Theo Leuthardt for 195790463058158@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.787976769Z","message":"Got push name Amon for 4917623702252@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.788162689Z","message":"Got push name Arsam for 157204946649128@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.788347701Z","message":"Got push name Vivian for 25696839700643@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.788524681Z","message":"Got push name Fiona for 231584770842851@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.788672048Z","message":"Got push name Erman for 215492065255495@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.788933886Z","message":"Got push name C R for 223072531550244@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.789228132Z","message":"Got push name Jonas for 151414944854040@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.789504078Z","message":"Got push name Zou for 105094192341121@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.789866908Z","message":"Got push name Javier- for 261301750251678@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.790138455Z","message":"Got push name Harun for 4917657902857@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.790424948Z","message":"Got push name leoni for 23858610438397@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.790683992Z","message":"Got push name Tobi for 2864843874519@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.790960218Z","message":"Got push name Carlo for 4917684488832@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.791234Z","message":"Got push name 🤏🏻😎 for 9461947228209@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.79152182Z","message":"Got push name Nihal for 919150986374@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.791783379Z","message":"Got push name Seiar for 101641122517221@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.792003801Z","message":"Got push name Lucas for 4915561837637@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.792293366Z","message":"Got push name Martin Kuhn for 29888778084533@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.792569872Z","message":"Got push name sirajedine for 209689514090663@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.792855247Z","message":"Got push name marcyś for 236399445938270@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.793138108Z","message":"Got push name JH for 101816561881152@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.793358879Z","message":"Got push name Amon for 256181947912368@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.793577136Z","message":"Got push name Mirko for 88180091007092@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.793772764Z","message":"Got push name MrCarter for 270832349786148@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.793955402Z","message":"Got push name Nasser for 173804609343590@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.794112896Z","message":"Got push name Louis for 8821896405131@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.794262847Z","message":"Got push name Kai for 115431574622245@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.794431586Z","message":"Got push name Vicente for 243705789296680@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.794589359Z","message":"Got push name Nazar for 108778989056067@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.794747063Z","message":"Got push name Filippo for 4915256749404@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.794901414Z","message":"Got push name Paul for 67950677643499@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.795068407Z","message":"Got push name Tobi for 4915736562158@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.795254467Z","message":"Got push name Yating for 19460647870473@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.795423205Z","message":"Got push name Abdallah for 16724787208198@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.795582027Z","message":"Got push name Milanko for 236846508454136@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.795751184Z","message":"Got push name Darin for 178941893574847@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.795909656Z","message":"Got push name Michael Spaller for 25529302425761@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.79605856Z","message":"Got push name Charles Grütte for 198268692730012@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.796230232Z","message":"Got push name Yasmine for 157088529567880@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.796403441Z","message":"Got push name Nemanja for 100738508263616@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.796608917Z","message":"Got push name Joan for 190885543293102@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.796764385Z","message":"Got push name Nathalia Marmolejos Feliz for 196215597719577@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.796917968Z","message":"Got push name Stefan for 4917655425926@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.79707644Z","message":"Got push name Jens B. for 140325221875807@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.7972405Z","message":"Got push name Claire✨ for 138035987497154@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.797426559Z","message":"Got push name Leander for 4917663325906@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.797578187Z","message":"Got push name Claudia Leuthardt for 130898087411771@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.797736798Z","message":"Got push name Claudia Leuthardt for 491628947581@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.797938712Z","message":"Got push name Vicente for 138440217739301@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.798098511Z","message":"Got push name Ali for 491788110151@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.798251117Z","message":"Got push name Maja for 266657507356684@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.798448421Z","message":"Got push name . for 4917655219065@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.798618975Z","message":"Got push name Josi for 130794756513956@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.798770463Z","message":"Got push name Scheggia for 69050206027927@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.798920205Z","message":"Got push name René for 213099231596676@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.799093972Z","message":"Got push name Ante Up! for 73950780473356@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.799239244Z","message":"Got push name Pablo for 161684144570509@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.799415037Z","message":"Got push name Bes for 4915735701057@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.799571064Z","message":"Got push name yousef for 4915901096609@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.799726952Z","message":"Got push name Katie Bird for 491703010843@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.799919507Z","message":"Got push name Kadl for 67585655734448@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.800062265Z","message":"Got push name Domi for 491736748726@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.800223321Z","message":"Got push name 9annas🖤 for 220697532047610@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.800425165Z","message":"Got push name Андрій for 205368659542264@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.800572811Z","message":"Got push name Ben for 4917645835716@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.800771931Z","message":"Got push name Sascha for 242897714737270@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.800923559Z","message":"Got push name Linus Grabenhenrich for 264544232407203@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.801102425Z","message":"Got push name Mahmoud for 491796839444@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.801265087Z","message":"Got push name Sirajedine for 226147862347841@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.801447795Z","message":"Got push name Carlo for 61169360498824@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.801605079Z","message":"Got push name Julius for 86522250412262@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.801784713Z","message":"Got push name Tuan for 207820683223254@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.801948563Z","message":"Got push name Mahmoud for 165339312693343@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.802098864Z","message":"Got push name Alex for 491731828379@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.802244764Z","message":"Got push name 4917688800103 for 4917688800103@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.802437528Z","message":"Got push name tizian. for 221745000792223@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.802617861Z","message":"Got push name Seyyid for 219241135489206@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.802772981Z","message":"Got push name ~Lilly♥️ for 252780333793437@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.802929916Z","message":"Got push name Shirin for 12730350215211@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.80307414Z","message":"Got push name Artur for 4917641523941@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.803221158Z","message":"Got push name Martín for 188257056890939@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.803392341Z","message":"Got push name AP for 223690570625160@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.803559334Z","message":"Got push name Sven for 491708034509@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.803715222Z","message":"Got push name Burak C. for 4917642922234@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.803877116Z","message":"Got push name Alex for 4917657607100@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.804045226Z","message":"Got push name Nizar Khalifa for 115070881280105@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.804226467Z","message":"Got push name Lennart for 2160435707964@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.804399745Z","message":"Got push name Melvin for 1975802458312@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.804566319Z","message":"Got push name Valentin for 491736669329@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.804704537Z","message":"Got push name clid for 68904781090845@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.804856374Z","message":"Got push name Adri for 15985952219342@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.805010935Z","message":"Got push name davidevo_ for 393351986428@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.805174854Z","message":"Got push name Enes for 491756898822@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.805321243Z","message":"Got push name Mohammed Chahrour for 4915233687713@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.805497316Z","message":"Got push name Juli for 101992705880128@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.805645591Z","message":"Got push name Max for 491732544648@s.whatsapp.net in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.80600451Z","message":"Got push name Dennis Ma for 36984131166382@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.806799943Z","message":"Got push name Sedjlo for 92174427373665@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.807497597Z","message":"Got push name Daniel Gleissenberg for 195562762690743@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.807684075Z","message":"Got push name Aylin for 16114767646828@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.807843525Z","message":"Got push name Valentin for 150147879182516@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:49.808004791Z","message":"Got push name Nes The One for 44419206123644@lid in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"PUSH_NAME","chunk_order":1,"progress":0,"conversation_count":0,"pushname_count":326,"status_count":0,"recent_sticker_count":0,"past_participant_count":0,"time":"2026-03-06T19:20:49.808095376Z","message":"Ignoring history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","time":"2026-03-06T19:20:49.808293658Z","message":"No more queued history sync notifications"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:50.054814661Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:50.062495278Z","message":"Mass inserting app state snapshot with 100 contacts into the store"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:50.064103395Z","message":"Full sync of app state critical_unblock_low completed. Current version: 1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:50.064250902Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","time":"2026-03-06T19:20:50.06422974Z","message":"Waiting for push name history sync before resyncing contacts"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","contact_count":401,"time":"2026-03-06T19:20:50.069542218Z","message":"Resyncing displaynames with contact info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"156668226703416@lid","time":"2026-03-06T19:20:50.069946464Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":48,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-156668226703416%3Amatrix.theocloud.dev","duration":4.565166,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-156668226703416","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:50.074811463Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":49,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-156668226703416:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-156668226703416%3Amatrix.theocloud.dev","duration":2.471437,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:50.0776942Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":50,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-156668226703416:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-156668226703416%3Amatrix.theocloud.dev","duration":6.627676,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Shane (WA)"},"time":"2026-03-06T19:20:50.084501162Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:50.085415327Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:50.243794621Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":51,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-156668226703416:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-156668226703416%3Amatrix.theocloud.dev","duration":2.707853,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:50.246856364Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"25529302425761@lid","time":"2026-03-06T19:20:50.247613314Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":52,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":3.595337,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-25529302425761","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:50.251459664Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":53,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25529302425761:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":2.228665,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:20:50.254023711Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":54,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25529302425761:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":6.254929,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Michael Spaller (WA)"},"time":"2026-03-06T19:20:50.260445004Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:50.261212919Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:50.338325704Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:50.343604308Z","message":"Full sync of app state regular_high completed. Current version: 1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:50.343761034Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:50.348789953Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:50.348924818Z","message":"Decrypting message from 4917641870516@s.whatsapp.net"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:50.349844011Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:50.349940882Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:50.392993507Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:50.425430534Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:50.519321373Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:50.521068965Z","message":"Full sync of app state regular completed. Current version: 2"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:50.521224852Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":55,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":85.295638,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<119078 bytes>","time":"2026-03-06T19:20:50.666154074Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":56,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25529302425761:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":2.315549,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:50.668867304Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":57,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/OUIiCSWWOIfTUYLvgoSIqMqJ?user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":2.422617,"status_code":200,"response_length":119078,"response_mime":"image/jpeg","time":"2026-03-06T19:20:50.671410748Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":58,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25529302425761:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":4.866466,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OUIiCSWWOIfTUYLvgoSIqMqJ"},"time":"2026-03-06T19:20:50.676643676Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917688800103@s.whatsapp.net","time":"2026-03-06T19:20:50.677539891Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":59,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917688800103%3Amatrix.theocloud.dev","duration":3.086956,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917688800103","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:50.680892526Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":60,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917688800103:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917688800103%3Amatrix.theocloud.dev","duration":1.674886,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:20:50.682885823Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":61,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917688800103:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917688800103%3Amatrix.theocloud.dev","duration":5.90446,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"4917688800103 (WA)"},"time":"2026-03-06T19:20:50.68894659Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:50.689809142Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:50.735080374Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:50.753356404Z","message":"Full sync of app state regular_low completed. Current version: 4"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:51.067324518Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":62,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917688800103%3Amatrix.theocloud.dev","duration":77.051742,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35117 bytes>","time":"2026-03-06T19:20:51.158270949Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":63,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917688800103:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917688800103%3Amatrix.theocloud.dev","duration":2.076898,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:51.160770951Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":64,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WQVnlppASOhgPXAqBAVnDYLA?user_id=%40whatsapp_4917688800103%3Amatrix.theocloud.dev","duration":2.826445,"status_code":200,"response_length":35117,"response_mime":"image/jpeg","time":"2026-03-06T19:20:51.163718641Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":65,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917688800103:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917688800103%3Amatrix.theocloud.dev","duration":5.011598,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WQVnlppASOhgPXAqBAVnDYLA"},"time":"2026-03-06T19:20:51.168965258Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"101992705880128@lid","time":"2026-03-06T19:20:51.169782691Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":66,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-101992705880128%3Amatrix.theocloud.dev","duration":3.646462,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-101992705880128","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:51.173709639Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":67,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101992705880128:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101992705880128%3Amatrix.theocloud.dev","duration":2.247523,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:51.176391301Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":68,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101992705880128:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101992705880128%3Amatrix.theocloud.dev","duration":6.532203,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Juli (WA)"},"time":"2026-03-06T19:20:51.183146718Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:51.184015695Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:51.365868887Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":69,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-101992705880128%3Amatrix.theocloud.dev","duration":79.612996,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<30808 bytes>","time":"2026-03-06T19:20:51.45271104Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":70,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101992705880128:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101992705880128%3Amatrix.theocloud.dev","duration":2.296063,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:51.455385159Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":71,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XtmCxYQmxoDAxNyFqLSUqTvO?user_id=%40whatsapp_lid-101992705880128%3Amatrix.theocloud.dev","duration":2.70471,"status_code":200,"response_length":30808,"response_mime":"image/jpeg","time":"2026-03-06T19:20:51.458244639Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":72,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101992705880128:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101992705880128%3Amatrix.theocloud.dev","duration":4.632774,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XtmCxYQmxoDAxNyFqLSUqTvO"},"time":"2026-03-06T19:20:51.463148191Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":73,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-105699396837592%3Amatrix.theocloud.dev","duration":3.389023,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-105699396837592","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:51.467527227Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":74,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105699396837592:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-105699396837592%3Amatrix.theocloud.dev","duration":2.127813,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:51.469996638Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":75,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105699396837592:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-105699396837592%3Amatrix.theocloud.dev","duration":6.089962,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mici (WA)"},"time":"2026-03-06T19:20:51.47624598Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:51.477139122Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:51.746874138Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":76,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-105699396837592%3Amatrix.theocloud.dev","duration":72.111524,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46293 bytes>","time":"2026-03-06T19:20:51.831249395Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":77,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105699396837592:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-105699396837592%3Amatrix.theocloud.dev","duration":1.43421,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:51.832953475Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":78,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/lNADXETPUHZIEWauyAdUFhoc?user_id=%40whatsapp_lid-105699396837592%3Amatrix.theocloud.dev","duration":1.500699,"status_code":200,"response_length":46293,"response_mime":"image/jpeg","time":"2026-03-06T19:20:51.834542385Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":79,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105699396837592:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-105699396837592%3Amatrix.theocloud.dev","duration":3.228596,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lNADXETPUHZIEWauyAdUFhoc"},"time":"2026-03-06T19:20:51.838004603Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":80,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":2.23942,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915234825973","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:51.840983374Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":81,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915234825973:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":1.395098,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:20:51.84260064Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":82,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915234825973:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":4.383855,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mici (WA)"},"time":"2026-03-06T19:20:51.847129768Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:51.847688924Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:52.120412698Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":83,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":78.207072,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46293 bytes>","time":"2026-03-06T19:20:52.210892304Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":84,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915234825973:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":2.103089,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:52.21337289Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":85,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/lyGoEouXaxbYbHonsiEnPPND?user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":2.884065,"status_code":200,"response_length":46293,"response_mime":"image/jpeg","time":"2026-03-06T19:20:52.216389584Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":86,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915234825973:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":5.03234,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lyGoEouXaxbYbHonsiEnPPND"},"time":"2026-03-06T19:20:52.221635363Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"105699396837592@lid","alternate_jid":"4915234825973@s.whatsapp.net","time":"2026-03-06T19:20:52.222175383Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":87,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":3.349912,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-127753970032737","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:52.226155621Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":88,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127753970032737:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":2.143108,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:52.228628174Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":89,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127753970032737:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":6.615663,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Josh (WA)"},"time":"2026-03-06T19:20:52.235443727Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:52.236242372Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:52.508183355Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":90,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":74.726904,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41842 bytes>","time":"2026-03-06T19:20:52.70246399Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":91,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127753970032737:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":2.11154,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:52.704900226Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":92,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/sYSbpNQTvisKpJOIimOumfcj?user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":2.18669,"status_code":200,"response_length":41842,"response_mime":"image/jpeg","time":"2026-03-06T19:20:52.70722227Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":93,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127753970032737:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":4.504613,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sYSbpNQTvisKpJOIimOumfcj"},"time":"2026-03-06T19:20:52.711998848Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":94,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491753774472%3Amatrix.theocloud.dev","duration":3.295435,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491753774472","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:52.716381098Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":95,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491753774472:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491753774472%3Amatrix.theocloud.dev","duration":2.27951,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:20:52.718998016Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":96,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491753774472:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491753774472%3Amatrix.theocloud.dev","duration":6.390353,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Josh (WA)"},"time":"2026-03-06T19:20:52.725567514Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:52.726466942Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:53.00384521Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":97,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491753774472%3Amatrix.theocloud.dev","duration":66.474559,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41842 bytes>","time":"2026-03-06T19:20:53.085719696Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":98,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491753774472:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491753774472%3Amatrix.theocloud.dev","duration":2.226569,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:53.088197977Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":99,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/qmOFNTZczyyIYAwcgBrAaXQa?user_id=%40whatsapp_491753774472%3Amatrix.theocloud.dev","duration":1.479817,"status_code":200,"response_length":41842,"response_mime":"image/jpeg","time":"2026-03-06T19:20:53.089756856Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":100,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491753774472:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491753774472%3Amatrix.theocloud.dev","duration":3.521514,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qmOFNTZczyyIYAwcgBrAaXQa"},"time":"2026-03-06T19:20:53.093479725Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"127753970032737@lid","alternate_jid":"491753774472@s.whatsapp.net","time":"2026-03-06T19:20:53.093902619Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"251037097177288@lid","time":"2026-03-06T19:20:53.094135892Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":101,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-251037097177288%3Amatrix.theocloud.dev","duration":2.46124,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-251037097177288","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:53.096765382Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":102,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251037097177288:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-251037097177288%3Amatrix.theocloud.dev","duration":1.373726,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:53.098380483Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":103,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251037097177288:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-251037097177288%3Amatrix.theocloud.dev","duration":4.95754,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lucas (WA)"},"time":"2026-03-06T19:20:53.10353379Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:53.104051112Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:53.432828777Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":104,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251037097177288:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-251037097177288%3Amatrix.theocloud.dev","duration":1.828609,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:53.43499619Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917627560255@s.whatsapp.net","time":"2026-03-06T19:20:53.435796931Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":105,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917627560255%3Amatrix.theocloud.dev","duration":2.561463,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917627560255","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:53.438608429Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":106,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627560255:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917627560255%3Amatrix.theocloud.dev","duration":1.44287,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:20:53.440277239Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":107,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627560255:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917627560255%3Amatrix.theocloud.dev","duration":4.471857,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"🏋️Матвей (WA)"},"time":"2026-03-06T19:20:53.444914971Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:53.445546834Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:53.594889524Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":108,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917627560255%3Amatrix.theocloud.dev","duration":75.626402,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<67249 bytes>","time":"2026-03-06T19:20:53.756371349Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":109,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627560255:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917627560255%3Amatrix.theocloud.dev","duration":2.451252,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:53.759226359Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":110,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wbxCenhlALkVFYexvSkNLbWz?user_id=%40whatsapp_4917627560255%3Amatrix.theocloud.dev","duration":3.392306,"status_code":200,"response_length":67249,"response_mime":"image/jpeg","time":"2026-03-06T19:20:53.762769105Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627560255:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917627560255%3Amatrix.theocloud.dev","duration":4.642203,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wbxCenhlALkVFYexvSkNLbWz"},"time":"2026-03-06T19:20:53.767701152Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917695111675@s.whatsapp.net","time":"2026-03-06T19:20:53.768612244Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":112,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917695111675%3Amatrix.theocloud.dev","duration":3.081438,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917695111675","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:53.77196048Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":113,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695111675:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917695111675%3Amatrix.theocloud.dev","duration":2.079202,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:20:53.774378487Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695111675:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917695111675%3Amatrix.theocloud.dev","duration":6.481567,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917695111675 (WA)"},"time":"2026-03-06T19:20:53.781033052Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:53.781918861Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:53.949624675Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":115,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917695111675%3Amatrix.theocloud.dev","duration":63.240724,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<48132 bytes>","time":"2026-03-06T19:20:54.127883716Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":116,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695111675:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917695111675%3Amatrix.theocloud.dev","duration":2.291104,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:54.130447135Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":117,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ckeDdvSVlxWuiWExBwhziRAx?user_id=%40whatsapp_4917695111675%3Amatrix.theocloud.dev","duration":2.358711,"status_code":200,"response_length":48132,"response_mime":"image/jpeg","time":"2026-03-06T19:20:54.132940502Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695111675:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917695111675%3Amatrix.theocloud.dev","duration":4.567471,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ckeDdvSVlxWuiWExBwhziRAx"},"time":"2026-03-06T19:20:54.137793278Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"54975749202069@lid","time":"2026-03-06T19:20:54.138706745Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":119,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":3.224685,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-54975749202069","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:54.142199414Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":120,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54975749202069:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":2.087654,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:20:54.14464438Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":121,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54975749202069:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":6.448461,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":". (WA)"},"time":"2026-03-06T19:20:54.151247752Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:54.151811797Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:54.310380434Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":122,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":74.406538,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26038 bytes>","time":"2026-03-06T19:20:54.392542461Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":123,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54975749202069:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":2.238023,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:54.395146388Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":124,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/jnnPELKejCzCqucCZGnhsglN?user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":2.927366,"status_code":200,"response_length":26038,"response_mime":"image/jpeg","time":"2026-03-06T19:20:54.398192626Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":125,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54975749202069:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":4.770572,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jnnPELKejCzCqucCZGnhsglN"},"time":"2026-03-06T19:20:54.403207646Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"102692751978521@lid","time":"2026-03-06T19:20:54.404132845Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":126,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-102692751978521%3Amatrix.theocloud.dev","duration":3.354661,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-102692751978521","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:54.407767644Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":127,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102692751978521:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-102692751978521%3Amatrix.theocloud.dev","duration":2.153934,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:54.410226508Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":128,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102692751978521:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-102692751978521%3Amatrix.theocloud.dev","duration":6.593733,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Balou (WA)"},"time":"2026-03-06T19:20:54.417016987Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:54.417853906Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:54.566144005Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":129,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102692751978521:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-102692751978521%3Amatrix.theocloud.dev","duration":2.588004,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:54.569100565Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"106669891670209@lid","time":"2026-03-06T19:20:54.569908151Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":130,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-106669891670209%3Amatrix.theocloud.dev","duration":3.573965,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-106669891670209","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:54.57375052Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":131,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-106669891670209:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-106669891670209%3Amatrix.theocloud.dev","duration":2.1774,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:54.576259392Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-106669891670209:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-106669891670209%3Amatrix.theocloud.dev","duration":6.60847,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Roman Demchenko (WA)"},"time":"2026-03-06T19:20:54.583086398Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:54.583914307Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:55.073959312Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":133,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-106669891670209%3Amatrix.theocloud.dev","duration":75.130732,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<62928 bytes>","time":"2026-03-06T19:20:55.163686647Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":134,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-106669891670209:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-106669891670209%3Amatrix.theocloud.dev","duration":2.400198,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:55.166396106Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":135,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ijVaSlJKJPgcYolqYpXnLSve?user_id=%40whatsapp_lid-106669891670209%3Amatrix.theocloud.dev","duration":2.25744,"status_code":200,"response_length":62928,"response_mime":"image/jpeg","time":"2026-03-06T19:20:55.168734004Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":136,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-106669891670209:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-106669891670209%3Amatrix.theocloud.dev","duration":4.692698,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ijVaSlJKJPgcYolqYpXnLSve"},"time":"2026-03-06T19:20:55.173638394Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"173804609343590@lid","time":"2026-03-06T19:20:55.180871043Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":137,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":3.471088,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-173804609343590","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:55.184613748Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":138,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-173804609343590:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":2.280907,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:55.187986917Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-173804609343590:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":6.744871,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nasser (WA)"},"time":"2026-03-06T19:20:55.194856387Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:55.195657128Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:55.362650062Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":140,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-173804609343590:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":2.49183,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:55.365533847Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"223072531550244@lid","time":"2026-03-06T19:20:55.366418049Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":141,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-223072531550244%3Amatrix.theocloud.dev","duration":3.529057,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-223072531550244","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:55.370223332Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":142,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-223072531550244:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-223072531550244%3Amatrix.theocloud.dev","duration":2.214696,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:55.372794154Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":143,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-223072531550244:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-223072531550244%3Amatrix.theocloud.dev","duration":6.64807,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"C R (WA)"},"time":"2026-03-06T19:20:55.37961697Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:55.380469115Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:55.900494097Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":144,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-223072531550244:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-223072531550244%3Amatrix.theocloud.dev","duration":2.479678,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:55.903326967Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917663076528@s.whatsapp.net","time":"2026-03-06T19:20:55.904199366Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":145,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917663076528%3Amatrix.theocloud.dev","duration":3.484148,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917663076528","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:55.907971614Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":146,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663076528:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663076528%3Amatrix.theocloud.dev","duration":2.216093,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:20:55.910535941Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":147,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663076528:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663076528%3Amatrix.theocloud.dev","duration":7.039117,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917663076528 (WA)"},"time":"2026-03-06T19:20:55.917747079Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:55.918631491Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:56.077155219Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":148,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917663076528%3Amatrix.theocloud.dev","duration":75.504737,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49234 bytes>","time":"2026-03-06T19:20:56.166065121Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":149,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663076528:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917663076528%3Amatrix.theocloud.dev","duration":2.488758,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:56.168958264Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":150,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ufYuBTYfjckxhSxuxySyMwpc?user_id=%40whatsapp_4917663076528%3Amatrix.theocloud.dev","duration":2.406693,"status_code":200,"response_length":49234,"response_mime":"image/jpeg","time":"2026-03-06T19:20:56.17150988Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":151,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663076528:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917663076528%3Amatrix.theocloud.dev","duration":4.965782,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ufYuBTYfjckxhSxuxySyMwpc"},"time":"2026-03-06T19:20:56.17672395Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"5768224989416@lid","time":"2026-03-06T19:20:56.177397368Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":152,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-5768224989416%3Amatrix.theocloud.dev","duration":3.624252,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-5768224989416","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:56.181224791Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":153,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-5768224989416:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-5768224989416%3Amatrix.theocloud.dev","duration":2.459773,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:20:56.184053052Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":154,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-5768224989416:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-5768224989416%3Amatrix.theocloud.dev","duration":6.980659,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yasin Güner (WA)"},"time":"2026-03-06T19:20:56.191214323Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:56.191823556Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:56.360168915Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":155,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-5768224989416%3Amatrix.theocloud.dev","duration":24.519715,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<25869 bytes>","time":"2026-03-06T19:20:56.561838157Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":156,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-5768224989416:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-5768224989416%3Amatrix.theocloud.dev","duration":2.392515,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:56.564584562Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":157,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/TYtClsGDFdkzBzIQLdODsxVz?user_id=%40whatsapp_lid-5768224989416%3Amatrix.theocloud.dev","duration":2.237884,"status_code":200,"response_length":25869,"response_mime":"image/jpeg","time":"2026-03-06T19:20:56.566950956Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":158,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-5768224989416:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-5768224989416%3Amatrix.theocloud.dev","duration":4.89985,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TYtClsGDFdkzBzIQLdODsxVz"},"time":"2026-03-06T19:20:56.572112994Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":159,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-150147879182516%3Amatrix.theocloud.dev","duration":3.436935,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-150147879182516","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:56.576723488Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":160,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150147879182516:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-150147879182516%3Amatrix.theocloud.dev","duration":2.135285,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:56.579168943Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":161,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150147879182516:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-150147879182516%3Amatrix.theocloud.dev","duration":6.602883,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Valentin (WA)"},"time":"2026-03-06T19:20:56.585933719Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:56.586808004Z","message":"040122552cb20e915c73a7"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:56.600100234Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:56.60022602Z","message":"Decrypting message from 4917641870516@s.whatsapp.net"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:56.601087174Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:56.601111549Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","sync_type":"RECENT","chunk_order":1,"progress":0,"time":"2026-03-06T19:20:56.60116442Z","message":"Stored history sync notification in queue"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:56.601267507Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"download history sync","sync_type":"RECENT","chunk_order":1,"progress":0,"time":"2026-03-06T19:20:56.601498754Z","message":"Downloading history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:56.645092725Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:56.646574498Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:56.70039246Z","message":"Received history sync (type RECENT, chunk 1, progress 71)"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:56.703728334Z","message":"Storing 4959 message secret keys in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:56.743359528Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":162,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-150147879182516%3Amatrix.theocloud.dev","duration":60.598803,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41936 bytes>","time":"2026-03-06T19:20:56.817463719Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":163,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150147879182516:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-150147879182516%3Amatrix.theocloud.dev","duration":1.841111,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:56.819551303Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":164,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/HXwEjfNeDAQoKemtoZQeqUaG?user_id=%40whatsapp_lid-150147879182516%3Amatrix.theocloud.dev","duration":2.028008,"status_code":200,"response_length":41936,"response_mime":"image/jpeg","time":"2026-03-06T19:20:56.821701465Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":165,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150147879182516:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-150147879182516%3Amatrix.theocloud.dev","duration":4.115522,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/HXwEjfNeDAQoKemtoZQeqUaG"},"time":"2026-03-06T19:20:56.826012056Z","message":"Request completed"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:56.895753694Z","message":"Stored 4959 message secret keys from history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"download history sync","sync_type":"RECENT","chunk_order":1,"progress":0,"pair_count":38,"time":"2026-03-06T19:20:56.897931514Z","message":"Stored PN-LID mappings from history sync"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"conversation_count":8,"past_participant_count":0,"time":"2026-03-06T19:20:56.898070011Z","message":"Storing history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"msg_count":3653,"chat_jid":"4915903048642@s.whatsapp.net","wrapped_count":3651,"ignored_msg_type_count":2,"lowest_time":"2025-12-06T22:33:21Z","lowest_time_index":3652,"highest_time":"2026-03-05T20:48:02Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:56.920256367Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"msg_count":272,"chat_jid":"120363192861790277@g.us","wrapped_count":271,"ignored_msg_type_count":1,"lowest_time":"2025-12-07T10:44:09Z","lowest_time_index":271,"highest_time":"2026-03-05T10:35:48Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:56.993594529Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"msg_count":70,"chat_jid":"491628947581@s.whatsapp.net","wrapped_count":70,"ignored_msg_type_count":0,"lowest_time":"2025-12-09T11:46:28Z","lowest_time_index":69,"highest_time":"2026-03-04T17:59:10Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:57.001790652Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"msg_count":48,"chat_jid":"120363400918258753@g.us","wrapped_count":27,"ignored_msg_type_count":21,"lowest_time":"2025-12-11T20:08:18Z","lowest_time_index":47,"highest_time":"2026-03-04T06:51:57Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:57.004480834Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"msg_count":50,"chat_jid":"491637362958@s.whatsapp.net","wrapped_count":50,"ignored_msg_type_count":0,"lowest_time":"2026-02-06T07:27:45Z","lowest_time_index":49,"highest_time":"2026-03-04T06:09:49Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:57.006057452Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"msg_count":6,"chat_jid":"0@s.whatsapp.net","wrapped_count":5,"ignored_msg_type_count":1,"lowest_time":"2026-01-10T14:00:56Z","lowest_time_index":4,"highest_time":"2026-02-24T06:01:39Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:57.007892626Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"msg_count":899,"chat_jid":"491736748726@s.whatsapp.net","wrapped_count":897,"ignored_msg_type_count":2,"lowest_time":"2026-01-07T18:22:13Z","lowest_time_index":898,"highest_time":"2026-03-03T11:29:24Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:57.014181288Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"msg_count":2,"chat_jid":"491731828379@s.whatsapp.net","wrapped_count":2,"ignored_msg_type_count":0,"lowest_time":"2026-03-03T06:40:48Z","lowest_time_index":1,"highest_time":"2026-03-03T06:41:14Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:57.038040016Z","message":"Collected messages to save from history sync conversation"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":1,"progress":71,"total_saved_count":4973,"total_failed_count":0,"total_message_count":5000,"duration":140.586432,"time":"2026-03-06T19:20:57.038748356Z","message":"Finished storing history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":166,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491736669329%3Amatrix.theocloud.dev","duration":3.235231,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491736669329","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:57.059036191Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":167,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491736669329:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491736669329%3Amatrix.theocloud.dev","duration":1.746823,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:20:57.061204512Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","time":"2026-03-06T19:20:57.062736571Z","message":"No more queued history sync notifications"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":168,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491736669329:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491736669329%3Amatrix.theocloud.dev","duration":5.165879,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Valentin (WA)"},"time":"2026-03-06T19:20:57.066507421Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:57.067396932Z","message":"040122552cb20e915c73a7"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:57.489825597Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":169,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491736669329%3Amatrix.theocloud.dev","duration":73.41429,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41936 bytes>","time":"2026-03-06T19:20:57.570290108Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":170,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491736669329:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491736669329%3Amatrix.theocloud.dev","duration":2.01858,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:57.572642674Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":171,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/TxVtskyLKZzeaFIfiRbEEHaY?user_id=%40whatsapp_491736669329%3Amatrix.theocloud.dev","duration":2.222659,"status_code":200,"response_length":41936,"response_mime":"image/jpeg","time":"2026-03-06T19:20:57.575040007Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491736669329:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491736669329%3Amatrix.theocloud.dev","duration":4.240539,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TxVtskyLKZzeaFIfiRbEEHaY"},"time":"2026-03-06T19:20:57.57948707Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"150147879182516@lid","alternate_jid":"491736669329@s.whatsapp.net","time":"2026-03-06T19:20:57.585620543Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":173,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":3.09415,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-243705789296680","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:57.589860874Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":174,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-243705789296680:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":2.002656,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:57.592214975Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":175,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-243705789296680:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":5.462918,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vicente (WA)"},"time":"2026-03-06T19:20:57.597846143Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:57.598266034Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:57.755198128Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":176,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":50.407008,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41913 bytes>","time":"2026-03-06T19:20:57.81801484Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":177,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-243705789296680:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":2.600645,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:57.820953312Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":178,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wEvgswXxqMzXVjAzbSYdoWIA?user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":2.414794,"status_code":200,"response_length":41913,"response_mime":"image/jpeg","time":"2026-03-06T19:20:57.823499759Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":179,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-243705789296680:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":4.922898,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wEvgswXxqMzXVjAzbSYdoWIA"},"time":"2026-03-06T19:20:57.828634069Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":180,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915254596937%3Amatrix.theocloud.dev","duration":3.384554,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915254596937","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:57.83291847Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":181,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915254596937:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915254596937%3Amatrix.theocloud.dev","duration":2.203102,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:20:57.835458072Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":182,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915254596937:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915254596937%3Amatrix.theocloud.dev","duration":6.138152,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vicente (WA)"},"time":"2026-03-06T19:20:57.841756862Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:57.842500472Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:58.003481598Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":183,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915254596937%3Amatrix.theocloud.dev","duration":48.464697,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41913 bytes>","time":"2026-03-06T19:20:58.05992444Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":184,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915254596937:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915254596937%3Amatrix.theocloud.dev","duration":2.253669,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:58.062520056Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":185,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ETFHhrMDhVHoTCtEgXMBYjiI?user_id=%40whatsapp_4915254596937%3Amatrix.theocloud.dev","duration":2.183896,"status_code":200,"response_length":41913,"response_mime":"image/jpeg","time":"2026-03-06T19:20:58.064821985Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":186,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915254596937:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915254596937%3Amatrix.theocloud.dev","duration":4.715606,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ETFHhrMDhVHoTCtEgXMBYjiI"},"time":"2026-03-06T19:20:58.069780084Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"243705789296680@lid","alternate_jid":"4915254596937@s.whatsapp.net","time":"2026-03-06T19:20:58.070305856Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915221654021@s.whatsapp.net","time":"2026-03-06T19:20:58.070688731Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":187,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915221654021%3Amatrix.theocloud.dev","duration":3.342229,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915221654021","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:58.074306697Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":188,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915221654021:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915221654021%3Amatrix.theocloud.dev","duration":2.131165,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:20:58.076790216Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":189,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915221654021:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915221654021%3Amatrix.theocloud.dev","duration":6.166857,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915221654021 (WA)"},"time":"2026-03-06T19:20:58.083113521Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:58.083840857Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:58.46918722Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":190,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915221654021%3Amatrix.theocloud.dev","duration":62.028753,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61605 bytes>","time":"2026-03-06T19:20:58.551751747Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":191,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915221654021:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915221654021%3Amatrix.theocloud.dev","duration":1.343555,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:58.553384099Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":192,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wMvyiKczFuQrbDJbpklghPSi?user_id=%40whatsapp_4915221654021%3Amatrix.theocloud.dev","duration":1.280278,"status_code":200,"response_length":61605,"response_mime":"image/jpeg","time":"2026-03-06T19:20:58.554743089Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":193,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915221654021:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915221654021%3Amatrix.theocloud.dev","duration":3.00133,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wMvyiKczFuQrbDJbpklghPSi"},"time":"2026-03-06T19:20:58.557956319Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915561837637@s.whatsapp.net","time":"2026-03-06T19:20:58.558453736Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":194,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915561837637%3Amatrix.theocloud.dev","duration":2.07606,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915561837637","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:58.560716763Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":195,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915561837637:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915561837637%3Amatrix.theocloud.dev","duration":1.22161,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:20:58.562152789Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":196,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915561837637:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915561837637%3Amatrix.theocloud.dev","duration":3.8196,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lucas (WA)"},"time":"2026-03-06T19:20:58.566091121Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:58.566559972Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:58.732406306Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":197,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915561837637:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915561837637%3Amatrix.theocloud.dev","duration":2.563908,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:58.735381514Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491639747105@s.whatsapp.net","time":"2026-03-06T19:20:58.736093137Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":198,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491639747105%3Amatrix.theocloud.dev","duration":3.514111,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491639747105","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:58.739850368Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":199,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639747105:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639747105%3Amatrix.theocloud.dev","duration":2.184874,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:20:58.742370554Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":200,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639747105:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639747105%3Amatrix.theocloud.dev","duration":6.613289,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Liam (WA)"},"time":"2026-03-06T19:20:58.749159776Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:58.749999768Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:58.899023768Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":201,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639747105:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491639747105%3Amatrix.theocloud.dev","duration":2.577876,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:58.90193123Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917634652400@s.whatsapp.net","time":"2026-03-06T19:20:58.902614845Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":202,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917634652400%3Amatrix.theocloud.dev","duration":3.558321,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917634652400","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:58.906444922Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":203,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634652400:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634652400%3Amatrix.theocloud.dev","duration":2.125438,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:20:58.908931794Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":204,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634652400:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634652400%3Amatrix.theocloud.dev","duration":6.506012,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"B (WA)"},"time":"2026-03-06T19:20:58.91562603Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:58.916360909Z","message":""} +{"level":"debug","transaction_id":"1227","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:20:59.077494431Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1227","time":"2026-03-06T19:20:59.07760548Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:59.093851058Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":205,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634652400:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917634652400%3Amatrix.theocloud.dev","duration":2.320228,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:59.096473144Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"105029298036926@lid","time":"2026-03-06T19:20:59.097162905Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":206,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-105029298036926%3Amatrix.theocloud.dev","duration":3.341321,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-105029298036926","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:59.100757754Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":207,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105029298036926:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-105029298036926%3Amatrix.theocloud.dev","duration":2.156797,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:59.103230727Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":208,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105029298036926:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-105029298036926%3Amatrix.theocloud.dev","duration":6.409978,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Paul (WA)"},"time":"2026-03-06T19:20:59.109816219Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:59.110590419Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":42,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1906_952_8_390_440_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.139637,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:20:59.143460748Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:59.270904133Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":210,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105029298036926:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-105029298036926%3Amatrix.theocloud.dev","duration":2.398312,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:59.273686926Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"108778989056067@lid","time":"2026-03-06T19:20:59.274387513Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":211,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-108778989056067%3Amatrix.theocloud.dev","duration":3.398731,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-108778989056067","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:59.278026153Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":212,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-108778989056067:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-108778989056067%3Amatrix.theocloud.dev","duration":2.012923,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:59.280371803Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":213,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-108778989056067:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-108778989056067%3Amatrix.theocloud.dev","duration":6.596876,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nazar (WA)"},"time":"2026-03-06T19:20:59.287148314Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:59.287905543Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:59.445104154Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":214,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-108778989056067:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-108778989056067%3Amatrix.theocloud.dev","duration":2.733554,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:59.448208291Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"178941893574847@lid","time":"2026-03-06T19:20:59.448916561Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":215,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-178941893574847%3Amatrix.theocloud.dev","duration":3.512016,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-178941893574847","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:59.452687552Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":216,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-178941893574847:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-178941893574847%3Amatrix.theocloud.dev","duration":2.132073,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:20:59.455115197Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":217,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-178941893574847:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-178941893574847%3Amatrix.theocloud.dev","duration":6.181454,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Darin (WA)"},"time":"2026-03-06T19:20:59.46146567Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:59.462156828Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:59.58684012Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:59.587004458Z","message":"Decrypting message from 4917641870516@s.whatsapp.net"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:59.587974148Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:59.587996567Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","sync_type":"RECENT","chunk_order":2,"progress":100,"time":"2026-03-06T19:20:59.588083311Z","message":"Stored history sync notification in queue"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:59.588168658Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"download history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"time":"2026-03-06T19:20:59.588400534Z","message":"Downloading history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:59.618181811Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:59.63166038Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:59.632322065Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:59.632925991Z","message":"Received history sync (type RECENT, chunk 2, progress 100)"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:59.634198027Z","message":"Storing 1921 message secret keys in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":218,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-178941893574847%3Amatrix.theocloud.dev","duration":80.908289,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47670 bytes>","time":"2026-03-06T19:20:59.712134181Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":219,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-178941893574847:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-178941893574847%3Amatrix.theocloud.dev","duration":2.355359,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:20:59.716637327Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":220,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/EVTxahldSVlRkzCAzOObjuVA?user_id=%40whatsapp_lid-178941893574847%3Amatrix.theocloud.dev","duration":3.373937,"status_code":200,"response_length":47670,"response_mime":"image/jpeg","time":"2026-03-06T19:20:59.720163311Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":221,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-178941893574847:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-178941893574847%3Amatrix.theocloud.dev","duration":5.535763,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EVTxahldSVlRkzCAzOObjuVA"},"time":"2026-03-06T19:20:59.726025797Z","message":"Request completed"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:20:59.743889339Z","message":"Stored 1921 message secret keys from history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"download history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"pair_count":163,"time":"2026-03-06T19:20:59.75114797Z","message":"Stored PN-LID mappings from history sync"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"conversation_count":13,"past_participant_count":0,"time":"2026-03-06T19:20:59.751229615Z","message":"Storing history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":68,"chat_jid":"491731828379@s.whatsapp.net","wrapped_count":68,"ignored_msg_type_count":0,"lowest_time":"2025-12-15T08:58:49Z","lowest_time_index":67,"highest_time":"2026-03-02T09:40:52Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.751598731Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":81,"chat_jid":"4917657607100@s.whatsapp.net","wrapped_count":81,"ignored_msg_type_count":0,"lowest_time":"2025-12-24T07:44:06Z","lowest_time_index":80,"highest_time":"2026-03-02T13:29:26Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.75323681Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":285,"chat_jid":"4917620338641@s.whatsapp.net","wrapped_count":285,"ignored_msg_type_count":0,"lowest_time":"2025-12-24T12:04:30Z","lowest_time_index":284,"highest_time":"2026-03-01T20:48:40Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.75574233Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":492,"chat_jid":"120363163455706585@g.us","wrapped_count":417,"ignored_msg_type_count":75,"lowest_time":"2025-12-07T10:32:42Z","lowest_time_index":491,"highest_time":"2026-02-27T21:16:38Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.761500192Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":142,"chat_jid":"4917623702252@s.whatsapp.net","wrapped_count":142,"ignored_msg_type_count":0,"lowest_time":"2025-12-07T11:23:19Z","lowest_time_index":141,"highest_time":"2026-02-26T16:27:25Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.768248905Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":66,"chat_jid":"120363173737697025@g.us","wrapped_count":64,"ignored_msg_type_count":2,"lowest_time":"2025-12-07T10:58:27Z","lowest_time_index":65,"highest_time":"2026-02-26T10:59:33Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.770439715Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":39,"lid":"266657507356684@lid","pn":"4915150515988@s.whatsapp.net","time":"2026-03-06T19:20:59.771556213Z","message":"Rerouting LID DM to phone number in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":39,"chat_jid":"4915150515988@s.whatsapp.net","wrapped_count":38,"ignored_msg_type_count":1,"lowest_time":"2026-02-17T08:34:48Z","lowest_time_index":37,"highest_time":"2026-02-26T07:08:16Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.771745485Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":240,"chat_jid":"491783743461@s.whatsapp.net","wrapped_count":240,"ignored_msg_type_count":0,"lowest_time":"2026-01-05T21:39:35Z","lowest_time_index":239,"highest_time":"2026-02-21T20:00:04Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.773476384Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":3,"lid":"198041059483854@lid","pn":"491605556877@s.whatsapp.net","time":"2026-03-06T19:20:59.77652381Z","message":"Rerouting LID DM to phone number in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":3,"chat_jid":"491605556877@s.whatsapp.net","wrapped_count":2,"ignored_msg_type_count":1,"lowest_time":"2026-02-16T09:12:47Z","lowest_time_index":1,"highest_time":"2026-02-16T09:13:28Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.77657682Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":24,"chat_jid":"4915735701057@s.whatsapp.net","wrapped_count":24,"ignored_msg_type_count":0,"lowest_time":"2025-12-08T20:17:25Z","lowest_time_index":23,"highest_time":"2026-01-01T09:59:46Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.776994616Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":10,"lid":"105699396837592@lid","pn":"4915234825973@s.whatsapp.net","time":"2026-03-06T19:20:59.777527582Z","message":"Rerouting LID DM to phone number in history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":10,"chat_jid":"4915234825973@s.whatsapp.net","wrapped_count":9,"ignored_msg_type_count":1,"lowest_time":"2026-02-02T19:10:47Z","lowest_time_index":8,"highest_time":"2026-02-06T17:59:33Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.777622707Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":588,"chat_jid":"491736748726@s.whatsapp.net","wrapped_count":586,"ignored_msg_type_count":2,"lowest_time":"2025-12-07T20:58:03Z","lowest_time_index":587,"highest_time":"2026-01-07T18:22:11Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.780159376Z","message":"Collected messages to save from history sync conversation"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"msg_count":5,"chat_jid":"4917680834617@s.whatsapp.net","wrapped_count":5,"ignored_msg_type_count":0,"lowest_time":"2025-12-24T14:27:46Z","lowest_time_index":4,"highest_time":"2025-12-31T23:11:51Z","highest_time_index":0,"metadata":{"ephemeral_expiration":0,"ephemeral_setting_timestamp":0,"last_message_ts":0,"marked_unread":false,"archived":false,"pinned":0,"mute_end":0,"unread_count":0},"time":"2026-03-06T19:20:59.788749339Z","message":"Collected messages to save from history sync conversation"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"store history sync","sync_type":"RECENT","chunk_order":2,"progress":100,"total_saved_count":1961,"total_failed_count":0,"total_message_count":2043,"duration":37.881786,"time":"2026-03-06T19:20:59.789150932Z","message":"Finished storing history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","time":"2026-03-06T19:20:59.791374708Z","message":"No more queued history sync notifications"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":222,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491784794876%3Amatrix.theocloud.dev","duration":3.588702,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491784794876","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:20:59.810280505Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":223,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491784794876:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491784794876%3Amatrix.theocloud.dev","duration":2.20415,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:20:59.812868578Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":224,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491784794876:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491784794876%3Amatrix.theocloud.dev","duration":5.594501,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Darin (WA)"},"time":"2026-03-06T19:20:59.81862651Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:20:59.819495626Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:20:59.967631373Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":225,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491784794876%3Amatrix.theocloud.dev","duration":76.483436,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47670 bytes>","time":"2026-03-06T19:21:00.052649108Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":226,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491784794876:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491784794876%3Amatrix.theocloud.dev","duration":2.275529,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:00.055289562Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":227,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/PYcfUexZNIHupwzAtQHFgVtn?user_id=%40whatsapp_491784794876%3Amatrix.theocloud.dev","duration":2.754018,"status_code":200,"response_length":47670,"response_mime":"image/jpeg","time":"2026-03-06T19:21:00.05818103Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":228,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491784794876:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491784794876%3Amatrix.theocloud.dev","duration":4.513623,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PYcfUexZNIHupwzAtQHFgVtn"},"time":"2026-03-06T19:21:00.062948459Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"178941893574847@lid","alternate_jid":"491784794876@s.whatsapp.net","time":"2026-03-06T19:21:00.063660291Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":229,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-219241135489206%3Amatrix.theocloud.dev","duration":3.007546,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-219241135489206","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:00.06738763Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":230,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-219241135489206:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-219241135489206%3Amatrix.theocloud.dev","duration":2.174468,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:00.069894407Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":231,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-219241135489206:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-219241135489206%3Amatrix.theocloud.dev","duration":6.738656,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Seyyid (WA)"},"time":"2026-03-06T19:21:00.076809135Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:00.077622307Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:00.52725584Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":232,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-219241135489206:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-219241135489206%3Amatrix.theocloud.dev","duration":2.576479,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:00.530194101Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":233,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491787166894%3Amatrix.theocloud.dev","duration":3.494345,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491787166894","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:00.534545969Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":234,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491787166894:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491787166894%3Amatrix.theocloud.dev","duration":2.356686,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:00.537251447Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":235,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491787166894:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491787166894%3Amatrix.theocloud.dev","duration":6.763939,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Seyyid (WA)"},"time":"2026-03-06T19:21:00.544235249Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:00.545070283Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:00.71859919Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":236,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491787166894:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491787166894%3Amatrix.theocloud.dev","duration":2.56265,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:00.721571605Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"219241135489206@lid","alternate_jid":"491787166894@s.whatsapp.net","time":"2026-03-06T19:21:00.722126431Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":237,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-241506145304775%3Amatrix.theocloud.dev","duration":3.672373,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-241506145304775","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:00.726387085Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":238,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-241506145304775:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-241506145304775%3Amatrix.theocloud.dev","duration":2.183547,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:00.728908389Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":239,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-241506145304775:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-241506145304775%3Amatrix.theocloud.dev","duration":6.585212,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alex (WA)"},"time":"2026-03-06T19:21:00.735651375Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:00.736449252Z","message":"04012361d72515befe8710"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:00.893185369Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":240,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-241506145304775%3Amatrix.theocloud.dev","duration":80.099237,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<56863 bytes>","time":"2026-03-06T19:21:00.989478081Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":241,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-241506145304775:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-241506145304775%3Amatrix.theocloud.dev","duration":2.281884,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:00.992047715Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":242,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ySbytOsqkBwYFSzCzlzglJuQ?user_id=%40whatsapp_lid-241506145304775%3Amatrix.theocloud.dev","duration":2.350679,"status_code":200,"response_length":56863,"response_mime":"image/jpeg","time":"2026-03-06T19:21:00.994576003Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":243,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-241506145304775:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-241506145304775%3Amatrix.theocloud.dev","duration":4.789919,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ySbytOsqkBwYFSzCzlzglJuQ"},"time":"2026-03-06T19:21:00.999559036Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":244,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":3.504683,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917657607100","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:01.003761651Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":245,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657607100:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":2.382178,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:01.006468805Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":246,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657607100:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":7.000565,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alex (WA)"},"time":"2026-03-06T19:21:01.013666184Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:01.014427255Z","message":"04012361d72515befe8710"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:01.172935198Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":247,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":76.898648,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<56863 bytes>","time":"2026-03-06T19:21:01.257678104Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":248,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657607100:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":2.068167,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:01.260100092Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":249,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YNWVkqhhjrMzHXcXqoAfgdLb?user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":2.205548,"status_code":200,"response_length":56863,"response_mime":"image/jpeg","time":"2026-03-06T19:21:01.262429749Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":250,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657607100:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":4.616501,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YNWVkqhhjrMzHXcXqoAfgdLb"},"time":"2026-03-06T19:21:01.267376463Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"241506145304775@lid","alternate_jid":"4917657607100@s.whatsapp.net","time":"2026-03-06T19:21:01.267961671Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":251,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-256181947912368%3Amatrix.theocloud.dev","duration":3.297111,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-256181947912368","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:01.271839939Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":252,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256181947912368:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-256181947912368%3Amatrix.theocloud.dev","duration":2.315479,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:01.274487028Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":253,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256181947912368:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-256181947912368%3Amatrix.theocloud.dev","duration":6.29411,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Amon (WA)"},"time":"2026-03-06T19:21:01.280949947Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:01.281852448Z","message":"0401228e782ecbce6e994f"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:01.975452223Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":254,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-256181947912368%3Amatrix.theocloud.dev","duration":75.427282,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64209 bytes>","time":"2026-03-06T19:21:02.064777685Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":255,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256181947912368:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-256181947912368%3Amatrix.theocloud.dev","duration":2.07585,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:02.067130809Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":256,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ZLYrPNtoMkGokRIpKtdHYgxv?user_id=%40whatsapp_lid-256181947912368%3Amatrix.theocloud.dev","duration":2.107209,"status_code":200,"response_length":64209,"response_mime":"image/jpeg","time":"2026-03-06T19:21:02.069370649Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":257,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256181947912368:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-256181947912368%3Amatrix.theocloud.dev","duration":4.459914,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZLYrPNtoMkGokRIpKtdHYgxv"},"time":"2026-03-06T19:21:02.074018578Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":258,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":3.292991,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917623702252","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:02.078300604Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":259,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623702252:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":2.090167,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:02.080631867Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":260,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623702252:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":5.928905,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Amon (WA)"},"time":"2026-03-06T19:21:02.086670634Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:02.087470677Z","message":"0401228e782ecbce6e994f"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:02.348197094Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":261,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":71.067172,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64209 bytes>","time":"2026-03-06T19:21:02.431641703Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":262,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623702252:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":2.453207,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:02.434458858Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":263,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/sEWrJTaMMLVCkLTmuCbVdDzk?user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":2.30626,"status_code":200,"response_length":64209,"response_mime":"image/jpeg","time":"2026-03-06T19:21:02.436899425Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":264,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623702252:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":3.93945,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sEWrJTaMMLVCkLTmuCbVdDzk"},"time":"2026-03-06T19:21:02.441156796Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"256181947912368@lid","alternate_jid":"4917623702252@s.whatsapp.net","time":"2026-03-06T19:21:02.441791173Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491716206744@s.whatsapp.net","time":"2026-03-06T19:21:02.442132143Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":265,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491716206744%3Amatrix.theocloud.dev","duration":2.30172,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491716206744","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:02.44473132Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":266,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491716206744:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491716206744%3Amatrix.theocloud.dev","duration":1.274131,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:02.446371076Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":267,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491716206744:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491716206744%3Amatrix.theocloud.dev","duration":3.756184,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491716206744 (WA)"},"time":"2026-03-06T19:21:02.450278328Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:02.45080012Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:02.614451872Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":268,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491716206744%3Amatrix.theocloud.dev","duration":49.443954,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<21859 bytes>","time":"2026-03-06T19:21:02.733188587Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":269,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491716206744:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491716206744%3Amatrix.theocloud.dev","duration":2.283282,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:02.735852439Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":270,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YYqWimtRTTliqKarDAYnaaQS?user_id=%40whatsapp_491716206744%3Amatrix.theocloud.dev","duration":3.00084,"status_code":200,"response_length":21859,"response_mime":"image/jpeg","time":"2026-03-06T19:21:02.738975224Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":271,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491716206744:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491716206744%3Amatrix.theocloud.dev","duration":4.991693,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YYqWimtRTTliqKarDAYnaaQS"},"time":"2026-03-06T19:21:02.744199561Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"79564369862829@lid","time":"2026-03-06T19:21:02.744842319Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":272,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-79564369862829%3Amatrix.theocloud.dev","duration":3.357036,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-79564369862829","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:02.748433116Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":273,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-79564369862829:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-79564369862829%3Amatrix.theocloud.dev","duration":2.315199,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:02.75111401Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":274,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-79564369862829:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-79564369862829%3Amatrix.theocloud.dev","duration":6.848587,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Batu (WA)"},"time":"2026-03-06T19:21:02.758153685Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:02.758902394Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:02.918947285Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":275,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-79564369862829%3Amatrix.theocloud.dev","duration":78.968422,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<89458 bytes>","time":"2026-03-06T19:21:03.01243667Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":276,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-79564369862829:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-79564369862829%3Amatrix.theocloud.dev","duration":2.276157,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:03.015064134Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":277,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/flJkpRufCIwToDVTWBMGyAsV?user_id=%40whatsapp_lid-79564369862829%3Amatrix.theocloud.dev","duration":2.405017,"status_code":200,"response_length":89458,"response_mime":"image/jpeg","time":"2026-03-06T19:21:03.017591584Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":278,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-79564369862829:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-79564369862829%3Amatrix.theocloud.dev","duration":4.722381,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/flJkpRufCIwToDVTWBMGyAsV"},"time":"2026-03-06T19:21:03.022660243Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":279,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-13069475909%3Amatrix.theocloud.dev","duration":3.46571,"status_code":200,"response_length":97,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-13069475909","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:03.027271924Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":280,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-13069475909:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-13069475909%3Amatrix.theocloud.dev","duration":2.158124,"status_code":200,"response_length":42,"response_mime":"application/json","time":"2026-03-06T19:21:03.029806428Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":281,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-13069475909:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-13069475909%3Amatrix.theocloud.dev","duration":7.862626,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wagner Ribeiro (WA)"},"time":"2026-03-06T19:21:03.037846803Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:03.038678972Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:03.193410757Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":282,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-13069475909:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-13069475909%3Amatrix.theocloud.dev","duration":2.470389,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:03.196195016Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":283,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_33768539740%3Amatrix.theocloud.dev","duration":3.525704,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_33768539740","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:03.200621686Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":284,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33768539740:matrix.theocloud.dev/displayname?user_id=%40whatsapp_33768539740%3Amatrix.theocloud.dev","duration":2.025494,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:21:03.202986054Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":285,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33768539740:matrix.theocloud.dev/displayname?user_id=%40whatsapp_33768539740%3Amatrix.theocloud.dev","duration":6.107073,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wagner Ribeiro (WA)"},"time":"2026-03-06T19:21:03.209261586Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:03.210066727Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:03.370648076Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":286,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33768539740:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_33768539740%3Amatrix.theocloud.dev","duration":2.475138,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:03.373447002Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"13069475909@lid","alternate_jid":"33768539740@s.whatsapp.net","time":"2026-03-06T19:21:03.37397012Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"23858610438397@lid","time":"2026-03-06T19:21:03.37429775Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":287,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-23858610438397%3Amatrix.theocloud.dev","duration":3.231041,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-23858610438397","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:03.377813258Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":288,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-23858610438397:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-23858610438397%3Amatrix.theocloud.dev","duration":2.195979,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:03.38035279Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":289,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-23858610438397:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-23858610438397%3Amatrix.theocloud.dev","duration":7.726434,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"leoni (WA)"},"time":"2026-03-06T19:21:03.388241747Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:03.38907727Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:03.705685138Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":290,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-23858610438397%3Amatrix.theocloud.dev","duration":72.651822,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40866 bytes>","time":"2026-03-06T19:21:03.785663059Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":291,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-23858610438397:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-23858610438397%3Amatrix.theocloud.dev","duration":1.966407,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:03.787961566Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":292,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/qvZyUImWKoalNQsyVVGqcLDe?user_id=%40whatsapp_lid-23858610438397%3Amatrix.theocloud.dev","duration":2.738932,"status_code":200,"response_length":40866,"response_mime":"image/jpeg","time":"2026-03-06T19:21:03.790817833Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":293,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-23858610438397:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-23858610438397%3Amatrix.theocloud.dev","duration":4.161269,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qvZyUImWKoalNQsyVVGqcLDe"},"time":"2026-03-06T19:21:03.795150005Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":294,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-242828928122951%3Amatrix.theocloud.dev","duration":2.971786,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-242828928122951","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:03.79924646Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":295,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242828928122951:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-242828928122951%3Amatrix.theocloud.dev","duration":1.979817,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:03.801550974Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":296,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242828928122951:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-242828928122951%3Amatrix.theocloud.dev","duration":5.555808,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lulu (WA)"},"time":"2026-03-06T19:21:03.807257502Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:03.808044204Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:03.975074084Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":297,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-242828928122951%3Amatrix.theocloud.dev","duration":79.103217,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<76016 bytes>","time":"2026-03-06T19:21:04.063627092Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":298,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242828928122951:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-242828928122951%3Amatrix.theocloud.dev","duration":2.315479,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:04.066301211Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":299,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/uLBwZSpsbtKsjdaywYYetTPS?user_id=%40whatsapp_lid-242828928122951%3Amatrix.theocloud.dev","duration":2.074314,"status_code":200,"response_length":76016,"response_mime":"image/jpeg","time":"2026-03-06T19:21:04.068531552Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":300,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242828928122951:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-242828928122951%3Amatrix.theocloud.dev","duration":4.676774,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uLBwZSpsbtKsjdaywYYetTPS"},"time":"2026-03-06T19:21:04.073500057Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":301,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917634536621%3Amatrix.theocloud.dev","duration":3.28433,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917634536621","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:04.077875601Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":302,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634536621:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634536621%3Amatrix.theocloud.dev","duration":2.035831,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:04.080243601Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":303,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634536621:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634536621%3Amatrix.theocloud.dev","duration":6.315551,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lulu (WA)"},"time":"2026-03-06T19:21:04.086748286Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:04.087617821Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:04.253923298Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":304,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917634536621%3Amatrix.theocloud.dev","duration":73.519123,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<76016 bytes>","time":"2026-03-06T19:21:04.338387812Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":305,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634536621:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917634536621%3Amatrix.theocloud.dev","duration":1.995252,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:04.340712161Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":306,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/QHhatvZKRHvtswfnxtkUcwBX?user_id=%40whatsapp_4917634536621%3Amatrix.theocloud.dev","duration":2.278671,"status_code":200,"response_length":76016,"response_mime":"image/jpeg","time":"2026-03-06T19:21:04.343123254Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":307,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634536621:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917634536621%3Amatrix.theocloud.dev","duration":4.746128,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QHhatvZKRHvtswfnxtkUcwBX"},"time":"2026-03-06T19:21:04.348208046Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"242828928122951@lid","alternate_jid":"4917634536621@s.whatsapp.net","time":"2026-03-06T19:21:04.348824474Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"29888778084533@lid","time":"2026-03-06T19:21:04.349178434Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":308,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-29888778084533%3Amatrix.theocloud.dev","duration":3.200519,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-29888778084533","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:04.352645471Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":309,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-29888778084533:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-29888778084533%3Amatrix.theocloud.dev","duration":2.119152,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:04.355091275Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":310,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-29888778084533:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-29888778084533%3Amatrix.theocloud.dev","duration":6.401876,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Martin Kuhn (WA)"},"time":"2026-03-06T19:21:04.361652113Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:04.362440352Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:04.63797234Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":311,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-29888778084533:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-29888778084533%3Amatrix.theocloud.dev","duration":2.585908,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:04.640916888Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491794159819@s.whatsapp.net","time":"2026-03-06T19:21:04.641744867Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":312,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491794159819%3Amatrix.theocloud.dev","duration":3.481704,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491794159819","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:04.645500073Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":313,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794159819:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491794159819%3Amatrix.theocloud.dev","duration":2.034852,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:04.647848098Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":314,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794159819:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491794159819%3Amatrix.theocloud.dev","duration":6.813457,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Uwe Leuthardt (WA)"},"time":"2026-03-06T19:21:04.654850548Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:04.65559339Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:04.823186128Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":315,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491794159819%3Amatrix.theocloud.dev","duration":79.319309,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47576 bytes>","time":"2026-03-06T19:21:04.909852768Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":316,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794159819:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491794159819%3Amatrix.theocloud.dev","duration":2.316037,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:04.912546163Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":317,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/SmTspnvJncqQcxitHTuHvgBj?user_id=%40whatsapp_491794159819%3Amatrix.theocloud.dev","duration":2.401594,"status_code":200,"response_length":47576,"response_mime":"image/jpeg","time":"2026-03-06T19:21:04.915071797Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":318,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794159819:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491794159819%3Amatrix.theocloud.dev","duration":4.776858,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SmTspnvJncqQcxitHTuHvgBj"},"time":"2026-03-06T19:21:04.920177192Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"68904781090845@lid","time":"2026-03-06T19:21:04.921014181Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":319,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-68904781090845%3Amatrix.theocloud.dev","duration":3.323721,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-68904781090845","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:04.924603582Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":320,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-68904781090845:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-68904781090845%3Amatrix.theocloud.dev","duration":2.213579,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:04.927146327Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":321,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-68904781090845:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-68904781090845%3Amatrix.theocloud.dev","duration":6.438753,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"clid (WA)"},"time":"2026-03-06T19:21:04.933750188Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:04.934570834Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:05.199153518Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":322,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-68904781090845:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-68904781090845%3Amatrix.theocloud.dev","duration":2.535482,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:05.202075717Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"115431574622245@lid","time":"2026-03-06T19:21:05.202804101Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":323,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-115431574622245%3Amatrix.theocloud.dev","duration":3.604976,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-115431574622245","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:05.206663931Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":324,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115431574622245:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-115431574622245%3Amatrix.theocloud.dev","duration":2.109723,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:05.209086408Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":325,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115431574622245:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-115431574622245%3Amatrix.theocloud.dev","duration":6.802422,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Kai (WA)"},"time":"2026-03-06T19:21:05.216044019Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:05.216639563Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:05.376709876Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":326,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115431574622245:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-115431574622245%3Amatrix.theocloud.dev","duration":2.517043,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:05.379577737Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":327,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-1876967866385%3Amatrix.theocloud.dev","duration":3.480935,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-1876967866385","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:05.38404701Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":328,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1876967866385:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-1876967866385%3Amatrix.theocloud.dev","duration":2.248221,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:21:05.386613502Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":329,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1876967866385:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-1876967866385%3Amatrix.theocloud.dev","duration":6.207716,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Phie (WA)"},"time":"2026-03-06T19:21:05.392980667Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:05.393757661Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:05.561202614Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":330,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1876967866385:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-1876967866385%3Amatrix.theocloud.dev","duration":2.234811,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:05.563809823Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":331,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4916094954618%3Amatrix.theocloud.dev","duration":2.168251,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4916094954618","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:05.566624394Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":332,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916094954618:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4916094954618%3Amatrix.theocloud.dev","duration":1.349421,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:05.568206041Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":333,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916094954618:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4916094954618%3Amatrix.theocloud.dev","duration":3.763866,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Phie (WA)"},"time":"2026-03-06T19:21:05.572126145Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:05.572627891Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:05.990200146Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":334,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916094954618:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4916094954618%3Amatrix.theocloud.dev","duration":2.610841,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:05.993200288Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"1876967866385@lid","alternate_jid":"4916094954618@s.whatsapp.net","time":"2026-03-06T19:21:05.993710835Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":335,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-196232895029386%3Amatrix.theocloud.dev","duration":3.392306,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-196232895029386","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:05.997684368Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":336,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196232895029386:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-196232895029386%3Amatrix.theocloud.dev","duration":2.20003,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:06.000217405Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":337,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196232895029386:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-196232895029386%3Amatrix.theocloud.dev","duration":6.593035,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tobi (WA)"},"time":"2026-03-06T19:21:06.007007185Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:06.007858073Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:06.176241425Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":338,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196232895029386:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-196232895029386%3Amatrix.theocloud.dev","duration":2.300462,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:06.178884603Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":339,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491601415978%3Amatrix.theocloud.dev","duration":3.554829,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491601415978","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:06.183319304Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":340,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491601415978:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491601415978%3Amatrix.theocloud.dev","duration":2.087374,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:06.185739267Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":341,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491601415978:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491601415978%3Amatrix.theocloud.dev","duration":6.378968,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tobi (WA)"},"time":"2026-03-06T19:21:06.192280548Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:06.193055378Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:06.358452417Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":342,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491601415978:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491601415978%3Amatrix.theocloud.dev","duration":2.433512,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:06.361237654Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"196232895029386@lid","alternate_jid":"491601415978@s.whatsapp.net","time":"2026-03-06T19:21:06.361791293Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917673282928@s.whatsapp.net","alt_jid":"80522080477241@lid","source_push_name":"Makhkam","alt_push_name":"Mahkam","time":"2026-03-06T19:21:06.362117526Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":343,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917673282928%3Amatrix.theocloud.dev","duration":3.58074,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917673282928","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:06.365990277Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":344,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917673282928:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917673282928%3Amatrix.theocloud.dev","duration":2.1026,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:06.368400182Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":345,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917673282928:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917673282928%3Amatrix.theocloud.dev","duration":6.430931,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Makhkam (WA)"},"time":"2026-03-06T19:21:06.374994195Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:06.375853813Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:06.532469101Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":346,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917673282928%3Amatrix.theocloud.dev","duration":59.211318,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32213 bytes>","time":"2026-03-06T19:21:06.619774588Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":347,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917673282928:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917673282928%3Amatrix.theocloud.dev","duration":1.868489,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:06.621905613Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":348,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/fOuJdEqqGNJWoXYyvBfyPuWU?user_id=%40whatsapp_4917673282928%3Amatrix.theocloud.dev","duration":2.53639,"status_code":200,"response_length":32213,"response_mime":"image/jpeg","time":"2026-03-06T19:21:06.624535102Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":349,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917673282928:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917673282928%3Amatrix.theocloud.dev","duration":3.304654,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fOuJdEqqGNJWoXYyvBfyPuWU"},"time":"2026-03-06T19:21:06.628035524Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":350,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":2.09792,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-80522080477241","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:06.630828654Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":351,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80522080477241:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":1.219166,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:06.632378243Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":352,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80522080477241:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":3.752133,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Makhkam (WA)"},"time":"2026-03-06T19:21:06.636268454Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:06.636785217Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:06.794983479Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":353,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":75.205393,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32213 bytes>","time":"2026-03-06T19:21:06.881913424Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":354,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80522080477241:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":2.193604,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:06.884471045Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":355,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BGFNBeGGNGSHJjqGowzMuqpx?user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":2.086815,"status_code":200,"response_length":32213,"response_mime":"image/jpeg","time":"2026-03-06T19:21:06.886693285Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":356,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80522080477241:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":5.770294,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BGFNBeGGNGSHJjqGowzMuqpx"},"time":"2026-03-06T19:21:06.892714032Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917673282928@s.whatsapp.net","alternate_jid":"80522080477241@lid","time":"2026-03-06T19:21:06.89326404Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":357,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-61169360498824%3Amatrix.theocloud.dev","duration":3.685154,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-61169360498824","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:06.89751296Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":358,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-61169360498824:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-61169360498824%3Amatrix.theocloud.dev","duration":1.830774,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:06.899724165Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":359,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-61169360498824:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-61169360498824%3Amatrix.theocloud.dev","duration":5.538627,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Carlo (WA)"},"time":"2026-03-06T19:21:06.905446756Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:06.90611787Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:07.073235471Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":360,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-61169360498824%3Amatrix.theocloud.dev","duration":78.369735,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<79791 bytes>","time":"2026-03-06T19:21:07.167620304Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":361,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-61169360498824:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-61169360498824%3Amatrix.theocloud.dev","duration":2.105952,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:07.170068483Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":362,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ozOWBtbeKJycQWGYvxqLbBEQ?user_id=%40whatsapp_lid-61169360498824%3Amatrix.theocloud.dev","duration":1.977652,"status_code":200,"response_length":79791,"response_mime":"image/jpeg","time":"2026-03-06T19:21:07.17216766Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":363,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-61169360498824:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-61169360498824%3Amatrix.theocloud.dev","duration":4.365697,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ozOWBtbeKJycQWGYvxqLbBEQ"},"time":"2026-03-06T19:21:07.176715855Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":364,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917684488832%3Amatrix.theocloud.dev","duration":3.317785,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917684488832","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:07.181093215Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":365,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684488832:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917684488832%3Amatrix.theocloud.dev","duration":2.066351,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:07.183495228Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":366,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684488832:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917684488832%3Amatrix.theocloud.dev","duration":6.325609,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Carlo (WA)"},"time":"2026-03-06T19:21:07.189951372Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:07.190779561Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:07.35898733Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":367,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917684488832%3Amatrix.theocloud.dev","duration":74.549505,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<79791 bytes>","time":"2026-03-06T19:21:07.441631966Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":368,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684488832:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917684488832%3Amatrix.theocloud.dev","duration":1.937004,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:07.443910289Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":369,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/CYrvsxuuWTmvSujpkoFOYLDB?user_id=%40whatsapp_4917684488832%3Amatrix.theocloud.dev","duration":2.020325,"status_code":200,"response_length":79791,"response_mime":"image/jpeg","time":"2026-03-06T19:21:07.446011282Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":370,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684488832:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917684488832%3Amatrix.theocloud.dev","duration":4.236978,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CYrvsxuuWTmvSujpkoFOYLDB"},"time":"2026-03-06T19:21:07.450503254Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"61169360498824@lid","alternate_jid":"4917684488832@s.whatsapp.net","time":"2026-03-06T19:21:07.451091255Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":371,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-70231405916394%3Amatrix.theocloud.dev","duration":3.033946,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-70231405916394","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:07.454725914Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":372,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70231405916394:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-70231405916394%3Amatrix.theocloud.dev","duration":2.075361,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:07.45710865Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":373,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70231405916394:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-70231405916394%3Amatrix.theocloud.dev","duration":5.74075,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Colin (WA)"},"time":"2026-03-06T19:21:07.463002146Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:07.463738562Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:07.63053426Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":374,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-70231405916394%3Amatrix.theocloud.dev","duration":48.466024,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<80133 bytes>","time":"2026-03-06T19:21:07.69279894Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":375,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70231405916394:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-70231405916394%3Amatrix.theocloud.dev","duration":2.134518,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:07.695211779Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":376,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KtarwtREFgNNmUXKUiWDaInP?user_id=%40whatsapp_lid-70231405916394%3Amatrix.theocloud.dev","duration":2.178867,"status_code":200,"response_length":80133,"response_mime":"image/jpeg","time":"2026-03-06T19:21:07.69752174Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70231405916394:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-70231405916394%3Amatrix.theocloud.dev","duration":4.145764,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KtarwtREFgNNmUXKUiWDaInP"},"time":"2026-03-06T19:21:07.701978581Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":378,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491731365871%3Amatrix.theocloud.dev","duration":2.846769,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491731365871","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:07.705826817Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":379,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491731365871:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491731365871%3Amatrix.theocloud.dev","duration":1.907321,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:07.70796315Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":380,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491731365871:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491731365871%3Amatrix.theocloud.dev","duration":6.410607,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Colin (WA)"},"time":"2026-03-06T19:21:07.714496749Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:07.71525789Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:07.863734047Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":381,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491731365871%3Amatrix.theocloud.dev","duration":72.781868,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<80133 bytes>","time":"2026-03-06T19:21:07.948087582Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":382,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491731365871:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491731365871%3Amatrix.theocloud.dev","duration":1.909696,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:07.950262608Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":383,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/xoicLlZjwzmWFnCXRWRkiUWe?user_id=%40whatsapp_491731365871%3Amatrix.theocloud.dev","duration":2.089679,"status_code":200,"response_length":80133,"response_mime":"image/jpeg","time":"2026-03-06T19:21:07.952498816Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":384,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491731365871:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491731365871%3Amatrix.theocloud.dev","duration":4.426948,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xoicLlZjwzmWFnCXRWRkiUWe"},"time":"2026-03-06T19:21:07.957178244Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"70231405916394@lid","alternate_jid":"491731365871@s.whatsapp.net","time":"2026-03-06T19:21:07.957793624Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"161684144570509@lid","time":"2026-03-06T19:21:07.958181527Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":385,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-161684144570509%3Amatrix.theocloud.dev","duration":2.962148,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-161684144570509","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:07.96144232Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":386,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-161684144570509:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-161684144570509%3Amatrix.theocloud.dev","duration":2.026262,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:07.963782942Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":387,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-161684144570509:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-161684144570509%3Amatrix.theocloud.dev","duration":5.468086,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Pablo (WA)"},"time":"2026-03-06T19:21:07.969425075Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:07.970150037Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:08.126168664Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":388,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-161684144570509:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-161684144570509%3Amatrix.theocloud.dev","duration":2.550358,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:08.129049516Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"206699780640847@lid","time":"2026-03-06T19:21:08.129814846Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":389,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-206699780640847%3Amatrix.theocloud.dev","duration":3.588702,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-206699780640847","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:08.13365512Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":390,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-206699780640847:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-206699780640847%3Amatrix.theocloud.dev","duration":2.248011,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:08.136224685Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":391,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-206699780640847:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-206699780640847%3Amatrix.theocloud.dev","duration":6.521167,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Julia (WA)"},"time":"2026-03-06T19:21:08.142958033Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:08.143701224Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:08.31151166Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":392,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-206699780640847%3Amatrix.theocloud.dev","duration":74.846963,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<59691 bytes>","time":"2026-03-06T19:21:08.398640934Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":393,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-206699780640847:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-206699780640847%3Amatrix.theocloud.dev","duration":2.372051,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:08.401311002Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":394,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BjGscMHCGvMJzaQSxPmYrAPY?user_id=%40whatsapp_lid-206699780640847%3Amatrix.theocloud.dev","duration":2.107838,"status_code":200,"response_length":59691,"response_mime":"image/jpeg","time":"2026-03-06T19:21:08.403555102Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":395,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-206699780640847:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-206699780640847%3Amatrix.theocloud.dev","duration":4.244171,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BjGscMHCGvMJzaQSxPmYrAPY"},"time":"2026-03-06T19:21:08.408046026Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":396,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-39964771365006%3Amatrix.theocloud.dev","duration":3.228106,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-39964771365006","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:08.412442453Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":397,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-39964771365006:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-39964771365006%3Amatrix.theocloud.dev","duration":2.046866,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:08.414715398Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":398,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-39964771365006:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-39964771365006%3Amatrix.theocloud.dev","duration":6.322326,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wowaa (WA)"},"time":"2026-03-06T19:21:08.421155758Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:08.421617485Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:08.820738824Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":399,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-39964771365006%3Amatrix.theocloud.dev","duration":73.416385,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<92246 bytes>","time":"2026-03-06T19:21:08.907224432Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":400,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-39964771365006:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-39964771365006%3Amatrix.theocloud.dev","duration":2.086257,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:08.909601372Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":401,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/fkvGUnFmYnkpxGHAWbhMPNWK?user_id=%40whatsapp_lid-39964771365006%3Amatrix.theocloud.dev","duration":2.185014,"status_code":200,"response_length":92246,"response_mime":"image/jpeg","time":"2026-03-06T19:21:08.91191713Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":402,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-39964771365006:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-39964771365006%3Amatrix.theocloud.dev","duration":4.457959,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fkvGUnFmYnkpxGHAWbhMPNWK"},"time":"2026-03-06T19:21:08.916688401Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":403,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491788173192%3Amatrix.theocloud.dev","duration":3.086048,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491788173192","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:08.920745814Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":404,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491788173192:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491788173192%3Amatrix.theocloud.dev","duration":1.946154,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:08.922989146Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":405,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491788173192:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491788173192%3Amatrix.theocloud.dev","duration":6.57725,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wowaa (WA)"},"time":"2026-03-06T19:21:08.929706989Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:08.930542791Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:09.086963569Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":406,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491788173192%3Amatrix.theocloud.dev","duration":62.373354,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<92246 bytes>","time":"2026-03-06T19:21:09.162470121Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":407,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491788173192:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491788173192%3Amatrix.theocloud.dev","duration":2.052453,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:09.164872763Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":408,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/zvhqSNxHKxLpqivxuRPcGiQq?user_id=%40whatsapp_491788173192%3Amatrix.theocloud.dev","duration":2.336012,"status_code":200,"response_length":92246,"response_mime":"image/jpeg","time":"2026-03-06T19:21:09.167352441Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":409,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491788173192:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491788173192%3Amatrix.theocloud.dev","duration":4.500492,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/zvhqSNxHKxLpqivxuRPcGiQq"},"time":"2026-03-06T19:21:09.172120359Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"39964771365006@lid","alternate_jid":"491788173192@s.whatsapp.net","time":"2026-03-06T19:21:09.17269977Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915782034308@s.whatsapp.net","time":"2026-03-06T19:21:09.173026981Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":410,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915782034308%3Amatrix.theocloud.dev","duration":3.328191,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915782034308","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:09.176598921Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":411,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915782034308:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915782034308%3Amatrix.theocloud.dev","duration":2.160778,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:09.179082999Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":412,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915782034308:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915782034308%3Amatrix.theocloud.dev","duration":6.563212,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915782034308 (WA)"},"time":"2026-03-06T19:21:09.18581055Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:09.186606611Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:09.353212828Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":413,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915782034308%3Amatrix.theocloud.dev","duration":77.301846,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<82451 bytes>","time":"2026-03-06T19:21:09.443637048Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":414,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915782034308:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915782034308%3Amatrix.theocloud.dev","duration":2.239909,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:09.446255083Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":415,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/EdsqVEjYKhupDPtPYRFZvLQy?user_id=%40whatsapp_4915782034308%3Amatrix.theocloud.dev","duration":2.392724,"status_code":200,"response_length":82451,"response_mime":"image/jpeg","time":"2026-03-06T19:21:09.448775199Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":416,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915782034308:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915782034308%3Amatrix.theocloud.dev","duration":4.738235,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EdsqVEjYKhupDPtPYRFZvLQy"},"time":"2026-03-06T19:21:09.453830518Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491721081999@s.whatsapp.net","time":"2026-03-06T19:21:09.454703686Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":417,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491721081999%3Amatrix.theocloud.dev","duration":3.370305,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491721081999","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:09.458369424Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":418,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491721081999:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491721081999%3Amatrix.theocloud.dev","duration":2.138359,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:09.460848683Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":419,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491721081999:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491721081999%3Amatrix.theocloud.dev","duration":6.418569,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491721081999 (WA)"},"time":"2026-03-06T19:21:09.467436339Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:09.468218153Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:09.629249076Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":420,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491721081999%3Amatrix.theocloud.dev","duration":72.746179,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55098 bytes>","time":"2026-03-06T19:21:09.716600867Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":421,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491721081999:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491721081999%3Amatrix.theocloud.dev","duration":2.020954,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:09.718962442Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":422,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/aBlgLdnAmPpQNHthSIRMOMxO?user_id=%40whatsapp_491721081999%3Amatrix.theocloud.dev","duration":1.931207,"status_code":200,"response_length":55098,"response_mime":"image/jpeg","time":"2026-03-06T19:21:09.721018666Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":423,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491721081999:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491721081999%3Amatrix.theocloud.dev","duration":4.023679,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/aBlgLdnAmPpQNHthSIRMOMxO"},"time":"2026-03-06T19:21:09.725386319Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":424,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-151054134034515%3Amatrix.theocloud.dev","duration":2.719516,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-151054134034515","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:09.729285609Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":425,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151054134034515:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-151054134034515%3Amatrix.theocloud.dev","duration":1.596733,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:09.731169114Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":426,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151054134034515:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-151054134034515%3Amatrix.theocloud.dev","duration":4.799417,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jannic (WA)"},"time":"2026-03-06T19:21:09.73615934Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:09.736974748Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:10.132506686Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":427,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151054134034515:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-151054134034515%3Amatrix.theocloud.dev","duration":2.413886,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:10.135318324Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":428,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915238583118%3Amatrix.theocloud.dev","duration":3.569845,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915238583118","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:10.139916945Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":429,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915238583118:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915238583118%3Amatrix.theocloud.dev","duration":2.166296,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:10.142412756Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":430,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915238583118:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915238583118%3Amatrix.theocloud.dev","duration":6.460614,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jannic (WA)"},"time":"2026-03-06T19:21:10.149044623Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:10.14982483Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:10.304980347Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":431,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915238583118:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915238583118%3Amatrix.theocloud.dev","duration":2.436655,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:10.307753292Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"151054134034515@lid","alternate_jid":"4915238583118@s.whatsapp.net","time":"2026-03-06T19:21:10.308258461Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":432,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-205368659542264%3Amatrix.theocloud.dev","duration":3.58514,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-205368659542264","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:10.312496416Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":433,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-205368659542264:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-205368659542264%3Amatrix.theocloud.dev","duration":2.227129,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:10.315058089Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":434,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-205368659542264:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-205368659542264%3Amatrix.theocloud.dev","duration":6.233696,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Андрій (WA)"},"time":"2026-03-06T19:21:10.321481966Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:10.322183251Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:10.699664331Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":435,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-205368659542264%3Amatrix.theocloud.dev","duration":66.341648,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49408 bytes>","time":"2026-03-06T19:21:10.827135303Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":436,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-205368659542264:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-205368659542264%3Amatrix.theocloud.dev","duration":2.3372,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:10.829846089Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":437,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/GFtggElICquYGOwlpiPAKrGb?user_id=%40whatsapp_lid-205368659542264%3Amatrix.theocloud.dev","duration":2.300532,"status_code":200,"response_length":49408,"response_mime":"image/jpeg","time":"2026-03-06T19:21:10.832253829Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":438,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-205368659542264:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-205368659542264%3Amatrix.theocloud.dev","duration":4.628024,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GFtggElICquYGOwlpiPAKrGb"},"time":"2026-03-06T19:21:10.837124974Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":439,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_380962379005%3Amatrix.theocloud.dev","duration":3.273295,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_380962379005","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:10.84143787Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":440,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380962379005:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380962379005%3Amatrix.theocloud.dev","duration":2.128581,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:10.843894361Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":441,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380962379005:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380962379005%3Amatrix.theocloud.dev","duration":6.610495,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Андрій (WA)"},"time":"2026-03-06T19:21:10.850664725Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:10.851435992Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:11.256003906Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":442,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_380962379005%3Amatrix.theocloud.dev","duration":73.502361,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49408 bytes>","time":"2026-03-06T19:21:11.343497757Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":443,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380962379005:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380962379005%3Amatrix.theocloud.dev","duration":2.253947,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:11.346066134Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":444,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/dVyOkcdydUoOVqIbUvanQVzl?user_id=%40whatsapp_380962379005%3Amatrix.theocloud.dev","duration":2.410115,"status_code":200,"response_length":49408,"response_mime":"image/jpeg","time":"2026-03-06T19:21:11.348606225Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":445,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380962379005:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380962379005%3Amatrix.theocloud.dev","duration":4.67419,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dVyOkcdydUoOVqIbUvanQVzl"},"time":"2026-03-06T19:21:11.353612305Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"205368659542264@lid","alternate_jid":"380962379005@s.whatsapp.net","time":"2026-03-06T19:21:11.354152186Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"380976416447@s.whatsapp.net","time":"2026-03-06T19:21:11.354508032Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":446,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_380976416447%3Amatrix.theocloud.dev","duration":3.214698,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_380976416447","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:11.357979609Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":447,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380976416447:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380976416447%3Amatrix.theocloud.dev","duration":2.066142,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:11.360357177Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":448,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380976416447:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380976416447%3Amatrix.theocloud.dev","duration":5.716515,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Dmytro (WA)"},"time":"2026-03-06T19:21:11.366274628Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:11.367074391Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:11.535029261Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":449,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_380976416447%3Amatrix.theocloud.dev","duration":75.873923,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43609 bytes>","time":"2026-03-06T19:21:11.742653109Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":450,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380976416447:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380976416447%3Amatrix.theocloud.dev","duration":2.326095,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:11.745367386Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":451,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/cNKJROiiXAWaKYZjMgvsHVhF?user_id=%40whatsapp_380976416447%3Amatrix.theocloud.dev","duration":2.974789,"status_code":200,"response_length":43609,"response_mime":"image/jpeg","time":"2026-03-06T19:21:11.748481581Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":452,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380976416447:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380976416447%3Amatrix.theocloud.dev","duration":4.576062,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/cNKJROiiXAWaKYZjMgvsHVhF"},"time":"2026-03-06T19:21:11.753316547Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915126692444@s.whatsapp.net","time":"2026-03-06T19:21:11.754155632Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":453,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915126692444%3Amatrix.theocloud.dev","duration":3.225732,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915126692444","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:11.757664155Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":454,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915126692444:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915126692444%3Amatrix.theocloud.dev","duration":2.144994,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:11.760104232Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":455,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915126692444:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915126692444%3Amatrix.theocloud.dev","duration":6.276021,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Florian Weis (WA)"},"time":"2026-03-06T19:21:11.766555976Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:11.767370057Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:12.156035808Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":456,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915126692444%3Amatrix.theocloud.dev","duration":77.417435,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<91211 bytes>","time":"2026-03-06T19:21:12.398051007Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":457,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915126692444:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915126692444%3Amatrix.theocloud.dev","duration":2.16008,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:12.400605486Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":458,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/rFloiTPSTYSfGgGJlwRcnhlA?user_id=%40whatsapp_4915126692444%3Amatrix.theocloud.dev","duration":2.393423,"status_code":200,"response_length":91211,"response_mime":"image/jpeg","time":"2026-03-06T19:21:12.403116383Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":459,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915126692444:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915126692444%3Amatrix.theocloud.dev","duration":4.630538,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rFloiTPSTYSfGgGJlwRcnhlA"},"time":"2026-03-06T19:21:12.407960569Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":460,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":3.181801,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915903048642","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:12.412106472Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":461,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915903048642:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":2.052942,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:12.414500733Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":462,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915903048642:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":6.308847,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Anastasia (WA)"},"time":"2026-03-06T19:21:12.421009957Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:12.421866991Z","message":"040123462d975e65cbb9b9"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:12.590300838Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":463,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":78.632061,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<72203 bytes>","time":"2026-03-06T19:21:12.683557439Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":464,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915903048642:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":2.574593,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:12.686563238Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":465,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/hospTNjwHxazNUQHfktPZToC?user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":2.189135,"status_code":200,"response_length":72203,"response_mime":"image/jpeg","time":"2026-03-06T19:21:12.68886852Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":466,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915903048642:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":4.766033,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hospTNjwHxazNUQHfktPZToC"},"time":"2026-03-06T19:21:12.693858467Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":467,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-220641227747573%3Amatrix.theocloud.dev","duration":3.384693,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-220641227747573","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:12.69830965Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":468,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220641227747573:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220641227747573%3Amatrix.theocloud.dev","duration":2.083533,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:12.700767817Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":469,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220641227747573:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220641227747573%3Amatrix.theocloud.dev","duration":6.553713,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Anastasia (WA)"},"time":"2026-03-06T19:21:12.707452624Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:12.708257695Z","message":"040123462d975e65cbb9b9"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:12.87303656Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":470,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-220641227747573%3Amatrix.theocloud.dev","duration":77.800101,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<72203 bytes>","time":"2026-03-06T19:21:12.963144534Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":471,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220641227747573:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-220641227747573%3Amatrix.theocloud.dev","duration":2.308774,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:12.965830247Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":472,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/hcAkoMihfYoWRUINswywSzGJ?user_id=%40whatsapp_lid-220641227747573%3Amatrix.theocloud.dev","duration":2.442312,"status_code":200,"response_length":72203,"response_mime":"image/jpeg","time":"2026-03-06T19:21:12.968414967Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220641227747573:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-220641227747573%3Amatrix.theocloud.dev","duration":4.768686,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hcAkoMihfYoWRUINswywSzGJ"},"time":"2026-03-06T19:21:12.973503391Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915903048642@s.whatsapp.net","alternate_jid":"220641227747573@lid","time":"2026-03-06T19:21:12.974102777Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":474,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491703010843%3Amatrix.theocloud.dev","duration":3.508244,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491703010843","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:12.978179607Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":475,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491703010843:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491703010843%3Amatrix.theocloud.dev","duration":2.125996,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:12.98069225Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":476,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491703010843:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491703010843%3Amatrix.theocloud.dev","duration":6.405578,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Katie Bird (WA)"},"time":"2026-03-06T19:21:12.987259233Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:12.988037485Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:13.144495629Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":477,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491703010843%3Amatrix.theocloud.dev","duration":72.561725,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<37174 bytes>","time":"2026-03-06T19:21:13.229462378Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":478,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491703010843:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491703010843%3Amatrix.theocloud.dev","duration":2.103508,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:13.231817946Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":479,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/nAOPcurjVbIeMqkuYeMTXtPc?user_id=%40whatsapp_491703010843%3Amatrix.theocloud.dev","duration":2.14667,"status_code":200,"response_length":37174,"response_mime":"image/jpeg","time":"2026-03-06T19:21:13.234075177Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":480,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491703010843:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491703010843%3Amatrix.theocloud.dev","duration":4.612939,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nAOPcurjVbIeMqkuYeMTXtPc"},"time":"2026-03-06T19:21:13.238931794Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":481,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":3.151839,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-116685805768767","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:13.243081749Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":482,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-116685805768767:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":2.129558,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:13.245521407Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":483,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-116685805768767:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":6.499377,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Katie Bird (WA)"},"time":"2026-03-06T19:21:13.252180931Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:13.252939627Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:13.419037742Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":484,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":74.708396,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<37174 bytes>","time":"2026-03-06T19:21:13.50528414Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":485,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-116685805768767:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":2.210227,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:13.507803558Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":486,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/QNDzRJhZgftWogJzkIiWZwhq?user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":2.426878,"status_code":200,"response_length":37174,"response_mime":"image/jpeg","time":"2026-03-06T19:21:13.510365929Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":487,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-116685805768767:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":4.665181,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QNDzRJhZgftWogJzkIiWZwhq"},"time":"2026-03-06T19:21:13.515258725Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491703010843@s.whatsapp.net","alternate_jid":"116685805768767@lid","time":"2026-03-06T19:21:13.51580098Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":488,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917670136222%3Amatrix.theocloud.dev","duration":3.302489,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917670136222","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:13.519651451Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":489,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670136222:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670136222%3Amatrix.theocloud.dev","duration":2.280768,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:13.522327595Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":490,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670136222:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670136222%3Amatrix.theocloud.dev","duration":7.485549,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tami (WA)"},"time":"2026-03-06T19:21:13.530020505Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:13.530843735Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:13.694280582Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":491,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917670136222%3Amatrix.theocloud.dev","duration":65.163131,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<59917 bytes>","time":"2026-03-06T19:21:13.772609528Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":492,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670136222:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917670136222%3Amatrix.theocloud.dev","duration":2.031291,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:13.774905101Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":493,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ePYZNOteXdUxPNiEjXhaSjzW?user_id=%40whatsapp_4917670136222%3Amatrix.theocloud.dev","duration":1.651768,"status_code":200,"response_length":59917,"response_mime":"image/jpeg","time":"2026-03-06T19:21:13.776657303Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":494,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670136222:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917670136222%3Amatrix.theocloud.dev","duration":3.259257,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ePYZNOteXdUxPNiEjXhaSjzW"},"time":"2026-03-06T19:21:13.780074403Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":495,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-154361158209573%3Amatrix.theocloud.dev","duration":2.528776,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-154361158209573","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:13.783271569Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":496,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-154361158209573:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-154361158209573%3Amatrix.theocloud.dev","duration":2.172651,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:13.785710809Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":497,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-154361158209573:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-154361158209573%3Amatrix.theocloud.dev","duration":6.795507,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tami (WA)"},"time":"2026-03-06T19:21:13.79263741Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:13.793116388Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:14.199037773Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":498,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-154361158209573%3Amatrix.theocloud.dev","duration":76.666981,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<59917 bytes>","time":"2026-03-06T19:21:14.287488043Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":499,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-154361158209573:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-154361158209573%3Amatrix.theocloud.dev","duration":2.113984,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:14.289968Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":500,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/IXopfLpbkZjTYKqCxXuZQBCZ?user_id=%40whatsapp_lid-154361158209573%3Amatrix.theocloud.dev","duration":2.149673,"status_code":200,"response_length":59917,"response_mime":"image/jpeg","time":"2026-03-06T19:21:14.292251351Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":501,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-154361158209573:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-154361158209573%3Amatrix.theocloud.dev","duration":4.743823,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IXopfLpbkZjTYKqCxXuZQBCZ"},"time":"2026-03-06T19:21:14.297244231Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917670136222@s.whatsapp.net","alternate_jid":"154361158209573@lid","time":"2026-03-06T19:21:14.297862544Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917672609462@s.whatsapp.net","time":"2026-03-06T19:21:14.298199742Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":502,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917672609462%3Amatrix.theocloud.dev","duration":3.325606,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917672609462","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:14.301820432Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":503,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672609462:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917672609462%3Amatrix.theocloud.dev","duration":2.14681,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:14.304321971Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":504,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672609462:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917672609462%3Amatrix.theocloud.dev","duration":6.588704,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ella 🦖 (WA)"},"time":"2026-03-06T19:21:14.311099319Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:14.311880714Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:14.461508987Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":505,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672609462:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917672609462%3Amatrix.theocloud.dev","duration":2.448389,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:14.464363578Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":506,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915141630205%3Amatrix.theocloud.dev","duration":3.601693,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915141630205","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:14.468957868Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":507,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915141630205:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915141630205%3Amatrix.theocloud.dev","duration":2.17768,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:14.471493839Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":508,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915141630205:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915141630205%3Amatrix.theocloud.dev","duration":6.562165,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Milanko (WA)"},"time":"2026-03-06T19:21:14.478226698Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:14.479024086Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:14.540418112Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:14.584451041Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:14.63040491Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":509,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915141630205%3Amatrix.theocloud.dev","duration":77.561729,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49806 bytes>","time":"2026-03-06T19:21:14.720918249Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":510,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915141630205:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915141630205%3Amatrix.theocloud.dev","duration":1.644854,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:14.722908053Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":511,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/QFYxlGdboVhZQBXxdolAwJTX?user_id=%40whatsapp_4915141630205%3Amatrix.theocloud.dev","duration":1.663781,"status_code":200,"response_length":49806,"response_mime":"image/jpeg","time":"2026-03-06T19:21:14.724654597Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":512,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915141630205:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915141630205%3Amatrix.theocloud.dev","duration":4.235721,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QFYxlGdboVhZQBXxdolAwJTX"},"time":"2026-03-06T19:21:14.729155998Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":513,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":2.804165,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-236846508454136","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:14.732920283Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":514,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236846508454136:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":1.879664,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:14.73511724Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":515,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236846508454136:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":5.744801,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Milanko (WA)"},"time":"2026-03-06T19:21:14.741024983Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:14.74184528Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:14.890521604Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":516,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":65.524145,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49806 bytes>","time":"2026-03-06T19:21:14.967073485Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":517,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236846508454136:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":2.158823,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:14.969597582Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":518,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/RlfOvolUvlxcihDBkLmmyRFC?user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":2.176423,"status_code":200,"response_length":49806,"response_mime":"image/jpeg","time":"2026-03-06T19:21:14.971910686Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":519,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236846508454136:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":4.285518,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RlfOvolUvlxcihDBkLmmyRFC"},"time":"2026-03-06T19:21:14.976443446Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915141630205@s.whatsapp.net","alternate_jid":"236846508454136@lid","time":"2026-03-06T19:21:14.977014685Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491601415978@s.whatsapp.net","alternate_jid":"196232895029386@lid","time":"2026-03-06T19:21:14.977134395Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"72000915652689@lid","time":"2026-03-06T19:21:14.977503231Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":520,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-72000915652689%3Amatrix.theocloud.dev","duration":3.060695,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-72000915652689","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:14.980818431Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":521,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-72000915652689:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-72000915652689%3Amatrix.theocloud.dev","duration":2.204569,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:14.98335077Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":522,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-72000915652689:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-72000915652689%3Amatrix.theocloud.dev","duration":6.458937,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Linda Elke Alice (WA)"},"time":"2026-03-06T19:21:14.990044378Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:14.99091992Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:15.157515869Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":523,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-72000915652689:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-72000915652689%3Amatrix.theocloud.dev","duration":2.386648,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:15.16020228Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":524,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-146720914698447%3Amatrix.theocloud.dev","duration":3.550987,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-146720914698447","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:15.164859219Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":525,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-146720914698447:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-146720914698447%3Amatrix.theocloud.dev","duration":2.377988,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:15.16754968Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":526,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-146720914698447:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-146720914698447%3Amatrix.theocloud.dev","duration":6.469204,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Illia (WA)"},"time":"2026-03-06T19:21:15.174211859Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:15.175033483Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:15.326980168Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":527,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-146720914698447:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-146720914698447%3Amatrix.theocloud.dev","duration":2.767707,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:15.330086191Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":528,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491712144182%3Amatrix.theocloud.dev","duration":3.643529,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491712144182","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:15.334721339Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":529,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491712144182:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491712144182%3Amatrix.theocloud.dev","duration":2.109654,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:15.337143816Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":530,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491712144182:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491712144182%3Amatrix.theocloud.dev","duration":6.179918,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Illia (WA)"},"time":"2026-03-06T19:21:15.343482695Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:15.344218343Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:15.526526834Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":531,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491712144182:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491712144182%3Amatrix.theocloud.dev","duration":2.542256,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:15.529429406Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"146720914698447@lid","alternate_jid":"491712144182@s.whatsapp.net","time":"2026-03-06T19:21:15.529895184Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":532,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":3.505171,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-12786134462711","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:15.533936184Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":533,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12786134462711:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":2.207433,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:15.536442751Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":534,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12786134462711:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":6.424435,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Giuseppe Tullo (WA)"},"time":"2026-03-06T19:21:15.543047799Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:15.543782679Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:15.693910953Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":535,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":77.526878,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47401 bytes>","time":"2026-03-06T19:21:15.779269098Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":536,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12786134462711:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":2.08458,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:15.781747658Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":537,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/iBMYaSAapOMhftFicdtIYIGH?user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":2.887975,"status_code":200,"response_length":47401,"response_mime":"image/jpeg","time":"2026-03-06T19:21:15.78475681Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":538,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12786134462711:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":4.891748,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iBMYaSAapOMhftFicdtIYIGH"},"time":"2026-03-06T19:21:15.789880155Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":539,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_393201550470%3Amatrix.theocloud.dev","duration":3.29774,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_393201550470","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:15.79408703Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":540,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393201550470:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393201550470%3Amatrix.theocloud.dev","duration":2.136403,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:15.796587521Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":541,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393201550470:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393201550470%3Amatrix.theocloud.dev","duration":6.173422,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Giuseppe Tullo (WA)"},"time":"2026-03-06T19:21:15.802917879Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:15.803690055Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:15.96529948Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":542,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_393201550470%3Amatrix.theocloud.dev","duration":57.290097,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47401 bytes>","time":"2026-03-06T19:21:16.034821114Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":543,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393201550470:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_393201550470%3Amatrix.theocloud.dev","duration":1.997208,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:16.037182758Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":544,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/TonMRjgcQmzRYDoavrYFaekm?user_id=%40whatsapp_393201550470%3Amatrix.theocloud.dev","duration":2.789777,"status_code":200,"response_length":47401,"response_mime":"image/jpeg","time":"2026-03-06T19:21:16.040096505Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":545,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393201550470:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_393201550470%3Amatrix.theocloud.dev","duration":4.584094,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TonMRjgcQmzRYDoavrYFaekm"},"time":"2026-03-06T19:21:16.044963111Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"12786134462711@lid","alternate_jid":"393201550470@s.whatsapp.net","time":"2026-03-06T19:21:16.045517309Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":546,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-141378109608075%3Amatrix.theocloud.dev","duration":3.017952,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-141378109608075","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:16.049156577Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":547,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-141378109608075:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-141378109608075%3Amatrix.theocloud.dev","duration":1.94315,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:16.051490983Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":548,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-141378109608075:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-141378109608075%3Amatrix.theocloud.dev","duration":5.684248,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nads (WA)"},"time":"2026-03-06T19:21:16.057359125Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:16.058113351Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:16.21424589Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":549,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-141378109608075:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-141378109608075%3Amatrix.theocloud.dev","duration":2.273783,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:16.216825023Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":550,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491622835744%3Amatrix.theocloud.dev","duration":3.233345,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491622835744","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:16.220932024Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":551,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491622835744:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491622835744%3Amatrix.theocloud.dev","duration":1.978071,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:16.223225503Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":552,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491622835744:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491622835744%3Amatrix.theocloud.dev","duration":6.332244,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nads (WA)"},"time":"2026-03-06T19:21:16.229767902Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:16.2304724Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:16.386035026Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":553,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491622835744:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491622835744%3Amatrix.theocloud.dev","duration":2.385391,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:16.388762155Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"141378109608075@lid","alternate_jid":"491622835744@s.whatsapp.net","time":"2026-03-06T19:21:16.389206491Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"38276949905550@lid","time":"2026-03-06T19:21:16.389542851Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":554,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-38276949905550%3Amatrix.theocloud.dev","duration":3.490015,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-38276949905550","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:16.393286114Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":555,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-38276949905550:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-38276949905550%3Amatrix.theocloud.dev","duration":2.249478,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:16.395867482Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":556,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-38276949905550:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-38276949905550%3Amatrix.theocloud.dev","duration":6.168394,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"vladislavilcuk8 (WA)"},"time":"2026-03-06T19:21:16.402232203Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:16.403049636Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:16.580309723Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":557,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-38276949905550%3Amatrix.theocloud.dev","duration":71.208323,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38950 bytes>","time":"2026-03-06T19:21:16.663760617Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":558,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-38276949905550:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-38276949905550%3Amatrix.theocloud.dev","duration":2.155959,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:16.666242949Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":559,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KEUxPVqyNVnUIADeRCgdyddY?user_id=%40whatsapp_lid-38276949905550%3Amatrix.theocloud.dev","duration":2.490992,"status_code":200,"response_length":38950,"response_mime":"image/jpeg","time":"2026-03-06T19:21:16.668814329Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":560,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-38276949905550:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-38276949905550%3Amatrix.theocloud.dev","duration":3.933304,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KEUxPVqyNVnUIADeRCgdyddY"},"time":"2026-03-06T19:21:16.673018341Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":561,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":2.909975,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915150515988","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:16.676595869Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":562,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915150515988:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":1.917867,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:16.678818248Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":563,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915150515988:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":5.235791,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Maja (WA)"},"time":"2026-03-06T19:21:16.684169837Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:16.684679336Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:16.851938018Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":564,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":79.111877,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<75685 bytes>","time":"2026-03-06T19:21:16.945031118Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":565,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915150515988:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":2.344463,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:16.947769422Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":566,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/CLOiNyKbSlasDdKXAMAFbPPT?user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":2.50936,"status_code":200,"response_length":75685,"response_mime":"image/jpeg","time":"2026-03-06T19:21:16.950412251Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":567,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915150515988:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":4.535902,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CLOiNyKbSlasDdKXAMAFbPPT"},"time":"2026-03-06T19:21:16.955249662Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":568,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":3.153306,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-266657507356684","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:16.959256789Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":569,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-266657507356684:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":2.12439,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:16.961742054Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":570,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-266657507356684:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":6.09527,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Maja (WA)"},"time":"2026-03-06T19:21:16.968036374Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:16.96897645Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:17.127761037Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":571,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":69.76231,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<75685 bytes>","time":"2026-03-06T19:21:17.206282678Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":572,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-266657507356684:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":2.064117,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:17.208666811Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":573,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BlaAgKqAVGSAjbgkWHdoWAAF?user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":3.312616,"status_code":200,"response_length":75685,"response_mime":"image/jpeg","time":"2026-03-06T19:21:17.212095295Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":574,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-266657507356684:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":5.650235,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BlaAgKqAVGSAjbgkWHdoWAAF"},"time":"2026-03-06T19:21:17.217927958Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915150515988@s.whatsapp.net","alternate_jid":"266657507356684@lid","time":"2026-03-06T19:21:17.218294979Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491759232609@s.whatsapp.net","alt_jid":"276334119006314@lid","source_push_name":"Jonny Philippos","alt_push_name":"Jonny Cragg","time":"2026-03-06T19:21:17.218529718Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":575,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491759232609%3Amatrix.theocloud.dev","duration":7.900481,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491759232609","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:17.226654323Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":576,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491759232609:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491759232609%3Amatrix.theocloud.dev","duration":3.018581,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:17.230025187Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":577,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491759232609:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491759232609%3Amatrix.theocloud.dev","duration":8.170491,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jonny Philippos (WA)"},"time":"2026-03-06T19:21:17.238405554Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:17.239201266Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:17.406796099Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":578,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491759232609:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491759232609%3Amatrix.theocloud.dev","duration":2.469202,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:17.409655369Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":579,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-276334119006314%3Amatrix.theocloud.dev","duration":3.436307,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-276334119006314","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:17.413991593Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":580,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-276334119006314:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-276334119006314%3Amatrix.theocloud.dev","duration":2.285028,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:17.416651812Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":581,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-276334119006314:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-276334119006314%3Amatrix.theocloud.dev","duration":6.134031,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jonny Philippos (WA)"},"time":"2026-03-06T19:21:17.422949205Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:17.4237614Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:17.784782835Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":582,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-276334119006314:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-276334119006314%3Amatrix.theocloud.dev","duration":2.454744,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:17.787588746Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491759232609@s.whatsapp.net","alternate_jid":"276334119006314@lid","time":"2026-03-06T19:21:17.788114238Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"131061430358216@lid","alt_jid":"4915141346015@s.whatsapp.net","source_push_name":"Loredana Strano","alt_push_name":"Lori 🦉","time":"2026-03-06T19:21:17.788523095Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":583,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-131061430358216%3Amatrix.theocloud.dev","duration":3.108328,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-131061430358216","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:17.791956887Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":584,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131061430358216:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-131061430358216%3Amatrix.theocloud.dev","duration":2.064466,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:17.794420012Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":585,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131061430358216:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-131061430358216%3Amatrix.theocloud.dev","duration":5.868492,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lori 🦉 (WA)"},"time":"2026-03-06T19:21:17.800599651Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:17.801370849Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:18.187541694Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":586,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-131061430358216%3Amatrix.theocloud.dev","duration":77.660835,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41883 bytes>","time":"2026-03-06T19:21:18.279851584Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":587,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131061430358216:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-131061430358216%3Amatrix.theocloud.dev","duration":2.388674,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:18.282628999Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":588,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WwCpqlcSNcLfpqffabZfpqxw?user_id=%40whatsapp_lid-131061430358216%3Amatrix.theocloud.dev","duration":2.936306,"status_code":200,"response_length":41883,"response_mime":"image/jpeg","time":"2026-03-06T19:21:18.285694094Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":589,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131061430358216:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-131061430358216%3Amatrix.theocloud.dev","duration":4.945317,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WwCpqlcSNcLfpqffabZfpqxw"},"time":"2026-03-06T19:21:18.290947067Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":590,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915141346015%3Amatrix.theocloud.dev","duration":3.250107,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915141346015","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:18.295173498Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":591,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915141346015:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915141346015%3Amatrix.theocloud.dev","duration":2.118174,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:18.297617137Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":592,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915141346015:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915141346015%3Amatrix.theocloud.dev","duration":6.712465,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lori 🦉 (WA)"},"time":"2026-03-06T19:21:18.304500925Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:18.305179302Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:18.454530093Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":593,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915141346015%3Amatrix.theocloud.dev","duration":73.691633,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41883 bytes>","time":"2026-03-06T19:21:18.535537767Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":594,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915141346015:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915141346015%3Amatrix.theocloud.dev","duration":2.2617,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:18.538102652Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":595,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/SvoMiOgPOUTlVEsGukkUfRsw?user_id=%40whatsapp_4915141346015%3Amatrix.theocloud.dev","duration":2.178798,"status_code":200,"response_length":41883,"response_mime":"image/jpeg","time":"2026-03-06T19:21:18.540394175Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":596,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915141346015:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915141346015%3Amatrix.theocloud.dev","duration":4.486454,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SvoMiOgPOUTlVEsGukkUfRsw"},"time":"2026-03-06T19:21:18.545202182Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"131061430358216@lid","alternate_jid":"4915141346015@s.whatsapp.net","time":"2026-03-06T19:21:18.545766228Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":597,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-159292468543547%3Amatrix.theocloud.dev","duration":2.788589,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-159292468543547","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:18.549169569Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":598,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-159292468543547:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-159292468543547%3Amatrix.theocloud.dev","duration":2.207503,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:18.551705819Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":599,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-159292468543547:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-159292468543547%3Amatrix.theocloud.dev","duration":6.388747,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Georges Paul (WA)"},"time":"2026-03-06T19:21:18.5583226Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:18.559152186Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:18.9352763Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":600,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-159292468543547:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-159292468543547%3Amatrix.theocloud.dev","duration":2.798856,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:18.938442945Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":601,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491741839210%3Amatrix.theocloud.dev","duration":3.387836,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491741839210","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:18.942620208Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":602,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741839210:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491741839210%3Amatrix.theocloud.dev","duration":2.538066,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:18.956311865Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":603,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741839210:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491741839210%3Amatrix.theocloud.dev","duration":6.082488,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Georges Paul (WA)"},"time":"2026-03-06T19:21:18.962608769Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:18.96348459Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:19.329817874Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":604,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741839210:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491741839210%3Amatrix.theocloud.dev","duration":2.71344,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:19.332882899Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"159292468543547@lid","alternate_jid":"491741839210@s.whatsapp.net","time":"2026-03-06T19:21:19.334440171Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":605,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-226147862347841%3Amatrix.theocloud.dev","duration":3.543863,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-226147862347841","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:19.338637129Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":606,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-226147862347841:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-226147862347841%3Amatrix.theocloud.dev","duration":2.219236,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:19.341195519Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":607,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-226147862347841:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-226147862347841%3Amatrix.theocloud.dev","duration":6.332314,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sirajedine (WA)"},"time":"2026-03-06T19:21:19.347712496Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:19.34854718Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:19.497057279Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":608,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-226147862347841:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-226147862347841%3Amatrix.theocloud.dev","duration":2.755135,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:19.500182369Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":609,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915757977499%3Amatrix.theocloud.dev","duration":3.597502,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915757977499","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:19.504651851Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":610,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915757977499:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915757977499%3Amatrix.theocloud.dev","duration":2.08472,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:19.507045414Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":611,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915757977499:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915757977499%3Amatrix.theocloud.dev","duration":6.396708,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sirajedine (WA)"},"time":"2026-03-06T19:21:19.513629997Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:19.514506936Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:19.890103532Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":612,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915757977499:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915757977499%3Amatrix.theocloud.dev","duration":2.917589,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:19.893405532Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"226147862347841@lid","alternate_jid":"4915757977499@s.whatsapp.net","time":"2026-03-06T19:21:19.89380468Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"235862491136132@lid","time":"2026-03-06T19:21:19.894112335Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":613,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-235862491136132%3Amatrix.theocloud.dev","duration":3.714279,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-235862491136132","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:19.89805807Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":614,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-235862491136132:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-235862491136132%3Amatrix.theocloud.dev","duration":2.151419,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:19.900484668Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":615,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-235862491136132:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-235862491136132%3Amatrix.theocloud.dev","duration":6.169022,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yasin Demir (WA)"},"time":"2026-03-06T19:21:19.906833674Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:19.907717667Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:20.074003098Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":616,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-235862491136132%3Amatrix.theocloud.dev","duration":56.569326,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<73514 bytes>","time":"2026-03-06T19:21:20.145047012Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":617,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-235862491136132:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-235862491136132%3Amatrix.theocloud.dev","duration":2.121597,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:20.147441552Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":618,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/HqyJjTEctYMpsUyCRKZTEifn?user_id=%40whatsapp_lid-235862491136132%3Amatrix.theocloud.dev","duration":2.058878,"status_code":200,"response_length":73514,"response_mime":"image/jpeg","time":"2026-03-06T19:21:20.149617975Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":619,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-235862491136132:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-235862491136132%3Amatrix.theocloud.dev","duration":4.338319,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/HqyJjTEctYMpsUyCRKZTEifn"},"time":"2026-03-06T19:21:20.154121331Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":620,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-274010575245356%3Amatrix.theocloud.dev","duration":3.091705,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-274010575245356","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:20.157862289Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":621,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-274010575245356:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-274010575245356%3Amatrix.theocloud.dev","duration":2.020954,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:20.16010171Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":622,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-274010575245356:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-274010575245356%3Amatrix.theocloud.dev","duration":6.158687,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"yousef (WA)"},"time":"2026-03-06T19:21:20.166418309Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:20.166893306Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:20.331051063Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":623,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-274010575245356%3Amatrix.theocloud.dev","duration":72.855481,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34877 bytes>","time":"2026-03-06T19:21:20.415516555Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":624,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-274010575245356:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-274010575245356%3Amatrix.theocloud.dev","duration":2.181103,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:20.418018024Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":625,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LSzszKTpZPgXUivtQKJhwaUu?user_id=%40whatsapp_lid-274010575245356%3Amatrix.theocloud.dev","duration":2.189972,"status_code":200,"response_length":34877,"response_mime":"image/jpeg","time":"2026-03-06T19:21:20.42028608Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":626,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-274010575245356:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-274010575245356%3Amatrix.theocloud.dev","duration":4.649186,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LSzszKTpZPgXUivtQKJhwaUu"},"time":"2026-03-06T19:21:20.425243759Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":627,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915901096609%3Amatrix.theocloud.dev","duration":3.210786,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915901096609","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:20.429207654Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":628,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915901096609:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915901096609%3Amatrix.theocloud.dev","duration":2.071939,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:20.431638023Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":629,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915901096609:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915901096609%3Amatrix.theocloud.dev","duration":5.939312,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"yousef (WA)"},"time":"2026-03-06T19:21:20.437738041Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:20.43826549Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:20.597377357Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":630,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915901096609%3Amatrix.theocloud.dev","duration":76.284944,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34877 bytes>","time":"2026-03-06T19:21:20.685884757Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":631,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915901096609:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915901096609%3Amatrix.theocloud.dev","duration":1.857034,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:20.688119429Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":632,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/AkOLzrmnscnYDpSzJWDrOMcx?user_id=%40whatsapp_4915901096609%3Amatrix.theocloud.dev","duration":1.844254,"status_code":200,"response_length":34877,"response_mime":"image/jpeg","time":"2026-03-06T19:21:20.690092052Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":633,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915901096609:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915901096609%3Amatrix.theocloud.dev","duration":3.862414,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AkOLzrmnscnYDpSzJWDrOMcx"},"time":"2026-03-06T19:21:20.694131586Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"274010575245356@lid","alternate_jid":"4915901096609@s.whatsapp.net","time":"2026-03-06T19:21:20.694456911Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917681447587@s.whatsapp.net","time":"2026-03-06T19:21:20.694670837Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":634,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917681447587%3Amatrix.theocloud.dev","duration":2.50517,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917681447587","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:20.69737394Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":635,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681447587:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917681447587%3Amatrix.theocloud.dev","duration":1.442731,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:20.69913152Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":636,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681447587:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917681447587%3Amatrix.theocloud.dev","duration":4.807868,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917681447587 (WA)"},"time":"2026-03-06T19:21:20.704047084Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:20.704503712Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:20.869575914Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":637,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917681447587%3Amatrix.theocloud.dev","duration":72.344376,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43076 bytes>","time":"2026-03-06T19:21:20.954930707Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":638,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681447587:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917681447587%3Amatrix.theocloud.dev","duration":2.259745,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:20.957451102Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":639,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/yuTBCXcJgZrhqdWprijrGGwF?user_id=%40whatsapp_4917681447587%3Amatrix.theocloud.dev","duration":2.172092,"status_code":200,"response_length":43076,"response_mime":"image/jpeg","time":"2026-03-06T19:21:20.959747025Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":640,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681447587:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917681447587%3Amatrix.theocloud.dev","duration":4.241797,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/yuTBCXcJgZrhqdWprijrGGwF"},"time":"2026-03-06T19:21:20.964308979Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"87321047232618@lid","time":"2026-03-06T19:21:20.96505203Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":641,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-87321047232618%3Amatrix.theocloud.dev","duration":2.901385,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-87321047232618","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:20.968225241Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":642,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-87321047232618:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-87321047232618%3Amatrix.theocloud.dev","duration":1.976674,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:20.970526751Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":643,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-87321047232618:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-87321047232618%3Amatrix.theocloud.dev","duration":5.66553,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Uwe Leuthardt (WA)"},"time":"2026-03-06T19:21:20.976327286Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:20.977086122Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:21.128372798Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":644,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-87321047232618%3Amatrix.theocloud.dev","duration":52.705306,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47576 bytes>","time":"2026-03-06T19:21:21.193442061Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":645,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-87321047232618:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-87321047232618%3Amatrix.theocloud.dev","duration":1.35424,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:21.195154243Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":646,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VMlUDoGaIhRfZyvhVeoCGSNB?user_id=%40whatsapp_lid-87321047232618%3Amatrix.theocloud.dev","duration":2.109234,"status_code":200,"response_length":47576,"response_mime":"image/jpeg","time":"2026-03-06T19:21:21.197392197Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":647,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-87321047232618:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-87321047232618%3Amatrix.theocloud.dev","duration":3.142759,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VMlUDoGaIhRfZyvhVeoCGSNB"},"time":"2026-03-06T19:21:21.200834649Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"88601031344164@lid","time":"2026-03-06T19:21:21.201645238Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":648,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-88601031344164%3Amatrix.theocloud.dev","duration":2.114822,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-88601031344164","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:21.204027556Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":649,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88601031344164:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-88601031344164%3Amatrix.theocloud.dev","duration":1.250175,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:21.205576726Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":650,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88601031344164:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-88601031344164%3Amatrix.theocloud.dev","duration":3.636894,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sonja Eigenbrod (WA)"},"time":"2026-03-06T19:21:21.209346878Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:21.210080221Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:21.360017476Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":651,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88601031344164:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-88601031344164%3Amatrix.theocloud.dev","duration":2.344463,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:21.362672877Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"110364100427965@lid","time":"2026-03-06T19:21:21.363354956Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":652,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-110364100427965%3Amatrix.theocloud.dev","duration":3.682081,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-110364100427965","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:21.367303276Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":653,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-110364100427965:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-110364100427965%3Amatrix.theocloud.dev","duration":2.084301,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:21.369733016Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":654,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-110364100427965:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-110364100427965%3Amatrix.theocloud.dev","duration":6.538209,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Bea (WA)"},"time":"2026-03-06T19:21:21.376434307Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:21.377132729Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:21.787717617Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":655,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-110364100427965%3Amatrix.theocloud.dev","duration":72.623256,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61179 bytes>","time":"2026-03-06T19:21:21.877797305Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":656,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-110364100427965:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-110364100427965%3Amatrix.theocloud.dev","duration":2.16015,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:21.880223902Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":657,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/DirJwkctBFoGwKEzXTTMWYyH?user_id=%40whatsapp_lid-110364100427965%3Amatrix.theocloud.dev","duration":1.997487,"status_code":200,"response_length":61179,"response_mime":"image/jpeg","time":"2026-03-06T19:21:21.882311626Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":658,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-110364100427965:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-110364100427965%3Amatrix.theocloud.dev","duration":4.068797,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DirJwkctBFoGwKEzXTTMWYyH"},"time":"2026-03-06T19:21:21.886671106Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"13135550002@s.whatsapp.net","time":"2026-03-06T19:21:21.887144706Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":659,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_13135550002%3Amatrix.theocloud.dev","duration":2.950065,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_13135550002","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:21.890267352Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":660,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_13135550002:matrix.theocloud.dev/displayname?user_id=%40whatsapp_13135550002%3Amatrix.theocloud.dev","duration":1.853194,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:21:21.892365132Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":661,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_13135550002:matrix.theocloud.dev/displayname?user_id=%40whatsapp_13135550002%3Amatrix.theocloud.dev","duration":5.368211,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Meta AI (WA)"},"time":"2026-03-06T19:21:21.897862971Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:21.898487361Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:21.963087633Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":662,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.png&user_id=%40whatsapp_13135550002%3Amatrix.theocloud.dev","duration":84.142751,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40266 bytes>","time":"2026-03-06T19:21:22.058802819Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":663,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_13135550002:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_13135550002%3Amatrix.theocloud.dev","duration":2.314431,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:22.061491325Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":664,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/yGEXoJNcvvmYzciNvibyBIKK?user_id=%40whatsapp_13135550002%3Amatrix.theocloud.dev","duration":3.061184,"status_code":200,"response_length":40266,"response_mime":"image/png","time":"2026-03-06T19:21:22.064665653Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":665,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_13135550002:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_13135550002%3Amatrix.theocloud.dev","duration":4.926599,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/yGEXoJNcvvmYzciNvibyBIKK"},"time":"2026-03-06T19:21:22.06991234Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915906323168@s.whatsapp.net","time":"2026-03-06T19:21:22.070697017Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":666,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915906323168%3Amatrix.theocloud.dev","duration":3.261491,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915906323168","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:22.074220207Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":667,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915906323168:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915906323168%3Amatrix.theocloud.dev","duration":2.088492,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:22.076662589Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":668,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915906323168:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915906323168%3Amatrix.theocloud.dev","duration":6.282167,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Christian (WA)"},"time":"2026-03-06T19:21:22.083120758Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:22.083901455Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:22.233140567Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":669,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915906323168:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915906323168%3Amatrix.theocloud.dev","duration":2.515717,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:22.236086022Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917648311543@s.whatsapp.net","time":"2026-03-06T19:21:22.236701961Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":670,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917648311543%3Amatrix.theocloud.dev","duration":2.640384,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917648311543","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:22.239543351Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":671,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917648311543:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917648311543%3Amatrix.theocloud.dev","duration":1.319389,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:22.241134636Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":672,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917648311543:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917648311543%3Amatrix.theocloud.dev","duration":3.777416,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Paul (WA)"},"time":"2026-03-06T19:21:22.245015698Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:22.245507946Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:22.412310907Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":673,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917648311543:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917648311543%3Amatrix.theocloud.dev","duration":2.442033,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:22.415144615Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491785548939@s.whatsapp.net","time":"2026-03-06T19:21:22.415924403Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":674,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491785548939%3Amatrix.theocloud.dev","duration":3.5014,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491785548939","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:22.419700213Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":675,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491785548939:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491785548939%3Amatrix.theocloud.dev","duration":2.139686,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:22.422186107Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":676,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491785548939:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491785548939%3Amatrix.theocloud.dev","duration":6.534088,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Julius (WA)"},"time":"2026-03-06T19:21:22.42887713Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:22.429604816Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:22.715479804Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":677,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491785548939:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491785548939%3Amatrix.theocloud.dev","duration":2.421709,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:22.718266927Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"92174427373665@lid","time":"2026-03-06T19:21:22.719007185Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":678,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-92174427373665%3Amatrix.theocloud.dev","duration":3.259606,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-92174427373665","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:22.722532889Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":679,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-92174427373665:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-92174427373665%3Amatrix.theocloud.dev","duration":2.077178,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:22.724957392Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":680,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-92174427373665:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-92174427373665%3Amatrix.theocloud.dev","duration":6.406137,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sedjlo (WA)"},"time":"2026-03-06T19:21:22.731533595Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:22.732291313Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:22.899212028Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":681,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-92174427373665:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-92174427373665%3Amatrix.theocloud.dev","duration":2.494135,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:22.902058657Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"194820068913233@lid","time":"2026-03-06T19:21:22.902802336Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":682,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-194820068913233%3Amatrix.theocloud.dev","duration":3.298298,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-194820068913233","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:22.906389223Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":683,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-194820068913233:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-194820068913233%3Amatrix.theocloud.dev","duration":2.147229,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:22.908855281Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":684,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-194820068913233:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-194820068913233%3Amatrix.theocloud.dev","duration":6.316669,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Shaimn (WA)"},"time":"2026-03-06T19:21:22.915355775Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:22.916037295Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:23.091833139Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":685,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-194820068913233%3Amatrix.theocloud.dev","duration":79.341728,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<101454 bytes>","time":"2026-03-06T19:21:23.188141216Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":686,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-194820068913233:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-194820068913233%3Amatrix.theocloud.dev","duration":2.23509,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:23.190745701Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":687,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/PJyVzOlntKKtpBUixEuIuXtv?user_id=%40whatsapp_lid-194820068913233%3Amatrix.theocloud.dev","duration":2.333708,"status_code":200,"response_length":101454,"response_mime":"image/jpeg","time":"2026-03-06T19:21:23.19316315Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":688,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-194820068913233:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-194820068913233%3Amatrix.theocloud.dev","duration":4.649536,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PJyVzOlntKKtpBUixEuIuXtv"},"time":"2026-03-06T19:21:23.198067889Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":689,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-196215597719577%3Amatrix.theocloud.dev","duration":3.231041,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-196215597719577","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:23.202058393Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":690,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196215597719577:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-196215597719577%3Amatrix.theocloud.dev","duration":2.01858,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:23.204415777Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":691,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196215597719577:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-196215597719577%3Amatrix.theocloud.dev","duration":5.445946,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nathalia Marmolejos Feliz (WA)"},"time":"2026-03-06T19:21:23.210023688Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:23.21060233Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:23.372365268Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":692,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-196215597719577%3Amatrix.theocloud.dev","duration":75.133594,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<42428 bytes>","time":"2026-03-06T19:21:23.45904385Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":693,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196215597719577:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-196215597719577%3Amatrix.theocloud.dev","duration":2.309543,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:23.461739061Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":694,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/CDAKyKnmgnBdOwuGvFMTOIhy?user_id=%40whatsapp_lid-196215597719577%3Amatrix.theocloud.dev","duration":3.001539,"status_code":200,"response_length":42428,"response_mime":"image/jpeg","time":"2026-03-06T19:21:23.464870855Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":695,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196215597719577:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-196215597719577%3Amatrix.theocloud.dev","duration":4.343837,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CDAKyKnmgnBdOwuGvFMTOIhy"},"time":"2026-03-06T19:21:23.469450688Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":696,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917627546456%3Amatrix.theocloud.dev","duration":3.297111,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917627546456","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:23.47361517Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":697,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627546456:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917627546456%3Amatrix.theocloud.dev","duration":2.12453,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:23.476077736Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627546456:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917627546456%3Amatrix.theocloud.dev","duration":6.048684,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nathalia Marmolejos Feliz (WA)"},"time":"2026-03-06T19:21:23.482296766Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:23.483019214Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:23.657380359Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":699,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917627546456%3Amatrix.theocloud.dev","duration":74.528063,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<42428 bytes>","time":"2026-03-06T19:21:23.744167685Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":700,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627546456:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917627546456%3Amatrix.theocloud.dev","duration":2.164829,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:23.746703167Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":701,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/reAaCkXuyRneyFHfZBMcVIdr?user_id=%40whatsapp_4917627546456%3Amatrix.theocloud.dev","duration":2.233623,"status_code":200,"response_length":42428,"response_mime":"image/jpeg","time":"2026-03-06T19:21:23.749051611Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":702,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627546456:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917627546456%3Amatrix.theocloud.dev","duration":4.895101,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/reAaCkXuyRneyFHfZBMcVIdr"},"time":"2026-03-06T19:21:23.754200658Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"196215597719577@lid","alternate_jid":"4917627546456@s.whatsapp.net","time":"2026-03-06T19:21:23.754683477Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":703,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":3.276228,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-213099231596676","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:23.758507129Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":704,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-213099231596676:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":2.059507,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:23.760871148Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":705,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-213099231596676:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":6.156241,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"René (WA)"},"time":"2026-03-06T19:21:23.767229722Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:23.767998545Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:24.052553865Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":706,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-213099231596676:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":2.512713,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:24.055460069Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":707,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491608358183%3Amatrix.theocloud.dev","duration":3.89077,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491608358183","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:24.060553102Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":708,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491608358183:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491608358183%3Amatrix.theocloud.dev","duration":2.006497,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:24.062928296Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":709,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491608358183:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491608358183%3Amatrix.theocloud.dev","duration":5.856619,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"René (WA)"},"time":"2026-03-06T19:21:24.068965946Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:24.069788338Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:24.216067467Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":710,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491608358183:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491608358183%3Amatrix.theocloud.dev","duration":2.528008,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:24.218970738Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"213099231596676@lid","alternate_jid":"491608358183@s.whatsapp.net","time":"2026-03-06T19:21:24.219471297Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":711,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-270832349786148%3Amatrix.theocloud.dev","duration":3.293968,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-270832349786148","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:24.223350962Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":712,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-270832349786148:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-270832349786148%3Amatrix.theocloud.dev","duration":1.940845,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:24.225572573Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":713,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-270832349786148:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-270832349786148%3Amatrix.theocloud.dev","duration":5.823653,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"MrCarter (WA)"},"time":"2026-03-06T19:21:24.231581028Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:24.23227505Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:24.618276947Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":714,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-270832349786148:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-270832349786148%3Amatrix.theocloud.dev","duration":2.537437,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:24.621233647Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":715,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915202847057%3Amatrix.theocloud.dev","duration":3.250456,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915202847057","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:24.625421525Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":716,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915202847057:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915202847057%3Amatrix.theocloud.dev","duration":2.002516,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:24.627751531Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":717,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915202847057:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915202847057%3Amatrix.theocloud.dev","duration":5.953978,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"MrCarter (WA)"},"time":"2026-03-06T19:21:24.633880045Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:24.634631268Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:24.818359581Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":718,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915202847057:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915202847057%3Amatrix.theocloud.dev","duration":2.542815,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:24.821287366Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"270832349786148@lid","alternate_jid":"4915202847057@s.whatsapp.net","time":"2026-03-06T19:21:24.821708934Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":719,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915227205397%3Amatrix.theocloud.dev","duration":3.659592,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915227205397","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:24.825966864Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":720,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915227205397:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915227205397%3Amatrix.theocloud.dev","duration":2.175445,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:24.828440884Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":721,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915227205397:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915227205397%3Amatrix.theocloud.dev","duration":6.502309,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915227205397 (WA)"},"time":"2026-03-06T19:21:24.835102365Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:24.835862597Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:24.993925993Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":722,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915227205397%3Amatrix.theocloud.dev","duration":76.337674,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<59885 bytes>","time":"2026-03-06T19:21:25.087095779Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":723,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915227205397:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915227205397%3Amatrix.theocloud.dev","duration":2.202055,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:25.08968902Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":724,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ZPjTfgBRxAZmbMqqjGlQLxib?user_id=%40whatsapp_4915227205397%3Amatrix.theocloud.dev","duration":2.087794,"status_code":200,"response_length":59885,"response_mime":"image/jpeg","time":"2026-03-06T19:21:25.09190253Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":725,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915227205397:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915227205397%3Amatrix.theocloud.dev","duration":4.65631,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZPjTfgBRxAZmbMqqjGlQLxib"},"time":"2026-03-06T19:21:25.096867961Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":726,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-53932357341378%3Amatrix.theocloud.dev","duration":3.193255,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-53932357341378","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:25.100974753Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":727,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-53932357341378:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-53932357341378%3Amatrix.theocloud.dev","duration":2.131235,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:25.103430405Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-53932357341378:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-53932357341378%3Amatrix.theocloud.dev","duration":6.260097,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915227205397 (WA)"},"time":"2026-03-06T19:21:25.109854771Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:25.110634769Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:25.258593533Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":729,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-53932357341378%3Amatrix.theocloud.dev","duration":70.966319,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<59885 bytes>","time":"2026-03-06T19:21:25.340389307Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":730,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-53932357341378:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-53932357341378%3Amatrix.theocloud.dev","duration":2.219236,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:25.342870661Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":731,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/mEVVoaLBYXjhSXZnQhaeuTwi?user_id=%40whatsapp_lid-53932357341378%3Amatrix.theocloud.dev","duration":2.347466,"status_code":200,"response_length":59885,"response_mime":"image/jpeg","time":"2026-03-06T19:21:25.345295373Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":732,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-53932357341378:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-53932357341378%3Amatrix.theocloud.dev","duration":4.690114,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mEVVoaLBYXjhSXZnQhaeuTwi"},"time":"2026-03-06T19:21:25.350297122Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915227205397@s.whatsapp.net","alternate_jid":"53932357341378@lid","time":"2026-03-06T19:21:25.350661769Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":733,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915258731774%3Amatrix.theocloud.dev","duration":3.252761,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915258731774","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:25.354308789Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":734,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915258731774:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915258731774%3Amatrix.theocloud.dev","duration":2.081577,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:25.356613163Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":735,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915258731774:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915258731774%3Amatrix.theocloud.dev","duration":6.737678,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915258731774 (WA)"},"time":"2026-03-06T19:21:25.363463706Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:25.363925572Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:25.513583738Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":736,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915258731774%3Amatrix.theocloud.dev","duration":61.631,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43613 bytes>","time":"2026-03-06T19:21:25.739780653Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":737,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915258731774:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915258731774%3Amatrix.theocloud.dev","duration":2.29271,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:25.742412936Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":738,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/MVXbCQlVlZXaAIccCKeicuRA?user_id=%40whatsapp_4915258731774%3Amatrix.theocloud.dev","duration":3.071381,"status_code":200,"response_length":43613,"response_mime":"image/jpeg","time":"2026-03-06T19:21:25.745601582Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":739,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915258731774:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915258731774%3Amatrix.theocloud.dev","duration":4.705898,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MVXbCQlVlZXaAIccCKeicuRA"},"time":"2026-03-06T19:21:25.750614297Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":740,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-5532052148299%3Amatrix.theocloud.dev","duration":3.154424,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-5532052148299","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:25.754704187Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":741,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-5532052148299:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-5532052148299%3Amatrix.theocloud.dev","duration":2.086816,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:21:25.757144823Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":742,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-5532052148299:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-5532052148299%3Amatrix.theocloud.dev","duration":6.458868,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915258731774 (WA)"},"time":"2026-03-06T19:21:25.763764188Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:25.764521068Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:26.186493378Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":743,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-5532052148299%3Amatrix.theocloud.dev","duration":60.525747,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43613 bytes>","time":"2026-03-06T19:21:26.263961868Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":744,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-5532052148299:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-5532052148299%3Amatrix.theocloud.dev","duration":2.25262,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:26.266576132Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":745,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/bRUPsnblzWKQPucbhwisrUlW?user_id=%40whatsapp_lid-5532052148299%3Amatrix.theocloud.dev","duration":2.382039,"status_code":200,"response_length":43613,"response_mime":"image/jpeg","time":"2026-03-06T19:21:26.269080883Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":746,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-5532052148299:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-5532052148299%3Amatrix.theocloud.dev","duration":4.734813,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/bRUPsnblzWKQPucbhwisrUlW"},"time":"2026-03-06T19:21:26.274139205Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915258731774@s.whatsapp.net","alternate_jid":"5532052148299@lid","time":"2026-03-06T19:21:26.274705206Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917620338641@s.whatsapp.net","alt_jid":"236399445938270@lid","source_push_name":"Marcyś","alt_push_name":"marcyś","time":"2026-03-06T19:21:26.275048411Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":747,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":3.32882,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917620338641","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:26.2786295Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":748,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620338641:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":2.041977,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:26.280976897Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":749,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620338641:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":6.4933,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Marcyś (WA)"},"time":"2026-03-06T19:21:26.28763684Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:26.288408108Z","message":"04012343cea31cbeb2e2d0"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:26.459383652Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":750,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":76.429098,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<28324 bytes>","time":"2026-03-06T19:21:26.766317672Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":751,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620338641:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":2.280418,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:26.768984317Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":752,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/gzmDybURnbFaydYpgticRewF?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":2.391118,"status_code":200,"response_length":28324,"response_mime":"image/jpeg","time":"2026-03-06T19:21:26.771517983Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":753,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620338641:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":4.685295,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gzmDybURnbFaydYpgticRewF"},"time":"2026-03-06T19:21:26.776448424Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":754,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-236399445938270%3Amatrix.theocloud.dev","duration":3.395658,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-236399445938270","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:26.780752101Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":755,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236399445938270:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-236399445938270%3Amatrix.theocloud.dev","duration":2.11112,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:26.783192807Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":756,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236399445938270:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-236399445938270%3Amatrix.theocloud.dev","duration":6.381762,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Marcyś (WA)"},"time":"2026-03-06T19:21:26.78974645Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:26.790495229Z","message":"04012343cea31cbeb2e2d0"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:26.949108352Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":757,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-236399445938270%3Amatrix.theocloud.dev","duration":77.233889,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<28324 bytes>","time":"2026-03-06T19:21:27.033280297Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":758,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236399445938270:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-236399445938270%3Amatrix.theocloud.dev","duration":2.147299,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:27.035817455Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":759,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/axYyOXFXDpicPGMYhRTnQRnH?user_id=%40whatsapp_lid-236399445938270%3Amatrix.theocloud.dev","duration":2.163503,"status_code":200,"response_length":28324,"response_mime":"image/jpeg","time":"2026-03-06T19:21:27.038089073Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":760,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236399445938270:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-236399445938270%3Amatrix.theocloud.dev","duration":5.253671,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/axYyOXFXDpicPGMYhRTnQRnH"},"time":"2026-03-06T19:21:27.043549895Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917620338641@s.whatsapp.net","alternate_jid":"236399445938270@lid","time":"2026-03-06T19:21:27.044039908Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"86522250412262@lid","time":"2026-03-06T19:21:27.044391215Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":761,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-86522250412262%3Amatrix.theocloud.dev","duration":3.344674,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-86522250412262","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:27.047976285Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":762,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-86522250412262:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-86522250412262%3Amatrix.theocloud.dev","duration":2.199331,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:27.050497519Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":763,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-86522250412262:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-86522250412262%3Amatrix.theocloud.dev","duration":6.029827,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Julius (WA)"},"time":"2026-03-06T19:21:27.056699018Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:27.057480413Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:27.342809793Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":764,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-86522250412262:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-86522250412262%3Amatrix.theocloud.dev","duration":2.424154,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:27.34548461Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"166829649616999@lid","time":"2026-03-06T19:21:27.345970712Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":765,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-166829649616999%3Amatrix.theocloud.dev","duration":3.072918,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-166829649616999","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:27.349218794Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":766,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-166829649616999:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-166829649616999%3Amatrix.theocloud.dev","duration":1.99616,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:27.351617105Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":767,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-166829649616999:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-166829649616999%3Amatrix.theocloud.dev","duration":5.471997,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"M (WA)"},"time":"2026-03-06T19:21:27.357222361Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:27.357949279Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:27.511607028Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":768,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-166829649616999:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-166829649616999%3Amatrix.theocloud.dev","duration":2.778253,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:27.514704041Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":769,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-260580380246145%3Amatrix.theocloud.dev","duration":3.653307,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-260580380246145","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:27.51936978Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":770,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-260580380246145:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-260580380246145%3Amatrix.theocloud.dev","duration":2.365905,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:27.522065131Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-260580380246145:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-260580380246145%3Amatrix.theocloud.dev","duration":6.172445,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ibrahim (WA)"},"time":"2026-03-06T19:21:27.528447312Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:27.529197138Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:27.691610306Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":772,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-260580380246145:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-260580380246145%3Amatrix.theocloud.dev","duration":2.711344,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:27.694682525Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":773,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917681278118%3Amatrix.theocloud.dev","duration":3.438123,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917681278118","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:27.699127283Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":774,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681278118:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917681278118%3Amatrix.theocloud.dev","duration":2.119153,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:27.701592783Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":775,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681278118:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917681278118%3Amatrix.theocloud.dev","duration":6.088424,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ibrahim (WA)"},"time":"2026-03-06T19:21:27.70789262Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:27.708674294Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:27.875384505Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":776,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681278118:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917681278118%3Amatrix.theocloud.dev","duration":2.450833,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:27.878183222Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"260580380246145@lid","alternate_jid":"4917681278118@s.whatsapp.net","time":"2026-03-06T19:21:27.878679241Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":777,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":3.255834,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-70029659869242","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:27.882580068Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":778,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70029659869242:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":2.513691,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:27.885560165Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":779,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70029659869242:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":6.282795,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Helena (WA)"},"time":"2026-03-06T19:21:27.892004785Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:27.892809018Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:28.170216336Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":780,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":80.060683,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<111733 bytes>","time":"2026-03-06T19:21:28.318758283Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":781,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70029659869242:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":2.118803,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:28.321266876Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":782,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WjSuHViEFInUkmDqEAsBENJI?user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":2.236138,"status_code":200,"response_length":111733,"response_mime":"image/jpeg","time":"2026-03-06T19:21:28.323662813Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":783,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70029659869242:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":4.786845,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WjSuHViEFInUkmDqEAsBENJI"},"time":"2026-03-06T19:21:28.328682302Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":784,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915759322544%3Amatrix.theocloud.dev","duration":3.227129,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915759322544","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:28.332807253Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":785,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915759322544:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915759322544%3Amatrix.theocloud.dev","duration":2.129768,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:28.33527848Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":786,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915759322544:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915759322544%3Amatrix.theocloud.dev","duration":6.646534,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Helena (WA)"},"time":"2026-03-06T19:21:28.342114146Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:28.342898125Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:28.616448896Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":787,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915759322544%3Amatrix.theocloud.dev","duration":78.469259,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<111733 bytes>","time":"2026-03-06T19:21:28.704275404Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":788,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915759322544:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915759322544%3Amatrix.theocloud.dev","duration":2.262189,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:28.706922983Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":789,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/myeSUNTPdJWGkfvztNQTFxKl?user_id=%40whatsapp_4915759322544%3Amatrix.theocloud.dev","duration":2.474929,"status_code":200,"response_length":111733,"response_mime":"image/jpeg","time":"2026-03-06T19:21:28.709527329Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":790,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915759322544:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915759322544%3Amatrix.theocloud.dev","duration":4.967876,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/myeSUNTPdJWGkfvztNQTFxKl"},"time":"2026-03-06T19:21:28.714836524Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"70029659869242@lid","alternate_jid":"4915759322544@s.whatsapp.net","time":"2026-03-06T19:21:28.715372982Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":791,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-99939661148216%3Amatrix.theocloud.dev","duration":3.374776,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-99939661148216","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:28.719435075Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":792,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-99939661148216:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-99939661148216%3Amatrix.theocloud.dev","duration":2.13794,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:28.721902879Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":793,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-99939661148216:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-99939661148216%3Amatrix.theocloud.dev","duration":6.760586,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ahmed (WA)"},"time":"2026-03-06T19:21:28.728823474Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:28.729609339Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:28.886400139Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":794,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-99939661148216%3Amatrix.theocloud.dev","duration":78.503272,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61286 bytes>","time":"2026-03-06T19:21:28.977939878Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":795,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-99939661148216:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-99939661148216%3Amatrix.theocloud.dev","duration":2.26589,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:28.980474522Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":796,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LCFaAaSzAqspzYhRWICrFPdb?user_id=%40whatsapp_lid-99939661148216%3Amatrix.theocloud.dev","duration":2.21735,"status_code":200,"response_length":61286,"response_mime":"image/jpeg","time":"2026-03-06T19:21:28.982816121Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":797,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-99939661148216:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-99939661148216%3Amatrix.theocloud.dev","duration":4.344675,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LCFaAaSzAqspzYhRWICrFPdb"},"time":"2026-03-06T19:21:28.98736697Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":798,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_201069425498%3Amatrix.theocloud.dev","duration":3.339365,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_201069425498","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:28.991351817Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":799,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_201069425498:matrix.theocloud.dev/displayname?user_id=%40whatsapp_201069425498%3Amatrix.theocloud.dev","duration":2.101413,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:28.993675328Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":800,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_201069425498:matrix.theocloud.dev/displayname?user_id=%40whatsapp_201069425498%3Amatrix.theocloud.dev","duration":6.796765,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ahmed (WA)"},"time":"2026-03-06T19:21:29.000637548Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:29.001171702Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":209,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1910_952_8_391_440_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.880921,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:21:29.148852704Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:29.157080325Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":802,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_201069425498%3Amatrix.theocloud.dev","duration":76.769928,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61286 bytes>","time":"2026-03-06T19:21:29.246202057Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":803,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_201069425498:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_201069425498%3Amatrix.theocloud.dev","duration":2.388115,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:29.248981148Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":804,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/MymjVrDTRkTaIIKxtrHojsVl?user_id=%40whatsapp_201069425498%3Amatrix.theocloud.dev","duration":2.317504,"status_code":200,"response_length":61286,"response_mime":"image/jpeg","time":"2026-03-06T19:21:29.251420388Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":805,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_201069425498:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_201069425498%3Amatrix.theocloud.dev","duration":4.703175,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MymjVrDTRkTaIIKxtrHojsVl"},"time":"2026-03-06T19:21:29.256410404Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"99939661148216@lid","alternate_jid":"201069425498@s.whatsapp.net","time":"2026-03-06T19:21:29.256955662Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"157204946649128@lid","time":"2026-03-06T19:21:29.257325477Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":806,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-157204946649128%3Amatrix.theocloud.dev","duration":6.858295,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-157204946649128","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:29.264478925Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":807,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157204946649128:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-157204946649128%3Amatrix.theocloud.dev","duration":2.156797,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:29.266989124Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":808,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157204946649128:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-157204946649128%3Amatrix.theocloud.dev","duration":6.884975,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Arsam (WA)"},"time":"2026-03-06T19:21:29.274030336Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:29.274775762Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:29.546501975Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":809,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157204946649128:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-157204946649128%3Amatrix.theocloud.dev","duration":2.433791,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:29.549293708Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":810,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-190885543293102%3Amatrix.theocloud.dev","duration":3.502237,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-190885543293102","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:29.553808797Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":811,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-190885543293102:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-190885543293102%3Amatrix.theocloud.dev","duration":2.172023,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:29.556306703Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":812,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-190885543293102:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-190885543293102%3Amatrix.theocloud.dev","duration":6.264148,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Joan (WA)"},"time":"2026-03-06T19:21:29.562766898Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:29.563490324Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:29.844150193Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":813,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-190885543293102%3Amatrix.theocloud.dev","duration":78.838723,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<85809 bytes>","time":"2026-03-06T19:21:30.050090982Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":814,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-190885543293102:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-190885543293102%3Amatrix.theocloud.dev","duration":2.249548,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:30.052724592Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":815,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wtnwAVZzmVhFImxbAmdsghOo?user_id=%40whatsapp_lid-190885543293102%3Amatrix.theocloud.dev","duration":2.313174,"status_code":200,"response_length":85809,"response_mime":"image/jpeg","time":"2026-03-06T19:21:30.055166834Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":816,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-190885543293102:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-190885543293102%3Amatrix.theocloud.dev","duration":4.672164,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wtnwAVZzmVhFImxbAmdsghOo"},"time":"2026-03-06T19:21:30.06011285Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":817,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917645800822%3Amatrix.theocloud.dev","duration":3.203872,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917645800822","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:30.064294373Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":818,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917645800822:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917645800822%3Amatrix.theocloud.dev","duration":2.178728,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:30.066861772Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":819,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917645800822:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917645800822%3Amatrix.theocloud.dev","duration":6.271202,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Joan (WA)"},"time":"2026-03-06T19:21:30.073322805Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:30.074059711Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:30.2416331Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":820,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917645800822%3Amatrix.theocloud.dev","duration":78.575628,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<85809 bytes>","time":"2026-03-06T19:21:30.334856246Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":821,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917645800822:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917645800822%3Amatrix.theocloud.dev","duration":2.169299,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:30.337388375Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":822,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/dVfpFbEPQXrYOucQuyeknFNl?user_id=%40whatsapp_4917645800822%3Amatrix.theocloud.dev","duration":2.375753,"status_code":200,"response_length":85809,"response_mime":"image/jpeg","time":"2026-03-06T19:21:30.339897177Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":823,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917645800822:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917645800822%3Amatrix.theocloud.dev","duration":4.64318,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dVfpFbEPQXrYOucQuyeknFNl"},"time":"2026-03-06T19:21:30.344771535Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"190885543293102@lid","alternate_jid":"4917645800822@s.whatsapp.net","time":"2026-03-06T19:21:30.345270558Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":824,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-195562762690743%3Amatrix.theocloud.dev","duration":4.248432,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-195562762690743","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:30.350350112Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":825,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-195562762690743:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-195562762690743%3Amatrix.theocloud.dev","duration":2.384763,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:30.353114187Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":826,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-195562762690743:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-195562762690743%3Amatrix.theocloud.dev","duration":6.578507,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Daniel Gleissenberg (WA)"},"time":"2026-03-06T19:21:30.359891046Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:30.360629837Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:30.631634231Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":827,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-195562762690743:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-195562762690743%3Amatrix.theocloud.dev","duration":2.670207,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:30.634634093Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":828,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917696505264%3Amatrix.theocloud.dev","duration":3.414237,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917696505264","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:30.638983028Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":829,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917696505264:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917696505264%3Amatrix.theocloud.dev","duration":2.166784,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:30.641504332Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":830,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917696505264:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917696505264%3Amatrix.theocloud.dev","duration":6.097434,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Daniel Gleissenberg (WA)"},"time":"2026-03-06T19:21:30.647771692Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:30.648598205Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:30.91805706Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":831,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917696505264:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917696505264%3Amatrix.theocloud.dev","duration":2.465221,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:30.920803954Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"195562762690743@lid","alternate_jid":"4917696505264@s.whatsapp.net","time":"2026-03-06T19:21:30.921216163Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"35472185270487@lid","time":"2026-03-06T19:21:30.921468293Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":832,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-35472185270487%3Amatrix.theocloud.dev","duration":3.832032,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-35472185270487","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:30.925483452Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":833,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-35472185270487:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-35472185270487%3Amatrix.theocloud.dev","duration":2.149394,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:30.92791417Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":834,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-35472185270487:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-35472185270487%3Amatrix.theocloud.dev","duration":6.353406,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Neesha (WA)"},"time":"2026-03-06T19:21:30.934440715Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:30.935162115Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:31.084649726Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":835,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-35472185270487%3Amatrix.theocloud.dev","duration":74.805965,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40436 bytes>","time":"2026-03-06T19:21:31.304613991Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":836,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-35472185270487:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-35472185270487%3Amatrix.theocloud.dev","duration":2.217141,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:31.307192845Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":837,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/aGIkoYZtmMGdsipWSbCCBnSl?user_id=%40whatsapp_lid-35472185270487%3Amatrix.theocloud.dev","duration":2.355568,"status_code":200,"response_length":40436,"response_mime":"image/jpeg","time":"2026-03-06T19:21:31.30967364Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":838,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-35472185270487:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-35472185270487%3Amatrix.theocloud.dev","duration":4.577877,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/aGIkoYZtmMGdsipWSbCCBnSl"},"time":"2026-03-06T19:21:31.314468308Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":839,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915111161587%3Amatrix.theocloud.dev","duration":3.255136,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915111161587","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:31.31885845Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":840,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111161587:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915111161587%3Amatrix.theocloud.dev","duration":2.112028,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:31.321310749Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":841,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111161587:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915111161587%3Amatrix.theocloud.dev","duration":6.549802,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915111161587 (WA)"},"time":"2026-03-06T19:21:31.328093336Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:31.328840508Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:31.485159035Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":842,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915111161587%3Amatrix.theocloud.dev","duration":70.766082,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64764 bytes>","time":"2026-03-06T19:21:31.571254783Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":843,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111161587:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915111161587%3Amatrix.theocloud.dev","duration":1.334545,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:31.572865903Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":844,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/enkYxcqHfqeeXttoZiEcgYhm?user_id=%40whatsapp_4915111161587%3Amatrix.theocloud.dev","duration":1.543652,"status_code":200,"response_length":64764,"response_mime":"image/jpeg","time":"2026-03-06T19:21:31.574486731Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":845,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111161587:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915111161587%3Amatrix.theocloud.dev","duration":4.045261,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/enkYxcqHfqeeXttoZiEcgYhm"},"time":"2026-03-06T19:21:31.578791526Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":846,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-1632221794310%3Amatrix.theocloud.dev","duration":2.378058,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-1632221794310","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:31.581797325Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":847,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1632221794310:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-1632221794310%3Amatrix.theocloud.dev","duration":1.876171,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:21:31.583982338Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":848,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1632221794310:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-1632221794310%3Amatrix.theocloud.dev","duration":5.553643,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915111161587 (WA)"},"time":"2026-03-06T19:21:31.589649405Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:31.590416622Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:31.757458931Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":849,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-1632221794310%3Amatrix.theocloud.dev","duration":67.656777,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64764 bytes>","time":"2026-03-06T19:21:31.837395714Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":850,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1632221794310:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-1632221794310%3Amatrix.theocloud.dev","duration":2.214627,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:31.839942301Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":851,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VlGNIdKCznvibjNSWcvXjQYs?user_id=%40whatsapp_lid-1632221794310%3Amatrix.theocloud.dev","duration":2.000979,"status_code":200,"response_length":64764,"response_mime":"image/jpeg","time":"2026-03-06T19:21:31.842040151Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":852,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1632221794310:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-1632221794310%3Amatrix.theocloud.dev","duration":4.118316,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VlGNIdKCznvibjNSWcvXjQYs"},"time":"2026-03-06T19:21:31.846371625Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915111161587@s.whatsapp.net","alternate_jid":"1632221794310@lid","time":"2026-03-06T19:21:31.846911156Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915256749404@s.whatsapp.net","time":"2026-03-06T19:21:31.847253942Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":853,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915256749404%3Amatrix.theocloud.dev","duration":3.077876,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915256749404","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:31.850604832Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":854,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256749404:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256749404%3Amatrix.theocloud.dev","duration":1.939727,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:31.852861294Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":855,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256749404:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256749404%3Amatrix.theocloud.dev","duration":5.375894,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Filippo (WA)"},"time":"2026-03-06T19:21:31.858357456Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:31.858886371Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:32.016883347Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":856,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256749404:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915256749404%3Amatrix.theocloud.dev","duration":2.425411,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:32.019646165Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491708034509@s.whatsapp.net","time":"2026-03-06T19:21:32.020303939Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":857,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491708034509%3Amatrix.theocloud.dev","duration":3.625998,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491708034509","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:32.024238919Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":858,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491708034509:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491708034509%3Amatrix.theocloud.dev","duration":2.169229,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:32.026742064Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491708034509:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491708034509%3Amatrix.theocloud.dev","duration":6.387419,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sven (WA)"},"time":"2026-03-06T19:21:32.033295288Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:32.034053006Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:32.190850302Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":860,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491708034509:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491708034509%3Amatrix.theocloud.dev","duration":2.71763,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:32.193881384Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491777952196@s.whatsapp.net","time":"2026-03-06T19:21:32.194620245Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":861,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491777952196%3Amatrix.theocloud.dev","duration":3.554061,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491777952196","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:32.19843314Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":862,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491777952196:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491777952196%3Amatrix.theocloud.dev","duration":2.126626,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:32.20088097Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":863,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491777952196:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491777952196%3Amatrix.theocloud.dev","duration":6.865629,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491777952196 (WA)"},"time":"2026-03-06T19:21:32.207939224Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:32.208730396Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:32.373140563Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":864,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491777952196%3Amatrix.theocloud.dev","duration":71.143369,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<106987 bytes>","time":"2026-03-06T19:21:32.518959431Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":865,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491777952196:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491777952196%3Amatrix.theocloud.dev","duration":2.291522,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:32.521587943Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":866,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/jjUkSGGUWymSIDRpXFkZBKof?user_id=%40whatsapp_491777952196%3Amatrix.theocloud.dev","duration":2.367441,"status_code":200,"response_length":106987,"response_mime":"image/jpeg","time":"2026-03-06T19:21:32.524067062Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":867,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491777952196:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491777952196%3Amatrix.theocloud.dev","duration":4.625789,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jjUkSGGUWymSIDRpXFkZBKof"},"time":"2026-03-06T19:21:32.528942746Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":868,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-115070881280105%3Amatrix.theocloud.dev","duration":3.11175,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-115070881280105","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:32.533155279Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":869,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115070881280105:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-115070881280105%3Amatrix.theocloud.dev","duration":2.201636,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:32.535732876Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":870,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115070881280105:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-115070881280105%3Amatrix.theocloud.dev","duration":6.495116,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nizar Khalifa (WA)"},"time":"2026-03-06T19:21:32.542389048Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:32.542908534Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:32.691137378Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":871,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115070881280105:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-115070881280105%3Amatrix.theocloud.dev","duration":2.532827,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:32.694060973Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":872,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491728367505%3Amatrix.theocloud.dev","duration":3.314013,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491728367505","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:32.698323722Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":873,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491728367505:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491728367505%3Amatrix.theocloud.dev","duration":2.13815,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:32.700799699Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":874,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491728367505:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491728367505%3Amatrix.theocloud.dev","duration":6.377501,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nizar Khalifa (WA)"},"time":"2026-03-06T19:21:32.707368568Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:32.708083054Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:32.876441889Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":875,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491728367505:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491728367505%3Amatrix.theocloud.dev","duration":1.821345,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:32.878620477Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"115070881280105@lid","alternate_jid":"491728367505@s.whatsapp.net","time":"2026-03-06T19:21:32.878957396Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"16724787208198@lid","time":"2026-03-06T19:21:32.879183545Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":876,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-16724787208198%3Amatrix.theocloud.dev","duration":2.34607,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-16724787208198","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:32.881739351Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":877,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-16724787208198:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-16724787208198%3Amatrix.theocloud.dev","duration":1.430228,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:32.883405227Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":878,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-16724787208198:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-16724787208198%3Amatrix.theocloud.dev","duration":4.002727,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Abdallah (WA)"},"time":"2026-03-06T19:21:32.887567264Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:32.888053715Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:33.052641909Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":879,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-16724787208198%3Amatrix.theocloud.dev","duration":69.395289,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<82451 bytes>","time":"2026-03-06T19:21:33.131968899Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":880,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-16724787208198:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-16724787208198%3Amatrix.theocloud.dev","duration":2.318272,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:33.134565353Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":881,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/xXPtzTEqtTkrxiglFsdCxXzd?user_id=%40whatsapp_lid-16724787208198%3Amatrix.theocloud.dev","duration":2.478491,"status_code":200,"response_length":82451,"response_mime":"image/jpeg","time":"2026-03-06T19:21:33.137190652Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":882,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-16724787208198:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-16724787208198%3Amatrix.theocloud.dev","duration":4.666927,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xXPtzTEqtTkrxiglFsdCxXzd"},"time":"2026-03-06T19:21:33.142160624Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"393490711350@s.whatsapp.net","time":"2026-03-06T19:21:33.143032115Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":883,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_393490711350%3Amatrix.theocloud.dev","duration":3.359899,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_393490711350","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:33.146728164Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":884,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393490711350:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393490711350%3Amatrix.theocloud.dev","duration":2.178379,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:33.149298497Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":885,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393490711350:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393490711350%3Amatrix.theocloud.dev","duration":6.339507,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"dokkis (WA)"},"time":"2026-03-06T19:21:33.155830211Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:33.156466543Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:33.324146721Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":886,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_393490711350%3Amatrix.theocloud.dev","duration":73.97156,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41855 bytes>","time":"2026-03-06T19:21:33.41128668Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":887,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393490711350:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_393490711350%3Amatrix.theocloud.dev","duration":2.147369,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:33.413793527Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":888,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/hwlXvfVIWdBmIotnkAfLFjBa?user_id=%40whatsapp_393490711350%3Amatrix.theocloud.dev","duration":2.246195,"status_code":200,"response_length":41855,"response_mime":"image/jpeg","time":"2026-03-06T19:21:33.416122066Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":889,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393490711350:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_393490711350%3Amatrix.theocloud.dev","duration":4.239212,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hwlXvfVIWdBmIotnkAfLFjBa"},"time":"2026-03-06T19:21:33.420569618Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491709963980@s.whatsapp.net","time":"2026-03-06T19:21:33.421074717Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":890,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491709963980%3Amatrix.theocloud.dev","duration":3.004403,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491709963980","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:33.424274887Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":891,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491709963980:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491709963980%3Amatrix.theocloud.dev","duration":2.075431,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:33.426721459Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":892,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491709963980:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491709963980%3Amatrix.theocloud.dev","duration":5.464106,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491709963980 (WA)"},"time":"2026-03-06T19:21:33.432361846Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:33.432837053Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:33.59453343Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":893,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491709963980%3Amatrix.theocloud.dev","duration":68.948368,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<20637 bytes>","time":"2026-03-06T19:21:33.690946549Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":894,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491709963980:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491709963980%3Amatrix.theocloud.dev","duration":2.159311,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:33.693382505Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":895,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/EXqCiCHSSlYStNlbdtiuPgln?user_id=%40whatsapp_491709963980%3Amatrix.theocloud.dev","duration":1.989944,"status_code":200,"response_length":20637,"response_mime":"image/jpeg","time":"2026-03-06T19:21:33.695464501Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":896,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491709963980:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491709963980%3Amatrix.theocloud.dev","duration":4.220705,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EXqCiCHSSlYStNlbdtiuPgln"},"time":"2026-03-06T19:21:33.699832992Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":897,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491727724601%3Amatrix.theocloud.dev","duration":2.840972,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491727724601","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:33.703307153Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":898,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491727724601:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491727724601%3Amatrix.theocloud.dev","duration":1.951182,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:33.705482947Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":899,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491727724601:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491727724601%3Amatrix.theocloud.dev","duration":5.580322,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"AP (WA)"},"time":"2026-03-06T19:21:33.711173551Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:33.711724955Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:33.868618423Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":900,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491727724601:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491727724601%3Amatrix.theocloud.dev","duration":2.408718,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:33.871390111Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":901,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-223690570625160%3Amatrix.theocloud.dev","duration":3.599248,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-223690570625160","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:33.875829142Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":902,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-223690570625160:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-223690570625160%3Amatrix.theocloud.dev","duration":2.22664,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:33.878424409Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":903,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-223690570625160:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-223690570625160%3Amatrix.theocloud.dev","duration":6.481218,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"AP (WA)"},"time":"2026-03-06T19:21:33.885083934Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:33.885854642Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:34.30220151Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":904,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-223690570625160:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-223690570625160%3Amatrix.theocloud.dev","duration":2.462637,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:34.305051771Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491727724601@s.whatsapp.net","alternate_jid":"223690570625160@lid","time":"2026-03-06T19:21:34.30553438Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917657902857@s.whatsapp.net","time":"2026-03-06T19:21:34.305856353Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":905,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917657902857%3Amatrix.theocloud.dev","duration":3.479958,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917657902857","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:34.309596473Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":906,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657902857:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917657902857%3Amatrix.theocloud.dev","duration":2.185013,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:34.31210325Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":907,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657902857:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917657902857%3Amatrix.theocloud.dev","duration":6.684319,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Harun (WA)"},"time":"2026-03-06T19:21:34.318981799Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:34.319724432Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:34.773880239Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":908,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657902857:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917657902857%3Amatrix.theocloud.dev","duration":2.785797,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:34.777027679Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":909,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491783900163%3Amatrix.theocloud.dev","duration":3.520607,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491783900163","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:34.781508405Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":910,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783900163:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783900163%3Amatrix.theocloud.dev","duration":2.174048,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:34.784019093Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":911,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783900163:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783900163%3Amatrix.theocloud.dev","duration":6.846282,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Brn (WA)"},"time":"2026-03-06T19:21:34.791039772Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:34.791836322Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:34.836099451Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":912,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783900163:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491783900163%3Amatrix.theocloud.dev","duration":2.356336,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:34.83877741Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":913,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-265076942577859%3Amatrix.theocloud.dev","duration":3.277416,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-265076942577859","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:34.842953695Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":914,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-265076942577859:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-265076942577859%3Amatrix.theocloud.dev","duration":2.15994,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:34.845444338Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":915,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-265076942577859:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-265076942577859%3Amatrix.theocloud.dev","duration":6.56845,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Brn (WA)"},"time":"2026-03-06T19:21:34.852197311Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:34.852957544Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:35.001144343Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":916,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-265076942577859:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-265076942577859%3Amatrix.theocloud.dev","duration":2.61594,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:35.004157545Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491783900163@s.whatsapp.net","alternate_jid":"265076942577859@lid","time":"2026-03-06T19:21:35.004682968Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491788110151@s.whatsapp.net","time":"2026-03-06T19:21:35.005011296Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":917,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491788110151%3Amatrix.theocloud.dev","duration":3.745428,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491788110151","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:35.009011648Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":918,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491788110151:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491788110151%3Amatrix.theocloud.dev","duration":2.143736,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:35.011495726Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":919,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491788110151:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491788110151%3Amatrix.theocloud.dev","duration":6.466899,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ali (WA)"},"time":"2026-03-06T19:21:35.018152317Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:35.01892596Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:35.169308458Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":920,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491788110151%3Amatrix.theocloud.dev","duration":76.668517,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<69126 bytes>","time":"2026-03-06T19:21:35.312191229Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":921,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491788110151:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491788110151%3Amatrix.theocloud.dev","duration":2.292781,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:35.314851868Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":922,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/alTlTsbXFmnaKZvQvVTyfGVG?user_id=%40whatsapp_491788110151%3Amatrix.theocloud.dev","duration":2.474509,"status_code":200,"response_length":69126,"response_mime":"image/jpeg","time":"2026-03-06T19:21:35.317454538Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":923,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491788110151:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491788110151%3Amatrix.theocloud.dev","duration":4.750039,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/alTlTsbXFmnaKZvQvVTyfGVG"},"time":"2026-03-06T19:21:35.322428142Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"2160435707964@lid","time":"2026-03-06T19:21:35.323155339Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":924,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-2160435707964%3Amatrix.theocloud.dev","duration":3.395868,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-2160435707964","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:35.326829318Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":925,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2160435707964:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-2160435707964%3Amatrix.theocloud.dev","duration":2.164061,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:21:35.32936026Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":926,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2160435707964:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-2160435707964%3Amatrix.theocloud.dev","duration":7.095409,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lennart (WA)"},"time":"2026-03-06T19:21:35.336639844Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:35.337355168Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:35.502176914Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":927,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2160435707964:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-2160435707964%3Amatrix.theocloud.dev","duration":2.479329,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:35.505054692Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":928,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":3.357804,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-218845914619936","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:35.509374363Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":929,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-218845914619936:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":2.342857,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:35.512135645Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":930,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-218845914619936:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":6.465014,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jonas (WA)"},"time":"2026-03-06T19:21:35.518742718Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:35.519476689Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:35.684465847Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":931,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":55.894511,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<48132 bytes>","time":"2026-03-06T19:21:35.755682341Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":932,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-218845914619936:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":2.203871,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:35.758178921Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":933,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/lvAacnCeqsPNaXeWWjNufdBM?user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":1.76184,"status_code":200,"response_length":48132,"response_mime":"image/jpeg","time":"2026-03-06T19:21:35.760035257Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":934,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-218845914619936:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":3.114823,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lvAacnCeqsPNaXeWWjNufdBM"},"time":"2026-03-06T19:21:35.763373575Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":935,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695111675:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917695111675%3Amatrix.theocloud.dev","duration":1.304792,"status_code":200,"response_length":37,"response_mime":"application/json","time":"2026-03-06T19:21:35.765118722Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":936,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695111675:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917695111675%3Amatrix.theocloud.dev","duration":2.111609,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jonas (WA)"},"time":"2026-03-06T19:21:35.76736387Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:35.767792073Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:36.142901935Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"218845914619936@lid","alternate_jid":"4917695111675@s.whatsapp.net","time":"2026-03-06T19:21:36.143470381Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":937,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":3.792432,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491637362958","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:36.147856611Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":938,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491637362958:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":2.132213,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:36.150419331Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":939,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491637362958:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":6.043446,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"FloJ (WA)"},"time":"2026-03-06T19:21:36.156644577Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:36.157474162Z","message":"04012474e8d6b1208dd95a"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:36.54112887Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":940,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":75.829502,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46658 bytes>","time":"2026-03-06T19:21:36.624613078Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":941,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491637362958:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":2.145901,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:36.627103372Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":942,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/oHURlkhlQKAlDyqbcEDHaxsG?user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":2.242145,"status_code":200,"response_length":46658,"response_mime":"image/jpeg","time":"2026-03-06T19:21:36.62951202Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":943,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491637362958:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":4.894332,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oHURlkhlQKAlDyqbcEDHaxsG"},"time":"2026-03-06T19:21:36.634664978Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":944,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":3.21323,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-102147257532455","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:36.638872831Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":945,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102147257532455:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":2.058041,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:36.641287766Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":946,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102147257532455:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":6.060977,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"FloJ (WA)"},"time":"2026-03-06T19:21:36.647542764Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:36.648326813Z","message":"04012474e8d6b1208dd95a"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:36.836455672Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":947,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":71.960592,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46658 bytes>","time":"2026-03-06T19:21:36.921486466Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":948,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102147257532455:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":2.155261,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:36.92398996Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":949,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/qXVJUHNyOxuokCEzkiaQFcJo?user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":3.301232,"status_code":200,"response_length":46658,"response_mime":"image/jpeg","time":"2026-03-06T19:21:36.927417955Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":950,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102147257532455:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":4.790407,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qXVJUHNyOxuokCEzkiaQFcJo"},"time":"2026-03-06T19:21:36.932466709Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491637362958@s.whatsapp.net","alternate_jid":"102147257532455@lid","time":"2026-03-06T19:21:36.933007008Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917664977567@s.whatsapp.net","time":"2026-03-06T19:21:36.933372702Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":951,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917664977567%3Amatrix.theocloud.dev","duration":3.317993,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917664977567","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:36.93699884Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":952,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664977567:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917664977567%3Amatrix.theocloud.dev","duration":2.115311,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:36.939430606Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":953,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664977567:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917664977567%3Amatrix.theocloud.dev","duration":6.443362,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917664977567 (WA)"},"time":"2026-03-06T19:21:36.946032231Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:36.946823194Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:37.355582962Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":954,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917664977567%3Amatrix.theocloud.dev","duration":77.031347,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35171 bytes>","time":"2026-03-06T19:21:37.444802962Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":955,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664977567:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917664977567%3Amatrix.theocloud.dev","duration":2.282583,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:37.447456198Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":956,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WWDOjpyXvonMfgloWFQKLSIi?user_id=%40whatsapp_4917664977567%3Amatrix.theocloud.dev","duration":2.236138,"status_code":200,"response_length":35171,"response_mime":"image/jpeg","time":"2026-03-06T19:21:37.449813023Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":957,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664977567:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917664977567%3Amatrix.theocloud.dev","duration":4.328051,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WWDOjpyXvonMfgloWFQKLSIi"},"time":"2026-03-06T19:21:37.454366665Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":958,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":3.75793,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-87162133413943","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:37.460137378Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":959,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-87162133413943:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":2.203592,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:37.462722796Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":960,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-87162133413943:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":6.663086,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"christian rzadeh (WA)"},"time":"2026-03-06T19:21:37.469556926Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:37.470069079Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:37.619458142Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":961,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-87162133413943:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":2.401315,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:37.622233392Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":962,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491772982858%3Amatrix.theocloud.dev","duration":3.4567,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491772982858","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:37.626605654Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":963,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491772982858:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491772982858%3Amatrix.theocloud.dev","duration":2.324069,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:37.629362046Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":964,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491772982858:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491772982858%3Amatrix.theocloud.dev","duration":6.253043,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"christian rzadeh (WA)"},"time":"2026-03-06T19:21:37.635790672Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:37.636600632Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:37.792653969Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":965,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491772982858:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491772982858%3Amatrix.theocloud.dev","duration":2.754367,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:37.795848621Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"87162133413943@lid","alternate_jid":"491772982858@s.whatsapp.net","time":"2026-03-06T19:21:37.79638033Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":966,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":3.223846,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-143632363450509","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:37.800282833Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":967,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-143632363450509:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":2.40767,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:37.803002628Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":968,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-143632363450509:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":6.857457,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"ben (WA)"},"time":"2026-03-06T19:21:37.810006335Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:37.810578064Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:38.017716645Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":969,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":77.384399,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<56861 bytes>","time":"2026-03-06T19:21:38.127721965Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":970,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-143632363450509:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":2.27986,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:38.13038016Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":971,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/yuvSCzvoPdUrAGuBDdwAnxKP?user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":2.469411,"status_code":200,"response_length":56861,"response_mime":"image/jpeg","time":"2026-03-06T19:21:38.132971934Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":972,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-143632363450509:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":4.993788,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/yuvSCzvoPdUrAGuBDdwAnxKP"},"time":"2026-03-06T19:21:38.138304457Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":973,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915253705809%3Amatrix.theocloud.dev","duration":3.524937,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915253705809","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:38.142816892Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":974,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253705809:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915253705809%3Amatrix.theocloud.dev","duration":2.542117,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:38.145751522Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":975,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253705809:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915253705809%3Amatrix.theocloud.dev","duration":6.846772,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"ben (WA)"},"time":"2026-03-06T19:21:38.15279902Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:38.15357776Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:38.318456009Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":976,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915253705809%3Amatrix.theocloud.dev","duration":71.694564,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<56861 bytes>","time":"2026-03-06T19:21:38.399507473Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":977,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253705809:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915253705809%3Amatrix.theocloud.dev","duration":1.578853,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:38.401450623Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":978,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/zmmVywRAQXbvnKZdFlwXfbsD?user_id=%40whatsapp_4915253705809%3Amatrix.theocloud.dev","duration":1.676352,"status_code":200,"response_length":56861,"response_mime":"image/jpeg","time":"2026-03-06T19:21:38.403264984Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":979,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253705809:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915253705809%3Amatrix.theocloud.dev","duration":3.312266,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/zmmVywRAQXbvnKZdFlwXfbsD"},"time":"2026-03-06T19:21:38.40690523Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"143632363450509@lid","alternate_jid":"4915253705809@s.whatsapp.net","time":"2026-03-06T19:21:38.407438964Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"146415502245916@lid","time":"2026-03-06T19:21:38.407790899Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":980,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-146415502245916%3Amatrix.theocloud.dev","duration":2.216792,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-146415502245916","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:38.410272043Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":981,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-146415502245916:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-146415502245916%3Amatrix.theocloud.dev","duration":1.328259,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:38.411918713Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":982,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-146415502245916:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-146415502245916%3Amatrix.theocloud.dev","duration":4.092893,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"🥳 (WA)"},"time":"2026-03-06T19:21:38.41615604Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:38.416640116Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:38.685997699Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":983,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-146415502245916:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-146415502245916%3Amatrix.theocloud.dev","duration":2.539603,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:38.688906976Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"123531916480575@lid","time":"2026-03-06T19:21:38.689676218Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":984,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-123531916480575%3Amatrix.theocloud.dev","duration":3.404109,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-123531916480575","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:38.693363957Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":985,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-123531916480575:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-123531916480575%3Amatrix.theocloud.dev","duration":2.170137,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:38.695861375Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":986,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-123531916480575:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-123531916480575%3Amatrix.theocloud.dev","duration":6.669651,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alessia (WA)"},"time":"2026-03-06T19:21:38.702677904Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:38.703365291Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:38.861478763Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":987,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-123531916480575%3Amatrix.theocloud.dev","duration":78.92414,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38308 bytes>","time":"2026-03-06T19:21:39.052559643Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":988,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-123531916480575:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-123531916480575%3Amatrix.theocloud.dev","duration":2.483101,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:39.055444894Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":989,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/GxcEOLlqHPAFJkrNDwSbAjmi?user_id=%40whatsapp_lid-123531916480575%3Amatrix.theocloud.dev","duration":2.429182,"status_code":200,"response_length":38308,"response_mime":"image/jpeg","time":"2026-03-06T19:21:39.058023329Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":990,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-123531916480575:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-123531916480575%3Amatrix.theocloud.dev","duration":4.754718,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GxcEOLlqHPAFJkrNDwSbAjmi"},"time":"2026-03-06T19:21:39.063088496Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"184928843075621@lid","time":"2026-03-06T19:21:39.063711767Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":991,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-184928843075621%3Amatrix.theocloud.dev","duration":3.033387,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-184928843075621","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:39.066974726Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":992,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-184928843075621:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-184928843075621%3Amatrix.theocloud.dev","duration":1.907879,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:39.069223016Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":993,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-184928843075621:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-184928843075621%3Amatrix.theocloud.dev","duration":5.080951,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Florian C. (WA)"},"time":"2026-03-06T19:21:39.074429264Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:39.074922001Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:39.229664328Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":994,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-184928843075621%3Amatrix.theocloud.dev","duration":75.247367,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<48376 bytes>","time":"2026-03-06T19:21:39.315779981Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":995,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-184928843075621:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-184928843075621%3Amatrix.theocloud.dev","duration":2.295574,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:39.318447185Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":996,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ufNItnaEYHqkdVZfEhENChyj?user_id=%40whatsapp_lid-184928843075621%3Amatrix.theocloud.dev","duration":2.370095,"status_code":200,"response_length":48376,"response_mime":"image/jpeg","time":"2026-03-06T19:21:39.320933079Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":997,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-184928843075621:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-184928843075621%3Amatrix.theocloud.dev","duration":4.836294,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ufNItnaEYHqkdVZfEhENChyj"},"time":"2026-03-06T19:21:39.32600523Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"21479232127054@lid","time":"2026-03-06T19:21:39.326740459Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":998,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-21479232127054%3Amatrix.theocloud.dev","duration":3.355918,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-21479232127054","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:39.330351022Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":999,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21479232127054:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-21479232127054%3Amatrix.theocloud.dev","duration":2.150651,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:39.332841246Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1000,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21479232127054:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-21479232127054%3Amatrix.theocloud.dev","duration":6.694516,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Philip (WA)"},"time":"2026-03-06T19:21:39.339694862Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:39.34043903Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:39.503481057Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1001,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21479232127054:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-21479232127054%3Amatrix.theocloud.dev","duration":2.428763,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:39.506276631Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1002,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":3.506358,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-44419206123644","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:39.510693173Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1003,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-44419206123644:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":2.184176,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:39.513192057Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1004,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-44419206123644:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":6.622787,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nes The One (WA)"},"time":"2026-03-06T19:21:39.519984911Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:39.520684939Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:39.92649541Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1005,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":48.227931,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40151 bytes>","time":"2026-03-06T19:21:39.986199743Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1006,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-44419206123644:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":2.359549,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:39.988934205Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1007,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/SXNeSLsfibUWbhwpGmCpbXKH?user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":3.070822,"status_code":200,"response_length":40151,"response_mime":"image/jpeg","time":"2026-03-06T19:21:39.99215463Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1008,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-44419206123644:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":4.517464,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SXNeSLsfibUWbhwpGmCpbXKH"},"time":"2026-03-06T19:21:39.996890839Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1009,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915776207693%3Amatrix.theocloud.dev","duration":3.203802,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915776207693","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:40.001036324Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1010,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915776207693:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915776207693%3Amatrix.theocloud.dev","duration":2.316247,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:40.003761636Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1011,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915776207693:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915776207693%3Amatrix.theocloud.dev","duration":6.60805,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nes The One (WA)"},"time":"2026-03-06T19:21:40.010545201Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:40.011310182Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:40.17706488Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1012,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915776207693%3Amatrix.theocloud.dev","duration":40.970976,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40151 bytes>","time":"2026-03-06T19:21:40.22957344Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1013,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915776207693:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915776207693%3Amatrix.theocloud.dev","duration":2.307586,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:40.232278638Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1014,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YTybwWzInNGcMyilnPaGWrSv?user_id=%40whatsapp_4915776207693%3Amatrix.theocloud.dev","duration":2.424921,"status_code":200,"response_length":40151,"response_mime":"image/jpeg","time":"2026-03-06T19:21:40.234862032Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1015,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915776207693:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915776207693%3Amatrix.theocloud.dev","duration":4.726502,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YTybwWzInNGcMyilnPaGWrSv"},"time":"2026-03-06T19:21:40.239835915Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"44419206123644@lid","alternate_jid":"4915776207693@s.whatsapp.net","time":"2026-03-06T19:21:40.240389973Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915901096609@s.whatsapp.net","alternate_jid":"274010575245356@lid","time":"2026-03-06T19:21:40.240525746Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"61955406606386@lid","time":"2026-03-06T19:21:40.240864271Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1016,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":3.311708,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-61955406606386","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:40.244429157Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1017,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-61955406606386:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":2.102041,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:40.246845418Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1018,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-61955406606386:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":6.30752,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ali (WA)"},"time":"2026-03-06T19:21:40.253325937Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:40.254119135Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:40.402724498Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1019,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":76.389985,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<69126 bytes>","time":"2026-03-06T19:21:40.492917888Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1020,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-61955406606386:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":2.305003,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:40.49557287Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1021,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/GflJdclDSwfpfkboeVWriwdr?user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":2.444687,"status_code":200,"response_length":69126,"response_mime":"image/jpeg","time":"2026-03-06T19:21:40.498136079Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1022,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-61955406606386:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":4.960403,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GflJdclDSwfpfkboeVWriwdr"},"time":"2026-03-06T19:21:40.50338954Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"105094192341121@lid","time":"2026-03-06T19:21:40.504201456Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1023,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-105094192341121%3Amatrix.theocloud.dev","duration":3.3064,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-105094192341121","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:40.507769554Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1024,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105094192341121:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-105094192341121%3Amatrix.theocloud.dev","duration":2.081507,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:40.510168774Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1025,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105094192341121:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-105094192341121%3Amatrix.theocloud.dev","duration":6.441128,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Zou (WA)"},"time":"2026-03-06T19:21:40.51677878Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:40.517554657Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:40.67866876Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1026,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-105094192341121:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-105094192341121%3Amatrix.theocloud.dev","duration":2.325396,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:40.681315221Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"109869759754428@lid","time":"2026-03-06T19:21:40.682019579Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1027,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-109869759754428%3Amatrix.theocloud.dev","duration":3.612798,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-109869759754428","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:40.685891352Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1028,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-109869759754428:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-109869759754428%3Amatrix.theocloud.dev","duration":2.056854,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:40.688293854Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1029,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-109869759754428:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-109869759754428%3Amatrix.theocloud.dev","duration":6.362765,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Juan Pablo (WA)"},"time":"2026-03-06T19:21:40.694828571Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:40.695603121Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:40.856574326Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1030,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-109869759754428%3Amatrix.theocloud.dev","duration":73.342281,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34321 bytes>","time":"2026-03-06T19:21:40.945239918Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1031,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-109869759754428:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-109869759754428%3Amatrix.theocloud.dev","duration":1.421079,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:40.946946023Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1032,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/zaAEUpOqizvZRXiKpRgsJkLB?user_id=%40whatsapp_lid-109869759754428%3Amatrix.theocloud.dev","duration":2.19095,"status_code":200,"response_length":34321,"response_mime":"image/jpeg","time":"2026-03-06T19:21:40.949224625Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1033,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-109869759754428:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-109869759754428%3Amatrix.theocloud.dev","duration":3.021653,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/zaAEUpOqizvZRXiKpRgsJkLB"},"time":"2026-03-06T19:21:40.952565108Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1034,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-114310957285378%3Amatrix.theocloud.dev","duration":2.025284,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-114310957285378","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:40.955274916Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1035,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-114310957285378:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-114310957285378%3Amatrix.theocloud.dev","duration":1.347047,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:40.956834702Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1036,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-114310957285378:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-114310957285378%3Amatrix.theocloud.dev","duration":3.812686,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Taha, (WA)"},"time":"2026-03-06T19:21:40.960751174Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:40.961224774Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:41.120646669Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1037,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-114310957285378%3Amatrix.theocloud.dev","duration":79.292139,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22170 bytes>","time":"2026-03-06T19:21:41.212786981Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1038,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-114310957285378:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-114310957285378%3Amatrix.theocloud.dev","duration":2.290335,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:41.215380222Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1039,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/qowbxNqvTeLckjJmHZFKWdXe?user_id=%40whatsapp_lid-114310957285378%3Amatrix.theocloud.dev","duration":2.871912,"status_code":200,"response_length":22170,"response_mime":"image/jpeg","time":"2026-03-06T19:21:41.218325887Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1040,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-114310957285378:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-114310957285378%3Amatrix.theocloud.dev","duration":4.302908,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qowbxNqvTeLckjJmHZFKWdXe"},"time":"2026-03-06T19:21:41.222906139Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1041,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491635157494%3Amatrix.theocloud.dev","duration":6.685296,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491635157494","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:41.230276029Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1042,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491635157494:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491635157494%3Amatrix.theocloud.dev","duration":2.091634,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:41.232637953Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1043,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491635157494:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491635157494%3Amatrix.theocloud.dev","duration":6.796625,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Taha, (WA)"},"time":"2026-03-06T19:21:41.239628529Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:41.240165616Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:41.401725241Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1044,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491635157494%3Amatrix.theocloud.dev","duration":72.800096,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22170 bytes>","time":"2026-03-06T19:21:41.482355208Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1045,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491635157494:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491635157494%3Amatrix.theocloud.dev","duration":2.070543,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:41.484683887Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1046,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/GrHpixApVEuNagstdnfnUClH?user_id=%40whatsapp_491635157494%3Amatrix.theocloud.dev","duration":2.727687,"status_code":200,"response_length":22170,"response_mime":"image/jpeg","time":"2026-03-06T19:21:41.487529887Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1047,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491635157494:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491635157494%3Amatrix.theocloud.dev","duration":4.255067,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GrHpixApVEuNagstdnfnUClH"},"time":"2026-03-06T19:21:41.492082621Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"114310957285378@lid","alternate_jid":"491635157494@s.whatsapp.net","time":"2026-03-06T19:21:41.492514316Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"235244099776580@lid","time":"2026-03-06T19:21:41.492774618Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1048,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-235244099776580%3Amatrix.theocloud.dev","duration":3.014041,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-235244099776580","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:41.49598708Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1049,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-235244099776580:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-235244099776580%3Amatrix.theocloud.dev","duration":1.941195,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:41.498167693Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1050,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-235244099776580:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-235244099776580%3Amatrix.theocloud.dev","duration":5.521236,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Костя (WA)"},"time":"2026-03-06T19:21:41.503871008Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:41.504635082Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:41.654458283Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1051,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-235244099776580%3Amatrix.theocloud.dev","duration":74.855762,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41210 bytes>","time":"2026-03-06T19:21:41.895357121Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1052,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-235244099776580:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-235244099776580%3Amatrix.theocloud.dev","duration":2.228805,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:41.897845948Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1053,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/nxsRkDPsyhgMLEqqUtGmapSp?user_id=%40whatsapp_lid-235244099776580%3Amatrix.theocloud.dev","duration":2.236068,"status_code":200,"response_length":41210,"response_mime":"image/jpeg","time":"2026-03-06T19:21:41.900251244Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1054,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-235244099776580:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-235244099776580%3Amatrix.theocloud.dev","duration":4.529057,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nxsRkDPsyhgMLEqqUtGmapSp"},"time":"2026-03-06T19:21:41.905032293Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"252780333793437@lid","time":"2026-03-06T19:21:41.905661501Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1055,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-252780333793437%3Amatrix.theocloud.dev","duration":2.959634,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-252780333793437","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:41.908820394Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1056,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252780333793437:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-252780333793437%3Amatrix.theocloud.dev","duration":1.702892,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:41.91083199Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252780333793437:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-252780333793437%3Amatrix.theocloud.dev","duration":5.790617,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"~Lilly♥️ (WA)"},"time":"2026-03-06T19:21:41.91678499Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:41.917570017Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:42.431705334Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1058,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252780333793437:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-252780333793437%3Amatrix.theocloud.dev","duration":2.504751,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:42.434560134Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915566025985@s.whatsapp.net","time":"2026-03-06T19:21:42.435228105Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1059,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915566025985%3Amatrix.theocloud.dev","duration":3.438472,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915566025985","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:42.438947273Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1060,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915566025985:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915566025985%3Amatrix.theocloud.dev","duration":2.200728,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:42.441496723Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915566025985:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915566025985%3Amatrix.theocloud.dev","duration":6.198636,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Margarita Pantzali (WA)"},"time":"2026-03-06T19:21:42.447858929Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:42.448621047Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:42.6189722Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1062,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915566025985%3Amatrix.theocloud.dev","duration":73.742198,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24979 bytes>","time":"2026-03-06T19:21:42.700575069Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1063,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915566025985:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915566025985%3Amatrix.theocloud.dev","duration":1.629419,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:42.702614042Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1064,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/rSbqddGzHyKNphwRwILvlRqt?user_id=%40whatsapp_4915566025985%3Amatrix.theocloud.dev","duration":2.364158,"status_code":200,"response_length":24979,"response_mime":"image/jpeg","time":"2026-03-06T19:21:42.705062361Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1065,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915566025985:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915566025985%3Amatrix.theocloud.dev","duration":3.644506,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rSbqddGzHyKNphwRwILvlRqt"},"time":"2026-03-06T19:21:42.708980439Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915739307159@s.whatsapp.net","time":"2026-03-06T19:21:42.70979459Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1066,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915739307159%3Amatrix.theocloud.dev","duration":2.607908,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915739307159","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:42.712665453Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1067,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915739307159:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915739307159%3Amatrix.theocloud.dev","duration":1.406203,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:42.71429131Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1068,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915739307159:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915739307159%3Amatrix.theocloud.dev","duration":4.744311,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915739307159 (WA)"},"time":"2026-03-06T19:21:42.719235091Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:42.719995323Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:42.760393314Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:42.80941563Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:42.877705526Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1069,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915739307159%3Amatrix.theocloud.dev","duration":78.72516,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<92154 bytes>","time":"2026-03-06T19:21:42.973297928Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1070,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915739307159:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915739307159%3Amatrix.theocloud.dev","duration":2.441614,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:42.976102722Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1071,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/mzQulVkuGcXaQjbycqBvxjHA?user_id=%40whatsapp_4915739307159%3Amatrix.theocloud.dev","duration":2.490504,"status_code":200,"response_length":92154,"response_mime":"image/jpeg","time":"2026-03-06T19:21:42.978733887Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1072,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915739307159:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915739307159%3Amatrix.theocloud.dev","duration":4.775042,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mzQulVkuGcXaQjbycqBvxjHA"},"time":"2026-03-06T19:21:42.983757078Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917646754489@s.whatsapp.net","time":"2026-03-06T19:21:42.984371899Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1073,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917646754489%3Amatrix.theocloud.dev","duration":3.469482,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917646754489","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:42.988038057Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1074,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646754489:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917646754489%3Amatrix.theocloud.dev","duration":2.360387,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:42.99070987Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1075,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646754489:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917646754489%3Amatrix.theocloud.dev","duration":6.322815,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917646754489 (WA)"},"time":"2026-03-06T19:21:42.997210993Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:42.997818131Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:43.168757844Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1076,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917646754489%3Amatrix.theocloud.dev","duration":73.001381,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<51859 bytes>","time":"2026-03-06T19:21:43.43285575Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1077,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646754489:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917646754489%3Amatrix.theocloud.dev","duration":1.564605,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:43.434676047Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1078,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/nMBpzTtgkALdAnnhYdKArIkG?user_id=%40whatsapp_4917646754489%3Amatrix.theocloud.dev","duration":1.777135,"status_code":200,"response_length":51859,"response_mime":"image/jpeg","time":"2026-03-06T19:21:43.436580016Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1079,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646754489:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917646754489%3Amatrix.theocloud.dev","duration":4.227898,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nMBpzTtgkALdAnnhYdKArIkG"},"time":"2026-03-06T19:21:43.441041257Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"15985952219342@lid","time":"2026-03-06T19:21:43.441824956Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1080,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-15985952219342%3Amatrix.theocloud.dev","duration":2.604555,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-15985952219342","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:43.44468716Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1081,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-15985952219342:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-15985952219342%3Amatrix.theocloud.dev","duration":1.698982,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:43.446703365Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1082,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-15985952219342:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-15985952219342%3Amatrix.theocloud.dev","duration":5.226921,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Adri (WA)"},"time":"2026-03-06T19:21:43.452152104Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:43.452905911Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:43.61291497Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1083,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-15985952219342%3Amatrix.theocloud.dev","duration":73.20113,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<90871 bytes>","time":"2026-03-06T19:21:43.699789668Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1084,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-15985952219342:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-15985952219342%3Amatrix.theocloud.dev","duration":2.108187,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:43.702244971Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1085,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/iLcAYsdLUclRhniOCaLyZhkX?user_id=%40whatsapp_lid-15985952219342%3Amatrix.theocloud.dev","duration":2.080041,"status_code":200,"response_length":90871,"response_mime":"image/jpeg","time":"2026-03-06T19:21:43.704461972Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1086,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-15985952219342:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-15985952219342%3Amatrix.theocloud.dev","duration":4.477793,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iLcAYsdLUclRhniOCaLyZhkX"},"time":"2026-03-06T19:21:43.709185889Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"251826901377165@lid","time":"2026-03-06T19:21:43.709892762Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1087,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-251826901377165%3Amatrix.theocloud.dev","duration":3.219516,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-251826901377165","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:43.71339053Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1088,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251826901377165:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-251826901377165%3Amatrix.theocloud.dev","duration":2.178797,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:43.715878449Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1089,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251826901377165:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-251826901377165%3Amatrix.theocloud.dev","duration":6.606235,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Johannes (WA)"},"time":"2026-03-06T19:21:43.722660337Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:43.723395217Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:43.878272061Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1090,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251826901377165:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-251826901377165%3Amatrix.theocloud.dev","duration":2.362413,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:43.881004847Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"58927135879305@lid","time":"2026-03-06T19:21:43.881715002Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1091,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-58927135879305%3Amatrix.theocloud.dev","duration":3.616499,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-58927135879305","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:43.885591315Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1092,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-58927135879305:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-58927135879305%3Amatrix.theocloud.dev","duration":2.148625,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:43.888065265Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1093,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-58927135879305:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-58927135879305%3Amatrix.theocloud.dev","duration":6.627118,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tino (WA)"},"time":"2026-03-06T19:21:43.894849737Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:43.895609481Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:44.203708048Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1094,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-58927135879305%3Amatrix.theocloud.dev","duration":61.503608,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55766 bytes>","time":"2026-03-06T19:21:44.275162354Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1095,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-58927135879305:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-58927135879305%3Amatrix.theocloud.dev","duration":2.099666,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:44.277606622Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1096,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/nLxSezpeCzyHdxKqCzqAuJSt?user_id=%40whatsapp_lid-58927135879305%3Amatrix.theocloud.dev","duration":2.345022,"status_code":200,"response_length":55766,"response_mime":"image/jpeg","time":"2026-03-06T19:21:44.28010369Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1097,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-58927135879305:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-58927135879305%3Amatrix.theocloud.dev","duration":4.657078,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nLxSezpeCzyHdxKqCzqAuJSt"},"time":"2026-03-06T19:21:44.28501262Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"6000186790141@lid","time":"2026-03-06T19:21:44.285774528Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1098,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-6000186790141%3Amatrix.theocloud.dev","duration":3.187179,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-6000186790141","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:44.289228994Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1099,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-6000186790141:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-6000186790141%3Amatrix.theocloud.dev","duration":2.064256,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:21:44.291670747Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1100,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-6000186790141:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-6000186790141%3Amatrix.theocloud.dev","duration":6.44008,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Filippo (WA)"},"time":"2026-03-06T19:21:44.298271884Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:44.299066129Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:44.448197823Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1101,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-6000186790141:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-6000186790141%3Amatrix.theocloud.dev","duration":2.296273,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:44.450846798Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1102,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":3.670068,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-80358888464591","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:44.455439272Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1103,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80358888464591:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":2.572778,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:44.458378721Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1104,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80358888464591:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":6.880925,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Karl (WA)"},"time":"2026-03-06T19:21:44.465453597Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:44.466194833Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:44.617031793Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1105,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":72.237936,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24813 bytes>","time":"2026-03-06T19:21:44.700750811Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1106,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80358888464591:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":2.019208,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:44.703063566Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1107,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/QCXIwVHDANbLEfrPboJQeaoY?user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":2.819041,"status_code":200,"response_length":24813,"response_mime":"image/jpeg","time":"2026-03-06T19:21:44.706014748Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1108,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80358888464591:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":4.18732,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QCXIwVHDANbLEfrPboJQeaoY"},"time":"2026-03-06T19:21:44.710512307Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1109,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915157563910%3Amatrix.theocloud.dev","duration":2.731389,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915157563910","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:44.7141404Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1110,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157563910:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915157563910%3Amatrix.theocloud.dev","duration":1.846628,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:44.716235667Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157563910:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915157563910%3Amatrix.theocloud.dev","duration":5.627257,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Karl (WA)"},"time":"2026-03-06T19:21:44.722040322Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:44.722636076Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:44.886476539Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1112,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915157563910%3Amatrix.theocloud.dev","duration":70.956261,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24813 bytes>","time":"2026-03-06T19:21:44.969597078Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1113,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157563910:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915157563910%3Amatrix.theocloud.dev","duration":1.994764,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:44.97184502Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1114,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/yiiQvmVPiVAehliwTwegeVTU?user_id=%40whatsapp_4915157563910%3Amatrix.theocloud.dev","duration":2.619432,"status_code":200,"response_length":24813,"response_mime":"image/jpeg","time":"2026-03-06T19:21:44.974545888Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157563910:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915157563910%3Amatrix.theocloud.dev","duration":4.360878,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/yiiQvmVPiVAehliwTwegeVTU"},"time":"2026-03-06T19:21:44.979126908Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"80358888464591@lid","alternate_jid":"4915157563910@s.whatsapp.net","time":"2026-03-06T19:21:44.979690395Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"83017473200255@lid","time":"2026-03-06T19:21:44.980037441Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1116,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-83017473200255%3Amatrix.theocloud.dev","duration":2.916541,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-83017473200255","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:44.983225039Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1117,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-83017473200255:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-83017473200255%3Amatrix.theocloud.dev","duration":1.855358,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:44.985420459Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-83017473200255:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-83017473200255%3Amatrix.theocloud.dev","duration":5.756675,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Boris ✞ (WA)"},"time":"2026-03-06T19:21:44.991357326Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:44.991910756Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:45.150224814Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1119,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-83017473200255%3Amatrix.theocloud.dev","duration":62.422592,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<25339 bytes>","time":"2026-03-06T19:21:45.246937974Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1120,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-83017473200255:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-83017473200255%3Amatrix.theocloud.dev","duration":2.080529,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:45.249352Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1121,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/rosdzScQUTpuhsaMXCybTXxz?user_id=%40whatsapp_lid-83017473200255%3Amatrix.theocloud.dev","duration":2.768406,"status_code":200,"response_length":25339,"response_mime":"image/jpeg","time":"2026-03-06T19:21:45.25223816Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1122,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-83017473200255:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-83017473200255%3Amatrix.theocloud.dev","duration":4.303607,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rosdzScQUTpuhsaMXCybTXxz"},"time":"2026-03-06T19:21:45.256788449Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1123,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":2.959004,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-101816561881152","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:45.26074969Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1124,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101816561881152:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":2.099666,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:45.263167069Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1125,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101816561881152:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":6.082348,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"JH (WA)"},"time":"2026-03-06T19:21:45.269432473Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:45.270147518Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:45.435256734Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1126,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":71.940269,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61884 bytes>","time":"2026-03-06T19:21:45.587563314Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1127,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101816561881152:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":1.463334,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:45.589383891Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1128,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/URHQSzcZOkoAwYOvSLwKknXR?user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":1.685991,"status_code":200,"response_length":61884,"response_mime":"image/jpeg","time":"2026-03-06T19:21:45.591200557Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1129,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101816561881152:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":3.341112,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/URHQSzcZOkoAwYOvSLwKknXR"},"time":"2026-03-06T19:21:45.59479785Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1130,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915782942616%3Amatrix.theocloud.dev","duration":2.214208,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915782942616","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:45.597997181Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1131,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915782942616:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915782942616%3Amatrix.theocloud.dev","duration":1.337409,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:45.599673185Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915782942616:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915782942616%3Amatrix.theocloud.dev","duration":4.05916,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"JH (WA)"},"time":"2026-03-06T19:21:45.603900804Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:45.60465943Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:45.782623872Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1133,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915782942616%3Amatrix.theocloud.dev","duration":74.809247,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61884 bytes>","time":"2026-03-06T19:21:45.871976572Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1134,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915782942616:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915782942616%3Amatrix.theocloud.dev","duration":2.105324,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:45.874371461Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1135,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XDzeSzEsNseHzMsuZdEuVBlU?user_id=%40whatsapp_4915782942616%3Amatrix.theocloud.dev","duration":2.140175,"status_code":200,"response_length":61884,"response_mime":"image/jpeg","time":"2026-03-06T19:21:45.876632044Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1136,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915782942616:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915782942616%3Amatrix.theocloud.dev","duration":4.06761,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XDzeSzEsNseHzMsuZdEuVBlU"},"time":"2026-03-06T19:21:45.880989499Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"101816561881152@lid","alternate_jid":"4915782942616@s.whatsapp.net","time":"2026-03-06T19:21:45.881551101Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"10501648023786@lid","time":"2026-03-06T19:21:45.881903105Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1137,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-10501648023786%3Amatrix.theocloud.dev","duration":2.789288,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-10501648023786","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:45.884950949Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1138,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-10501648023786:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-10501648023786%3Amatrix.theocloud.dev","duration":1.875613,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:45.887136871Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-10501648023786:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-10501648023786%3Amatrix.theocloud.dev","duration":5.104628,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yazan Elahmad (WA)"},"time":"2026-03-06T19:21:45.892447952Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:45.893178571Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:46.408814657Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1140,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-10501648023786%3Amatrix.theocloud.dev","duration":74.093294,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<59233 bytes>","time":"2026-03-06T19:21:46.495987441Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1141,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-10501648023786:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-10501648023786%3Amatrix.theocloud.dev","duration":2.092402,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:46.498371994Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1142,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YQfNsGhECvAeLjCqttlAujqu?user_id=%40whatsapp_lid-10501648023786%3Amatrix.theocloud.dev","duration":2.78866,"status_code":200,"response_length":59233,"response_mime":"image/jpeg","time":"2026-03-06T19:21:46.501309417Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1143,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-10501648023786:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-10501648023786%3Amatrix.theocloud.dev","duration":4.228317,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YQfNsGhECvAeLjCqttlAujqu"},"time":"2026-03-06T19:21:46.505882615Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1144,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-231584770842851%3Amatrix.theocloud.dev","duration":2.946364,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-231584770842851","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:46.509770382Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1145,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-231584770842851:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-231584770842851%3Amatrix.theocloud.dev","duration":1.96997,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:46.512058273Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1146,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-231584770842851:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-231584770842851%3Amatrix.theocloud.dev","duration":5.332662,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Fiona (WA)"},"time":"2026-03-06T19:21:46.517500657Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:46.518196635Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:46.674937357Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1147,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-231584770842851:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-231584770842851%3Amatrix.theocloud.dev","duration":2.54086,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:46.677815834Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1148,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915224432375%3Amatrix.theocloud.dev","duration":3.484567,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915224432375","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:46.682155689Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1149,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915224432375:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915224432375%3Amatrix.theocloud.dev","duration":2.096873,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:46.684626357Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1150,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915224432375:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915224432375%3Amatrix.theocloud.dev","duration":6.185296,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Fiona (WA)"},"time":"2026-03-06T19:21:46.69097229Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:46.69168077Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:46.846779083Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1151,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915224432375:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915224432375%3Amatrix.theocloud.dev","duration":2.506497,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:46.849625502Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"231584770842851@lid","alternate_jid":"4915224432375@s.whatsapp.net","time":"2026-03-06T19:21:46.850057616Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"281144599826466@lid","time":"2026-03-06T19:21:46.850422052Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1152,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-281144599826466%3Amatrix.theocloud.dev","duration":3.279721,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-281144599826466","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:46.853959002Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1153,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-281144599826466:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-281144599826466%3Amatrix.theocloud.dev","duration":2.070682,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:46.856380431Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1154,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-281144599826466:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-281144599826466%3Amatrix.theocloud.dev","duration":6.192978,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nikhil (WA)"},"time":"2026-03-06T19:21:46.862730275Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:46.863447973Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:47.028299611Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1155,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-281144599826466%3Amatrix.theocloud.dev","duration":76.128008,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<82001 bytes>","time":"2026-03-06T19:21:47.119941389Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1156,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-281144599826466:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-281144599826466%3Amatrix.theocloud.dev","duration":2.392933,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:47.122714125Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1157,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/vNioNwkLlMFxLyCxhadABOHh?user_id=%40whatsapp_lid-281144599826466%3Amatrix.theocloud.dev","duration":2.400406,"status_code":200,"response_length":82001,"response_mime":"image/jpeg","time":"2026-03-06T19:21:47.125251771Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1158,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-281144599826466:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-281144599826466%3Amatrix.theocloud.dev","duration":4.510759,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vNioNwkLlMFxLyCxhadABOHh"},"time":"2026-03-06T19:21:47.130099938Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917682729019@s.whatsapp.net","time":"2026-03-06T19:21:47.130946496Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1159,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917682729019%3Amatrix.theocloud.dev","duration":3.059228,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917682729019","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:47.134276363Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1160,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917682729019:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917682729019%3Amatrix.theocloud.dev","duration":1.874495,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:47.136532894Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1161,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917682729019:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917682729019%3Amatrix.theocloud.dev","duration":6.08179,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917682729019 (WA)"},"time":"2026-03-06T19:21:47.142776928Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:47.143561395Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:47.300488806Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1162,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917682729019:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917682729019%3Amatrix.theocloud.dev","duration":2.503075,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:47.303363511Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"66709616595045@lid","time":"2026-03-06T19:21:47.304037Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1163,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-66709616595045%3Amatrix.theocloud.dev","duration":3.595756,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-66709616595045","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:47.307874829Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1164,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66709616595045:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66709616595045%3Amatrix.theocloud.dev","duration":2.244519,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:47.310495658Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1165,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66709616595045:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66709616595045%3Amatrix.theocloud.dev","duration":6.221125,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Christian (WA)"},"time":"2026-03-06T19:21:47.316881121Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:47.317632763Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:47.653000801Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1166,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66709616595045:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-66709616595045%3Amatrix.theocloud.dev","duration":2.519628,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:47.655875995Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1167,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-237597657964579%3Amatrix.theocloud.dev","duration":3.570962,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-237597657964579","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:47.660223463Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1168,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-237597657964579:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-237597657964579%3Amatrix.theocloud.dev","duration":2.188715,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:47.662763903Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1169,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-237597657964579:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-237597657964579%3Amatrix.theocloud.dev","duration":6.041701,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Anjo (WA)"},"time":"2026-03-06T19:21:47.668937675Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:47.669457441Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:47.822511333Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1170,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-237597657964579:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-237597657964579%3Amatrix.theocloud.dev","duration":2.844673,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:47.825745656Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1171,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915203580623%3Amatrix.theocloud.dev","duration":3.281885,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915203580623","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:47.829945337Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1172,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915203580623:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915203580623%3Amatrix.theocloud.dev","duration":2.125019,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:47.832404202Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915203580623:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915203580623%3Amatrix.theocloud.dev","duration":6.332733,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Anjo (WA)"},"time":"2026-03-06T19:21:47.838899667Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:47.839605772Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:48.004766881Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1174,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915203580623:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915203580623%3Amatrix.theocloud.dev","duration":2.681801,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:48.007817798Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"237597657964579@lid","alternate_jid":"4915203580623@s.whatsapp.net","time":"2026-03-06T19:21:48.008305017Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"36984131166382@lid","time":"2026-03-06T19:21:48.008706191Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1175,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-36984131166382%3Amatrix.theocloud.dev","duration":3.225802,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-36984131166382","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:48.012197254Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1176,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-36984131166382:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-36984131166382%3Amatrix.theocloud.dev","duration":2.084231,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:48.014626505Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1177,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-36984131166382:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-36984131166382%3Amatrix.theocloud.dev","duration":6.494417,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Dennis Ma (WA)"},"time":"2026-03-06T19:21:48.021278557Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:48.022058135Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:48.193783364Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1178,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-36984131166382:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-36984131166382%3Amatrix.theocloud.dev","duration":2.138359,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:48.196283715Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917671069363@s.whatsapp.net","time":"2026-03-06T19:21:48.196842033Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1179,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917671069363%3Amatrix.theocloud.dev","duration":2.91235,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917671069363","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:48.199966285Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1180,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917671069363:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917671069363%3Amatrix.theocloud.dev","duration":1.685502,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:48.202010077Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1181,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917671069363:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917671069363%3Amatrix.theocloud.dev","duration":4.925063,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Martin Kuhn (WA)"},"time":"2026-03-06T19:21:48.207058272Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:48.207551149Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:48.485549678Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1182,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917671069363:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917671069363%3Amatrix.theocloud.dev","duration":2.473182,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:48.488399031Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1183,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915787360808%3Amatrix.theocloud.dev","duration":3.647509,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915787360808","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:48.492998979Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1184,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915787360808:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915787360808%3Amatrix.theocloud.dev","duration":2.081228,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:48.495424668Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1185,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915787360808:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915787360808%3Amatrix.theocloud.dev","duration":6.211347,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nico (WA)"},"time":"2026-03-06T19:21:48.501795046Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:48.502568758Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:48.660272674Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1186,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915787360808%3Amatrix.theocloud.dev","duration":74.247506,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<94361 bytes>","time":"2026-03-06T19:21:48.862781415Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1187,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915787360808:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915787360808%3Amatrix.theocloud.dev","duration":2.21749,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:48.865384574Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1188,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/mGbeaSgiMJBGJHTXtvHxDltq?user_id=%40whatsapp_4915787360808%3Amatrix.theocloud.dev","duration":2.157217,"status_code":200,"response_length":94361,"response_mime":"image/jpeg","time":"2026-03-06T19:21:48.867668623Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1189,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915787360808:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915787360808%3Amatrix.theocloud.dev","duration":4.364719,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mGbeaSgiMJBGJHTXtvHxDltq"},"time":"2026-03-06T19:21:48.872292876Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1190,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-169187452428542%3Amatrix.theocloud.dev","duration":2.992179,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-169187452428542","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:48.87623044Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1191,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-169187452428542:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-169187452428542%3Amatrix.theocloud.dev","duration":1.900406,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:48.878435498Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1192,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-169187452428542:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-169187452428542%3Amatrix.theocloud.dev","duration":5.673981,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nico (WA)"},"time":"2026-03-06T19:21:48.884276961Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:48.885014704Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:49.050295382Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1193,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-169187452428542%3Amatrix.theocloud.dev","duration":76.459828,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<94361 bytes>","time":"2026-03-06T19:21:49.139855513Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1194,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-169187452428542:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-169187452428542%3Amatrix.theocloud.dev","duration":2.197795,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:49.142433738Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1195,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/udykTnEPHBOgHLTkPsnMTXfX?user_id=%40whatsapp_lid-169187452428542%3Amatrix.theocloud.dev","duration":2.100993,"status_code":200,"response_length":94361,"response_mime":"image/jpeg","time":"2026-03-06T19:21:49.144669248Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1196,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-169187452428542:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-169187452428542%3Amatrix.theocloud.dev","duration":4.695562,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/udykTnEPHBOgHLTkPsnMTXfX"},"time":"2026-03-06T19:21:49.149585091Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915787360808@s.whatsapp.net","alternate_jid":"169187452428542@lid","time":"2026-03-06T19:21:49.150127975Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"8821896405131@lid","time":"2026-03-06T19:21:49.150509383Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1197,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-8821896405131%3Amatrix.theocloud.dev","duration":3.245707,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-8821896405131","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:49.154036275Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1198,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-8821896405131:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-8821896405131%3Amatrix.theocloud.dev","duration":2.207014,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:21:49.156570709Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1199,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-8821896405131:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-8821896405131%3Amatrix.theocloud.dev","duration":6.200521,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Louis (WA)"},"time":"2026-03-06T19:21:49.162947303Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:49.163661719Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:49.329987027Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1200,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-8821896405131:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-8821896405131%3Amatrix.theocloud.dev","duration":2.464661,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:49.332823249Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1201,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-111437372489803%3Amatrix.theocloud.dev","duration":3.535971,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-111437372489803","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:49.337451972Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1202,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-111437372489803:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-111437372489803%3Amatrix.theocloud.dev","duration":2.184105,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:49.339979352Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1203,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-111437372489803:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-111437372489803%3Amatrix.theocloud.dev","duration":6.296974,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Marielle (WA)"},"time":"2026-03-06T19:21:49.346442759Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:49.347222408Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:49.629505198Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1204,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-111437372489803:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-111437372489803%3Amatrix.theocloud.dev","duration":2.583813,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:49.632464412Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1205,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915227785049%3Amatrix.theocloud.dev","duration":3.455234,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915227785049","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:49.63685169Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1206,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915227785049:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915227785049%3Amatrix.theocloud.dev","duration":2.109235,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:49.639279266Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1207,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915227785049:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915227785049%3Amatrix.theocloud.dev","duration":6.319323,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Marielle (WA)"},"time":"2026-03-06T19:21:49.645795753Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:49.646618076Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:49.916250417Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1208,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915227785049:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915227785049%3Amatrix.theocloud.dev","duration":2.557132,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:49.919205371Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"111437372489803@lid","alternate_jid":"4915227785049@s.whatsapp.net","time":"2026-03-06T19:21:49.919696501Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"11373224415308@lid","time":"2026-03-06T19:21:49.92006422Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1209,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-11373224415308%3Amatrix.theocloud.dev","duration":3.58521,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-11373224415308","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:49.923895764Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1210,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-11373224415308:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-11373224415308%3Amatrix.theocloud.dev","duration":2.103508,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:49.926382146Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1211,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-11373224415308:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-11373224415308%3Amatrix.theocloud.dev","duration":6.584514,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Harun (WA)"},"time":"2026-03-06T19:21:49.933140358Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:49.933873352Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:50.081553724Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1212,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-11373224415308:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-11373224415308%3Amatrix.theocloud.dev","duration":2.742494,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:50.084696693Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"177811813859547@lid","time":"2026-03-06T19:21:50.085438836Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1213,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-177811813859547%3Amatrix.theocloud.dev","duration":3.624182,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-177811813859547","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:50.08931466Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1214,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177811813859547:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-177811813859547%3Amatrix.theocloud.dev","duration":2.129279,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:50.091791963Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1215,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177811813859547:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-177811813859547%3Amatrix.theocloud.dev","duration":6.379877,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Junior (WA)"},"time":"2026-03-06T19:21:50.098366489Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:50.099097737Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:50.259268969Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1216,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177811813859547:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-177811813859547%3Amatrix.theocloud.dev","duration":2.640524,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:50.262254304Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"207820683223254@lid","time":"2026-03-06T19:21:50.263041286Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1217,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-207820683223254%3Amatrix.theocloud.dev","duration":3.517254,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-207820683223254","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:50.266820937Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1218,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-207820683223254:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-207820683223254%3Amatrix.theocloud.dev","duration":2.277903,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:50.269403004Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1219,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-207820683223254:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-207820683223254%3Amatrix.theocloud.dev","duration":4.733835,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tuan (WA)"},"time":"2026-03-06T19:21:50.274322689Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:50.275094794Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:50.680096631Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1220,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-207820683223254%3Amatrix.theocloud.dev","duration":73.040563,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<78057 bytes>","time":"2026-03-06T19:21:50.846628183Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1221,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-207820683223254:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-207820683223254%3Amatrix.theocloud.dev","duration":1.830634,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:50.848729386Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1222,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KsgCKZqBmgzTQUlqjzTXEbEt?user_id=%40whatsapp_lid-207820683223254%3Amatrix.theocloud.dev","duration":1.871631,"status_code":200,"response_length":78057,"response_mime":"image/jpeg","time":"2026-03-06T19:21:50.850709412Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1223,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-207820683223254:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-207820683223254%3Amatrix.theocloud.dev","duration":3.879665,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KsgCKZqBmgzTQUlqjzTXEbEt"},"time":"2026-03-06T19:21:50.854803143Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"46462989807759@lid","time":"2026-03-06T19:21:50.855354548Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1224,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-46462989807759%3Amatrix.theocloud.dev","duration":2.88609,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-46462989807759","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:50.858527759Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1225,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-46462989807759:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-46462989807759%3Amatrix.theocloud.dev","duration":1.909836,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:50.860744341Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1226,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-46462989807759:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-46462989807759%3Amatrix.theocloud.dev","duration":6.254579,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jakob (WA)"},"time":"2026-03-06T19:21:50.867155716Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:50.868092928Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:51.237262638Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1227,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-46462989807759%3Amatrix.theocloud.dev","duration":76.559841,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47889 bytes>","time":"2026-03-06T19:21:51.326166252Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1228,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-46462989807759:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-46462989807759%3Amatrix.theocloud.dev","duration":1.624669,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:51.328084189Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1229,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/SdTmOJWpHwJTYoZGTBbbMMFd?user_id=%40whatsapp_lid-46462989807759%3Amatrix.theocloud.dev","duration":2.515437,"status_code":200,"response_length":47889,"response_mime":"image/jpeg","time":"2026-03-06T19:21:51.330749228Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1230,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-46462989807759:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-46462989807759%3Amatrix.theocloud.dev","duration":4.007127,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SdTmOJWpHwJTYoZGTBbbMMFd"},"time":"2026-03-06T19:21:51.334996053Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915234801116@s.whatsapp.net","time":"2026-03-06T19:21:51.335797353Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1231,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915234801116%3Amatrix.theocloud.dev","duration":2.410953,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915234801116","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:51.33849403Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1232,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915234801116:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915234801116%3Amatrix.theocloud.dev","duration":1.328259,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:51.340123729Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1233,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915234801116:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915234801116%3Amatrix.theocloud.dev","duration":3.787892,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"4915234801116 (WA)"},"time":"2026-03-06T19:21:51.344029864Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:51.344755245Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:51.501356562Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1234,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915234801116%3Amatrix.theocloud.dev","duration":71.464433,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47233 bytes>","time":"2026-03-06T19:21:51.58322071Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1235,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915234801116:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915234801116%3Amatrix.theocloud.dev","duration":2.204989,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:51.585805919Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1236,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YmcWsOqdYbfPHjgfqxlxHePX?user_id=%40whatsapp_4915234801116%3Amatrix.theocloud.dev","duration":3.078435,"status_code":200,"response_length":47233,"response_mime":"image/jpeg","time":"2026-03-06T19:21:51.588961949Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1237,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915234801116:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915234801116%3Amatrix.theocloud.dev","duration":4.606931,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YmcWsOqdYbfPHjgfqxlxHePX"},"time":"2026-03-06T19:21:51.593854745Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491776941237@s.whatsapp.net","time":"2026-03-06T19:21:51.594685587Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1238,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491776941237%3Amatrix.theocloud.dev","duration":3.447971,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491776941237","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:51.598392742Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1239,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491776941237:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491776941237%3Amatrix.theocloud.dev","duration":2.104904,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:51.600779949Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1240,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491776941237:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491776941237%3Amatrix.theocloud.dev","duration":6.654566,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Florian C. (WA)"},"time":"2026-03-06T19:21:51.607607304Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:51.608437239Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:51.757053915Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1241,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491776941237%3Amatrix.theocloud.dev","duration":74.268249,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<48376 bytes>","time":"2026-03-06T19:21:51.838521848Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1242,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491776941237:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491776941237%3Amatrix.theocloud.dev","duration":2.214976,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:51.841079959Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1243,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/FduKeBoxrQGKYDklmJNXDuLc?user_id=%40whatsapp_491776941237%3Amatrix.theocloud.dev","duration":2.264145,"status_code":200,"response_length":48376,"response_mime":"image/jpeg","time":"2026-03-06T19:21:51.84347827Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1244,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491776941237:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491776941237%3Amatrix.theocloud.dev","duration":4.746686,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FduKeBoxrQGKYDklmJNXDuLc"},"time":"2026-03-06T19:21:51.848443423Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491791243900@s.whatsapp.net","time":"2026-03-06T19:21:51.84917935Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1245,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491791243900%3Amatrix.theocloud.dev","duration":3.216303,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491791243900","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:51.852668946Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1246,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491791243900:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491791243900%3Amatrix.theocloud.dev","duration":2.117197,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:51.855125157Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1247,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491791243900:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491791243900%3Amatrix.theocloud.dev","duration":6.519491,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491791243900 (WA)"},"time":"2026-03-06T19:21:51.86180752Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:51.862544146Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:52.021787733Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1248,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491791243900:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491791243900%3Amatrix.theocloud.dev","duration":2.496301,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:52.024630311Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1249,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":3.562581,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-220327544094730","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:52.029194499Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1250,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220327544094730:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":2.151978,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:52.031706374Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1251,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220327544094730:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":6.300815,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lisa (WA)"},"time":"2026-03-06T19:21:52.038169153Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:52.038997272Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:52.189021968Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1252,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":75.456335,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<57468 bytes>","time":"2026-03-06T19:21:52.273084678Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1253,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220327544094730:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":1.572009,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:52.275053041Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1254,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BLITLBPIJyUYvSjTlnsMDXhA?user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":1.515506,"status_code":200,"response_length":57468,"response_mime":"image/jpeg","time":"2026-03-06T19:21:52.27665152Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1255,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220327544094730:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":3.607909,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BLITLBPIJyUYvSjTlnsMDXhA"},"time":"2026-03-06T19:21:52.280568829Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1256,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915751114529%3Amatrix.theocloud.dev","duration":2.426458,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915751114529","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:52.283637137Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1257,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751114529:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915751114529%3Amatrix.theocloud.dev","duration":1.415911,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:52.285385567Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1258,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751114529:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915751114529%3Amatrix.theocloud.dev","duration":4.866116,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lisa (WA)"},"time":"2026-03-06T19:21:52.29040827Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:52.290882359Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:52.45682535Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1259,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915751114529%3Amatrix.theocloud.dev","duration":75.946208,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<57468 bytes>","time":"2026-03-06T19:21:52.540850905Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1260,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751114529:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915751114529%3Amatrix.theocloud.dev","duration":2.108676,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:52.543274918Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1261,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/RXIccQjRZdWoZVqHDxMObPbU?user_id=%40whatsapp_4915751114529%3Amatrix.theocloud.dev","duration":2.238792,"status_code":200,"response_length":57468,"response_mime":"image/jpeg","time":"2026-03-06T19:21:52.545656957Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1262,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751114529:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915751114529%3Amatrix.theocloud.dev","duration":4.294597,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RXIccQjRZdWoZVqHDxMObPbU"},"time":"2026-03-06T19:21:52.550182592Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"220327544094730@lid","alternate_jid":"4915751114529@s.whatsapp.net","time":"2026-03-06T19:21:52.550699913Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1263,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":3.053921,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-280664972746828","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:52.554328356Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1264,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-280664972746828:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":1.940076,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:52.55650429Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1265,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-280664972746828:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":8.285102,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Armano 7 (WA)"},"time":"2026-03-06T19:21:52.564967769Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:52.565762363Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:52.724516566Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1266,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-280664972746828:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":2.525145,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:52.727377164Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1267,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915215159414%3Amatrix.theocloud.dev","duration":3.339087,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915215159414","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:52.731571188Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1268,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915215159414:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915215159414%3Amatrix.theocloud.dev","duration":1.935327,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:52.733756341Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1269,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915215159414:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915215159414%3Amatrix.theocloud.dev","duration":5.893774,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Armano 7 (WA)"},"time":"2026-03-06T19:21:52.739792664Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:52.740543048Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:52.893314219Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1270,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915215159414:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915215159414%3Amatrix.theocloud.dev","duration":2.700798,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:52.89640739Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"280664972746828@lid","alternate_jid":"4915215159414@s.whatsapp.net","time":"2026-03-06T19:21:52.896902362Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917655219065@s.whatsapp.net","time":"2026-03-06T19:21:52.897291174Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1271,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917655219065%3Amatrix.theocloud.dev","duration":3.740679,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917655219065","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:52.901384276Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1272,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655219065:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917655219065%3Amatrix.theocloud.dev","duration":2.206874,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:52.90400727Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1273,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655219065:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917655219065%3Amatrix.theocloud.dev","duration":6.530526,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":". (WA)"},"time":"2026-03-06T19:21:52.910706395Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:52.911473821Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:53.07775883Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1274,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655219065:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917655219065%3Amatrix.theocloud.dev","duration":2.641782,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:53.080770915Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917672322250@s.whatsapp.net","time":"2026-03-06T19:21:53.081525002Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1275,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917672322250%3Amatrix.theocloud.dev","duration":3.310591,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917672322250","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:53.085101901Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1276,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672322250:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917672322250%3Amatrix.theocloud.dev","duration":2.150512,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:53.08758982Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1277,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672322250:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917672322250%3Amatrix.theocloud.dev","duration":6.246478,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Dya (WA)"},"time":"2026-03-06T19:21:53.094018865Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:53.094768202Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:53.257028414Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1278,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672322250:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917672322250%3Amatrix.theocloud.dev","duration":2.560276,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:53.259970307Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917680537380@s.whatsapp.net","time":"2026-03-06T19:21:53.260691847Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1279,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917680537380%3Amatrix.theocloud.dev","duration":3.580531,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917680537380","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:53.264548813Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1280,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680537380:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917680537380%3Amatrix.theocloud.dev","duration":2.088631,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:53.266938953Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1281,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680537380:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917680537380%3Amatrix.theocloud.dev","duration":6.535136,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917680537380 (WA)"},"time":"2026-03-06T19:21:53.273641291Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:53.274427575Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:53.434747081Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1282,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680537380:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917680537380%3Amatrix.theocloud.dev","duration":2.261421,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:53.437363161Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1283,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-56895431819388%3Amatrix.theocloud.dev","duration":2.313384,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-56895431819388","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:53.44041778Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1284,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-56895431819388:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-56895431819388%3Amatrix.theocloud.dev","duration":1.311706,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:53.442044056Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1285,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-56895431819388:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-56895431819388%3Amatrix.theocloud.dev","duration":3.709809,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Razik (WA)"},"time":"2026-03-06T19:21:53.44585318Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:53.44635325Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:53.605805107Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1286,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-56895431819388:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-56895431819388%3Amatrix.theocloud.dev","duration":2.639477,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:53.608771235Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1287,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917632326216%3Amatrix.theocloud.dev","duration":3.539882,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917632326216","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:53.61322626Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1288,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917632326216:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917632326216%3Amatrix.theocloud.dev","duration":2.113984,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:53.615713272Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1289,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917632326216:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917632326216%3Amatrix.theocloud.dev","duration":6.409,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Razik (WA)"},"time":"2026-03-06T19:21:53.622290103Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:53.623076736Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:53.77829839Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1290,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917632326216:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917632326216%3Amatrix.theocloud.dev","duration":2.427715,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:53.781098154Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"56895431819388@lid","alternate_jid":"4917632326216@s.whatsapp.net","time":"2026-03-06T19:21:53.781577411Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1291,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":3.674259,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-65244881764452","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:53.785794344Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1292,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-65244881764452:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":2.086745,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:53.788212701Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1293,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-65244881764452:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":6.531644,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Domi (WA)"},"time":"2026-03-06T19:21:53.794908892Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:53.79570635Z","message":"04012370f49ae01e1263de"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:53.947784267Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1294,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":78.864774,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<127377 bytes>","time":"2026-03-06T19:21:54.040704925Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1295,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-65244881764452:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":2.219934,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:54.043275887Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1296,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/hTULxoVmZmnVBXhcluKJkmwT?user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":2.314082,"status_code":200,"response_length":127377,"response_mime":"image/jpeg","time":"2026-03-06T19:21:54.045684605Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1297,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-65244881764452:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":4.879037,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hTULxoVmZmnVBXhcluKJkmwT"},"time":"2026-03-06T19:21:54.050807461Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1298,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":3.162245,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491736748726","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:54.054915021Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1299,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491736748726:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":2.140174,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:54.057417327Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1300,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491736748726:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":6.190953,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Domi (WA)"},"time":"2026-03-06T19:21:54.06375439Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:54.064304398Z","message":"04012370f49ae01e1263de"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:54.219316455Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1301,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":71.185065,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<127377 bytes>","time":"2026-03-06T19:21:54.299935107Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1302,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491736748726:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":2.337758,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:54.302807926Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1303,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/UekhuwOSCuOveNyLTOPeVYPK?user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":2.373448,"status_code":200,"response_length":127377,"response_mime":"image/jpeg","time":"2026-03-06T19:21:54.305292423Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1304,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491736748726:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":4.499794,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UekhuwOSCuOveNyLTOPeVYPK"},"time":"2026-03-06T19:21:54.310111885Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"65244881764452@lid","alternate_jid":"491736748726@s.whatsapp.net","time":"2026-03-06T19:21:54.310595821Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1305,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":3.062651,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-73950780473356","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:54.314127672Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1306,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73950780473356:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":2.035062,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:54.316427995Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1307,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73950780473356:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":5.895102,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ante Up! (WA)"},"time":"2026-03-06T19:21:54.322468857Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:54.323200803Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:54.481118786Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1308,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":73.334179,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<50181 bytes>","time":"2026-03-06T19:21:54.562480768Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1309,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73950780473356:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":1.610492,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:54.564454159Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1310,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WZEnXkAYyqIGBdQaBhXFowoQ?user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":1.545119,"status_code":200,"response_length":50181,"response_mime":"image/jpeg","time":"2026-03-06T19:21:54.566117451Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1311,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73950780473356:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":4.427647,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WZEnXkAYyqIGBdQaBhXFowoQ"},"time":"2026-03-06T19:21:54.57073018Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1312,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491792104071%3Amatrix.theocloud.dev","duration":2.446153,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491792104071","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:54.574202595Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1313,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792104071:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491792104071%3Amatrix.theocloud.dev","duration":1.499373,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:54.576054042Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1314,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792104071:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491792104071%3Amatrix.theocloud.dev","duration":4.922898,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ante Up! (WA)"},"time":"2026-03-06T19:21:54.58114526Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:54.581910451Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:54.748834237Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1315,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491792104071%3Amatrix.theocloud.dev","duration":73.560957,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<50181 bytes>","time":"2026-03-06T19:21:54.828904347Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1316,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792104071:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491792104071%3Amatrix.theocloud.dev","duration":2.074454,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:54.831251255Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1317,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/eChwIyMrOcdeeWCRhKAXgxSZ?user_id=%40whatsapp_491792104071%3Amatrix.theocloud.dev","duration":2.205058,"status_code":200,"response_length":50181,"response_mime":"image/jpeg","time":"2026-03-06T19:21:54.833589223Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1318,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792104071:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491792104071%3Amatrix.theocloud.dev","duration":4.401665,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/eChwIyMrOcdeeWCRhKAXgxSZ"},"time":"2026-03-06T19:21:54.83819839Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"73950780473356@lid","alternate_jid":"491792104071@s.whatsapp.net","time":"2026-03-06T19:21:54.838717806Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1319,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-221745000792223%3Amatrix.theocloud.dev","duration":3.014949,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-221745000792223","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:54.842413507Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1320,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-221745000792223:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-221745000792223%3Amatrix.theocloud.dev","duration":1.925341,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:54.84458085Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1321,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-221745000792223:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-221745000792223%3Amatrix.theocloud.dev","duration":5.366675,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"tizian. (WA)"},"time":"2026-03-06T19:21:54.850097058Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:54.850833404Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:55.142559559Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1322,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-221745000792223%3Amatrix.theocloud.dev","duration":71.737866,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35461 bytes>","time":"2026-03-06T19:21:55.225865878Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1323,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-221745000792223:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-221745000792223%3Amatrix.theocloud.dev","duration":1.608605,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:55.227822996Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1324,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/oIxDLmVQnqwKJSJbXtyPAiDQ?user_id=%40whatsapp_lid-221745000792223%3Amatrix.theocloud.dev","duration":1.799974,"status_code":200,"response_length":35461,"response_mime":"image/jpeg","time":"2026-03-06T19:21:55.229753994Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1325,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-221745000792223:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-221745000792223%3Amatrix.theocloud.dev","duration":3.631935,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oIxDLmVQnqwKJSJbXtyPAiDQ"},"time":"2026-03-06T19:21:55.233629608Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1326,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915789632172%3Amatrix.theocloud.dev","duration":2.581089,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915789632172","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:55.237230532Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1327,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915789632172:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915789632172%3Amatrix.theocloud.dev","duration":1.47388,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:55.239054461Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1328,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915789632172:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915789632172%3Amatrix.theocloud.dev","duration":4.839646,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"tizian. (WA)"},"time":"2026-03-06T19:21:55.24405237Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:55.244807923Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:55.523555021Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1329,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915789632172%3Amatrix.theocloud.dev","duration":71.418826,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35461 bytes>","time":"2026-03-06T19:21:55.605652651Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1330,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915789632172:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915789632172%3Amatrix.theocloud.dev","duration":2.175515,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:55.608080994Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1331,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/qlFWliaXOrPVGWDCUIjgyPjs?user_id=%40whatsapp_4915789632172%3Amatrix.theocloud.dev","duration":2.9391,"status_code":200,"response_length":35461,"response_mime":"image/jpeg","time":"2026-03-06T19:21:55.611103765Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1332,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915789632172:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915789632172%3Amatrix.theocloud.dev","duration":4.33343,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qlFWliaXOrPVGWDCUIjgyPjs"},"time":"2026-03-06T19:21:55.615712513Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"221745000792223@lid","alternate_jid":"4915789632172@s.whatsapp.net","time":"2026-03-06T19:21:55.61622704Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1333,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":3.060137,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-242661625704624","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:55.619924277Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1334,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242661625704624:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":1.985754,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:55.622207349Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1335,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242661625704624:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":5.84244,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Chris (WA)"},"time":"2026-03-06T19:21:55.628218109Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:55.62903673Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:55.778718081Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1336,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":74.363234,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32434 bytes>","time":"2026-03-06T19:21:55.860893724Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1337,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242661625704624:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":2.301091,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:55.86356491Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1338,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/uqwUMQmMtuKNwqDZtQRUNROn?user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":2.314362,"status_code":200,"response_length":32434,"response_mime":"image/jpeg","time":"2026-03-06T19:21:55.86600373Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1339,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242661625704624:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":4.699752,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uqwUMQmMtuKNwqDZtQRUNROn"},"time":"2026-03-06T19:21:55.871058629Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1340,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491792276137%3Amatrix.theocloud.dev","duration":3.188437,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491792276137","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:55.87521878Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1341,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792276137:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491792276137%3Amatrix.theocloud.dev","duration":2.218328,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:21:55.877776612Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1342,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792276137:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491792276137%3Amatrix.theocloud.dev","duration":6.255418,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Chris (WA)"},"time":"2026-03-06T19:21:55.884209568Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:55.885010588Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:56.045556244Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1343,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491792276137%3Amatrix.theocloud.dev","duration":71.794298,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32434 bytes>","time":"2026-03-06T19:21:56.128189773Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1344,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792276137:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491792276137%3Amatrix.theocloud.dev","duration":2.18229,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:56.130769954Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1345,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/GhPAfJDdLGPFnSRSMjQQFhwB?user_id=%40whatsapp_491792276137%3Amatrix.theocloud.dev","duration":2.147648,"status_code":200,"response_length":32434,"response_mime":"image/jpeg","time":"2026-03-06T19:21:56.133042479Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1346,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792276137:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491792276137%3Amatrix.theocloud.dev","duration":3.520606,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GhPAfJDdLGPFnSRSMjQQFhwB"},"time":"2026-03-06T19:21:56.136759691Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"242661625704624@lid","alternate_jid":"491792276137@s.whatsapp.net","time":"2026-03-06T19:21:56.137108832Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"2864843874519@lid","time":"2026-03-06T19:21:56.137359287Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1347,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-2864843874519%3Amatrix.theocloud.dev","duration":2.391118,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-2864843874519","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:56.139934369Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1348,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2864843874519:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-2864843874519%3Amatrix.theocloud.dev","duration":1.994973,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:21:56.142261022Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1349,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2864843874519:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-2864843874519%3Amatrix.theocloud.dev","duration":6.144578,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tobi (WA)"},"time":"2026-03-06T19:21:56.148587539Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:56.149183223Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:56.308823165Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1350,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-2864843874519%3Amatrix.theocloud.dev","duration":73.184996,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<36841 bytes>","time":"2026-03-06T19:21:56.392850815Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1351,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2864843874519:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-2864843874519%3Amatrix.theocloud.dev","duration":2.050009,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:56.395267006Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1352,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/taEGixkeufEhNrZBFowNzLep?user_id=%40whatsapp_lid-2864843874519%3Amatrix.theocloud.dev","duration":2.786355,"status_code":200,"response_length":36841,"response_mime":"image/jpeg","time":"2026-03-06T19:21:56.398251922Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1353,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2864843874519:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-2864843874519%3Amatrix.theocloud.dev","duration":4.640107,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/taEGixkeufEhNrZBFowNzLep"},"time":"2026-03-06T19:21:56.403251157Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917620408160@s.whatsapp.net","time":"2026-03-06T19:21:56.404038Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1354,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917620408160%3Amatrix.theocloud.dev","duration":3.367582,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917620408160","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:56.40772511Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1355,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620408160:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917620408160%3Amatrix.theocloud.dev","duration":2.184106,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:56.410350688Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1356,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620408160:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917620408160%3Amatrix.theocloud.dev","duration":6.326726,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917620408160 (WA)"},"time":"2026-03-06T19:21:56.416848807Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:56.417599122Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:56.584814848Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1357,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917620408160%3Amatrix.theocloud.dev","duration":70.390609,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<60078 bytes>","time":"2026-03-06T19:21:56.66682273Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1358,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620408160:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917620408160%3Amatrix.theocloud.dev","duration":2.065583,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:56.669247163Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1359,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/JehWMyvxxyWtKVVWfnMEGtHX?user_id=%40whatsapp_4917620408160%3Amatrix.theocloud.dev","duration":2.05378,"status_code":200,"response_length":60078,"response_mime":"image/jpeg","time":"2026-03-06T19:21:56.671465771Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620408160:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917620408160%3Amatrix.theocloud.dev","duration":3.976955,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JehWMyvxxyWtKVVWfnMEGtHX"},"time":"2026-03-06T19:21:56.675702329Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1361,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917647781821%3Amatrix.theocloud.dev","duration":2.71344,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917647781821","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:56.679454532Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1362,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917647781821:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917647781821%3Amatrix.theocloud.dev","duration":1.805631,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:56.681627393Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1363,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917647781821:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917647781821%3Amatrix.theocloud.dev","duration":5.624114,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"andac (WA)"},"time":"2026-03-06T19:21:56.68740949Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:56.68814828Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:56.842872658Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1364,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917647781821%3Amatrix.theocloud.dev","duration":75.072691,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35125 bytes>","time":"2026-03-06T19:21:56.929367064Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1365,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917647781821:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917647781821%3Amatrix.theocloud.dev","duration":2.089609,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:56.931813707Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1366,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ELryHeXyYAaZzhyBXPiviISk?user_id=%40whatsapp_4917647781821%3Amatrix.theocloud.dev","duration":2.131026,"status_code":200,"response_length":35125,"response_mime":"image/jpeg","time":"2026-03-06T19:21:56.934083788Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1367,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917647781821:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917647781821%3Amatrix.theocloud.dev","duration":4.564258,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ELryHeXyYAaZzhyBXPiviISk"},"time":"2026-03-06T19:21:56.938999003Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1368,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":3.192627,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-275883097071617","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:56.943080931Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1369,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-275883097071617:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":2.14639,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:56.945647423Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1370,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-275883097071617:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":6.100367,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"andac (WA)"},"time":"2026-03-06T19:21:56.951904307Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:56.952636183Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:57.107625891Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1371,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":71.519329,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35125 bytes>","time":"2026-03-06T19:21:57.192165274Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1372,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-275883097071617:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":1.99644,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:57.194528805Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1373,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/sCTgPORBQRLSQYTETlrunLuQ?user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":2.15547,"status_code":200,"response_length":35125,"response_mime":"image/jpeg","time":"2026-03-06T19:21:57.196821724Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1374,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-275883097071617:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":4.192348,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sCTgPORBQRLSQYTETlrunLuQ"},"time":"2026-03-06T19:21:57.201252514Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917647781821@s.whatsapp.net","alternate_jid":"275883097071617@lid","time":"2026-03-06T19:21:57.201781429Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1375,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-191783325712532%3Amatrix.theocloud.dev","duration":3.011107,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-191783325712532","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:57.205435923Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1376,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-191783325712532:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-191783325712532%3Amatrix.theocloud.dev","duration":1.917867,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:57.207691477Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-191783325712532:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-191783325712532%3Amatrix.theocloud.dev","duration":5.641295,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Merle Lea Luttropp (WA)"},"time":"2026-03-06T19:21:57.213445846Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:57.21391791Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:57.373842947Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1378,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-191783325712532%3Amatrix.theocloud.dev","duration":77.086172,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<50247 bytes>","time":"2026-03-06T19:21:57.46396859Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1379,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-191783325712532:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-191783325712532%3Amatrix.theocloud.dev","duration":2.259116,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:57.466614841Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1380,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/fdeTsjNRYDPfSVWauhNnyKUu?user_id=%40whatsapp_lid-191783325712532%3Amatrix.theocloud.dev","duration":2.165877,"status_code":200,"response_length":50247,"response_mime":"image/jpeg","time":"2026-03-06T19:21:57.468892745Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1381,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-191783325712532:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-191783325712532%3Amatrix.theocloud.dev","duration":4.629491,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fdeTsjNRYDPfSVWauhNnyKUu"},"time":"2026-03-06T19:21:57.47379043Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1382,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917641110808%3Amatrix.theocloud.dev","duration":3.423526,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917641110808","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:57.478166672Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1383,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641110808:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641110808%3Amatrix.theocloud.dev","duration":2.082974,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:57.480601162Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1384,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641110808:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641110808%3Amatrix.theocloud.dev","duration":6.094501,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Merle Lea Luttropp (WA)"},"time":"2026-03-06T19:21:57.486850713Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:57.487556818Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:57.673145654Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1385,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917641110808%3Amatrix.theocloud.dev","duration":71.867284,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<50247 bytes>","time":"2026-03-06T19:21:57.752980885Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1386,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641110808:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917641110808%3Amatrix.theocloud.dev","duration":2.301161,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:57.755649346Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1387,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/AuuNEdRZnQmoKCZoaSuRTMFb?user_id=%40whatsapp_4917641110808%3Amatrix.theocloud.dev","duration":2.170138,"status_code":200,"response_length":50247,"response_mime":"image/jpeg","time":"2026-03-06T19:21:57.757937377Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1388,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641110808:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917641110808%3Amatrix.theocloud.dev","duration":5.316738,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AuuNEdRZnQmoKCZoaSuRTMFb"},"time":"2026-03-06T19:21:57.763499471Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"191783325712532@lid","alternate_jid":"4917641110808@s.whatsapp.net","time":"2026-03-06T19:21:57.764034253Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"228500967542864@lid","time":"2026-03-06T19:21:57.764364257Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1389,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-228500967542864%3Amatrix.theocloud.dev","duration":3.207294,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-228500967542864","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:57.767824659Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1390,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-228500967542864:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-228500967542864%3Amatrix.theocloud.dev","duration":1.885111,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:57.770036352Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1391,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-228500967542864:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-228500967542864%3Amatrix.theocloud.dev","duration":5.503077,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Imo (WA)"},"time":"2026-03-06T19:21:57.775708378Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:57.776500179Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:57.947533131Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1392,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-228500967542864:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-228500967542864%3Amatrix.theocloud.dev","duration":2.542117,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:57.950383461Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"40570445631616@lid","time":"2026-03-06T19:21:57.951109331Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1393,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-40570445631616%3Amatrix.theocloud.dev","duration":3.380712,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-40570445631616","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:57.954741126Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1394,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40570445631616:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-40570445631616%3Amatrix.theocloud.dev","duration":2.152536,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:57.957195451Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1395,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40570445631616:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-40570445631616%3Amatrix.theocloud.dev","duration":6.170978,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nick (WA)"},"time":"2026-03-06T19:21:57.963522876Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:57.964255171Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:58.120787484Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1396,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40570445631616:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-40570445631616%3Amatrix.theocloud.dev","duration":2.58472,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:58.123671059Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915224432375@s.whatsapp.net","alternate_jid":"231584770842851@lid","time":"2026-03-06T19:21:58.124173574Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915233687713@s.whatsapp.net","time":"2026-03-06T19:21:58.124534169Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1397,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915233687713%3Amatrix.theocloud.dev","duration":3.694373,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915233687713","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:58.128494502Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1398,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915233687713:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915233687713%3Amatrix.theocloud.dev","duration":2.159242,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:58.130964262Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1399,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915233687713:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915233687713%3Amatrix.theocloud.dev","duration":6.411445,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mohammed Chahrour (WA)"},"time":"2026-03-06T19:21:58.137546541Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:58.138260957Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:58.298542329Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1400,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915233687713%3Amatrix.theocloud.dev","duration":72.420782,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<67403 bytes>","time":"2026-03-06T19:21:58.386356125Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1401,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915233687713:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915233687713%3Amatrix.theocloud.dev","duration":1.963055,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:58.388647368Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1402,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/uoKPPdTMErjqgSNzQPXAUZNq?user_id=%40whatsapp_4915233687713%3Amatrix.theocloud.dev","duration":2.132143,"status_code":200,"response_length":67403,"response_mime":"image/jpeg","time":"2026-03-06T19:21:58.390871633Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1403,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915233687713:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915233687713%3Amatrix.theocloud.dev","duration":4.356058,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uoKPPdTMErjqgSNzQPXAUZNq"},"time":"2026-03-06T19:21:58.395390773Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1404,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917610305000%3Amatrix.theocloud.dev","duration":2.927506,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917610305000","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:58.398997914Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1405,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917610305000:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917610305000%3Amatrix.theocloud.dev","duration":1.9164,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:58.401213308Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1406,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917610305000:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917610305000%3Amatrix.theocloud.dev","duration":5.341602,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vivian (WA)"},"time":"2026-03-06T19:21:58.406666448Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:58.40711274Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:58.789256338Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1407,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917610305000%3Amatrix.theocloud.dev","duration":75.388099,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<103432 bytes>","time":"2026-03-06T19:21:58.877614204Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1408,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917610305000:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917610305000%3Amatrix.theocloud.dev","duration":2.303256,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:58.880268697Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1409,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/DwaDNrDQNrfnkriZbATCtiSv?user_id=%40whatsapp_4917610305000%3Amatrix.theocloud.dev","duration":2.132911,"status_code":200,"response_length":103432,"response_mime":"image/jpeg","time":"2026-03-06T19:21:58.882551559Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1410,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917610305000:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917610305000%3Amatrix.theocloud.dev","duration":4.560836,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DwaDNrDQNrfnkriZbATCtiSv"},"time":"2026-03-06T19:21:58.887316125Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1411,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-25696839700643%3Amatrix.theocloud.dev","duration":3.089121,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-25696839700643","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:58.891310121Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1412,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25696839700643:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-25696839700643%3Amatrix.theocloud.dev","duration":2.075291,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:21:58.893737348Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1413,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25696839700643:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-25696839700643%3Amatrix.theocloud.dev","duration":6.219658,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vivian (WA)"},"time":"2026-03-06T19:21:58.900127351Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:58.900892682Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:59.056881412Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1414,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-25696839700643%3Amatrix.theocloud.dev","duration":74.810852,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<103432 bytes>","time":"2026-03-06T19:21:59.140487913Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1415,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25696839700643:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-25696839700643%3Amatrix.theocloud.dev","duration":2.378895,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:59.143239138Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1416,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/JhBKMZmGhSHRJjkUryvmpKGs?user_id=%40whatsapp_lid-25696839700643%3Amatrix.theocloud.dev","duration":2.459214,"status_code":200,"response_length":103432,"response_mime":"image/jpeg","time":"2026-03-06T19:21:59.146113005Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1417,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25696839700643:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-25696839700643%3Amatrix.theocloud.dev","duration":5.55071,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JhBKMZmGhSHRJjkUryvmpKGs"},"time":"2026-03-06T19:21:59.1520241Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917610305000@s.whatsapp.net","alternate_jid":"25696839700643@lid","time":"2026-03-06T19:21:59.152615873Z","message":"Synced alternate ghost with info"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":801,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1910_955_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30003.546449,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:21:59.152866327Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1419,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917636343979%3Amatrix.theocloud.dev","duration":3.761282,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917636343979","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:59.159259753Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1420,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917636343979:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917636343979%3Amatrix.theocloud.dev","duration":2.331473,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:59.161995472Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1421,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917636343979:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917636343979%3Amatrix.theocloud.dev","duration":6.774555,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":". (WA)"},"time":"2026-03-06T19:21:59.168925146Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:59.169670083Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:59.326952291Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1422,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917636343979%3Amatrix.theocloud.dev","duration":71.038256,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26038 bytes>","time":"2026-03-06T19:21:59.407993139Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1423,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917636343979:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917636343979%3Amatrix.theocloud.dev","duration":1.797459,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:59.410054951Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1424,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VBFsZZqXbjKwAhDcvtRejmCi?user_id=%40whatsapp_4917636343979%3Amatrix.theocloud.dev","duration":1.635635,"status_code":200,"response_length":26038,"response_mime":"image/jpeg","time":"2026-03-06T19:21:59.411790599Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1425,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917636343979:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917636343979%3Amatrix.theocloud.dev","duration":3.601065,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VBFsZZqXbjKwAhDcvtRejmCi"},"time":"2026-03-06T19:21:59.415541894Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:59.416270907Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:59.572045781Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917636343979@s.whatsapp.net","alternate_jid":"54975749202069@lid","time":"2026-03-06T19:21:59.572403024Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1426,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":3.738234,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917641870516","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:59.576660954Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1427,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641870516:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":2.296133,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:21:59.579288488Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1428,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641870516:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":5.880783,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Theo Leuthardt (WA)"},"time":"2026-03-06T19:21:59.585380195Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:59.58609929Z","message":"0401175f321e124c7bf110"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:21:59.74240713Z","message":""} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"create portals from history sync","limit":-1,"conversation_count":27,"login_timestamp":1772824846,"time":"2026-03-06T19:21:59.793427212Z","message":"Creating portals from history sync"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:59.794523176Z","message":""} +{"level":"info","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","time":"2026-03-06T19:21:59.794705325Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4915903048642","time":"2026-03-06T19:21:59.794814697Z","message":"Updating other user ID in DM portal"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1429,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/capabilities?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2.274761,"status_code":200,"response_length":547,"response_mime":"application/json","time":"2026-03-06T19:21:59.798264134Z","message":"Request completed"} +{"level":"debug","transaction_id":"1228","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:21:59.858581472Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1228","time":"2026-03-06T19:21:59.85894961Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1431,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":133.995768,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<52399 bytes>","time":"2026-03-06T19:21:59.939654237Z","message":"Request completed"} +{"level":"debug","transaction_id":"1229","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:21:59.945382276Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1229","time":"2026-03-06T19:21:59.945642019Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1432,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641870516:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":6.337482,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:21:59.946365654Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1433,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":5.741309,"status_code":200,"response_length":52399,"response_mime":"image/jpeg","time":"2026-03-06T19:21:59.952241479Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1434,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641870516:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":8.832944,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS"},"time":"2026-03-06T19:21:59.961316496Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1418,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1910_955_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":813.069602,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:21:59.966450527Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:21:59.966736","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:21:59.966757553Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:21:59.966736","time":"2026-03-06T19:21:59.966950737Z","message":"Finished handling device list changes"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1435,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":7.107283,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-195790463058158","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:21:59.96913575Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1437,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-195790463058158:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":3.03681,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:21:59.972552361Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1438,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-195790463058158:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":15.954405,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Theo Leuthardt (WA)"},"time":"2026-03-06T19:21:59.988654483Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:21:59.989421839Z","message":"0401175f321e124c7bf110"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.011703529Z","message":"admin_addall_member_share"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:00.012283708Z","message":"Unknown element in group node 120363163455706585@g.us: all_member_share"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:00.012369404Z","message":"Unknown element in group node 120363163455706585@g.us: "} +{"level":"info","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","time":"2026-03-06T19:22:00.030696139Z","message":"Creating Matrix room"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.031375704Z","message":""} +{"level":"info","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","time":"2026-03-06T19:22:00.031503934Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"491736748726","time":"2026-03-06T19:22:00.03160332Z","message":"Updating other user ID in DM portal"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.033195373Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1430,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":253.924548,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915903048642@s.whatsapp.net","displayname":"Anastasia (WA)","avatar_url":"mxc://matrix.theocloud.dev/hospTNjwHxazNUQHfktPZToC","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915903048642@s.whatsapp.net","displayname":"Anastasia (WA)","avatar_url":"mxc://matrix.theocloud.dev/hospTNjwHxazNUQHfktPZToC","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Anastasia (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/hospTNjwHxazNUQHfktPZToC"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4915903048642@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:00.053418883Z","message":"Request completed"} +{"level":"info","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","room_id":"!mMUaMjiwvONNjaXkHE:matrix.theocloud.dev","time":"2026-03-06T19:22:00.054204049Z","message":"Matrix room created"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1440,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":17.715407,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:00.072836972Z","message":"Request completed"} +{"level":"debug","transaction_id":"1230","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.075896131Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1230","time":"2026-03-06T19:22:00.076174312Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1441,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":11.60135,"status_code":200,"response_length":329,"response_mime":"application/json","time":"2026-03-06T19:22:00.084871064Z","message":"Request completed"} +{"level":"debug","transaction_id":"1231","content":{"pdu":11,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.090018924Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1231","time":"2026-03-06T19:22:00.090579337Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1442,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":8.913611,"status_code":200,"response_length":478,"response_mime":"application/json","time":"2026-03-06T19:22:00.094390766Z","message":"Request completed"} +{"level":"debug","transaction_id":"1232","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.134867958Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1232","time":"2026-03-06T19:22:00.13517666Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.14431719Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1443,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915903048642:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.494191,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hospTNjwHxazNUQHfktPZToC","displayname":"Anastasia (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:00.173688981Z","message":"Request completed"} +{"level":"debug","transaction_id":"1233","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.191807586Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1233","time":"2026-03-06T19:22:00.19212027Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.217940096Z","message":"all_member_shareadmin_add"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:00.218070282Z","message":"Unknown element in group node 120363192861790277@g.us: all_member_share"} +{"level":"info","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","time":"2026-03-06T19:22:00.219420052Z","message":"Creating Matrix room"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.220366554Z","message":""} +{"level":"info","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","time":"2026-03-06T19:22:00.220401755Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"491628947581","time":"2026-03-06T19:22:00.220453298Z","message":"Updating other user ID in DM portal"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.221313126Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.223248872Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1446,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":12.399297,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491628947581","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.233965391Z","message":"Request completed"} +{"level":"debug","transaction_id":"1234","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.239567923Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1234","time":"2026-03-06T19:22:00.239882632Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1447,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491628947581:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":7.470951,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:00.241869364Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1436,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1912_955_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":296.297117,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:00.263440758Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:00.263723","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:00.263745969Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:00.263723","time":"2026-03-06T19:22:00.263933984Z","message":"Finished handling device list changes"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1448,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491628947581:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":32.405039,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Claudia Leuthardt (WA)"},"time":"2026-03-06T19:22:00.274451103Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.275307857Z","message":"04012338ad0e79efa6c43c"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1444,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":120.426056,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<52399 bytes>","time":"2026-03-06T19:22:00.277959906Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1450,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-195790463058158:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":6.128375,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:00.284874494Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1451,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":3.979679,"status_code":200,"response_length":52399,"response_mime":"image/jpeg","time":"2026-03-06T19:22:00.289018372Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1452,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-195790463058158:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":11.690677,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ"},"time":"2026-03-06T19:22:00.300984228Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917641870516@s.whatsapp.net","alternate_jid":"195790463058158@lid","time":"2026-03-06T19:22:00.301581797Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.30335998Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1453,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-131026634416177%3Amatrix.theocloud.dev","duration":5.689067,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-131026634416177","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.307903425Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1445,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915903048642:matrix.theocloud.dev?user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":141.267739,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hospTNjwHxazNUQHfktPZToC","displayname":"Anastasia (WA)","membership":"join"},"time":"2026-03-06T19:22:00.315514061Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1454,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131026634416177:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-131026634416177%3Amatrix.theocloud.dev","duration":7.735165,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:00.315992131Z","message":"Request completed"} +{"level":"debug","transaction_id":"1235","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.341362243Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1235","time":"2026-03-06T19:22:00.34168687Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1455,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131026634416177:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-131026634416177%3Amatrix.theocloud.dev","duration":39.712978,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Karl (WA)"},"time":"2026-03-06T19:22:00.355907372Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.35667815Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1439,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":360.865819,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491736748726@s.whatsapp.net","displayname":"Domi (WA)","avatar_url":"mxc://matrix.theocloud.dev/UekhuwOSCuOveNyLTOPeVYPK","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491736748726@s.whatsapp.net","displayname":"Domi (WA)","avatar_url":"mxc://matrix.theocloud.dev/UekhuwOSCuOveNyLTOPeVYPK","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Domi (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/UekhuwOSCuOveNyLTOPeVYPK"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!491736748726@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:00.396410824Z","message":"Request completed"} +{"level":"info","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","room_id":"!lZlymPnIGrcecKHucv:matrix.theocloud.dev","time":"2026-03-06T19:22:00.396940298Z","message":"Matrix room created"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1458,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":16.441275,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:00.414201031Z","message":"Request completed"} +{"level":"debug","transaction_id":"1236","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.418166043Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1236","time":"2026-03-06T19:22:00.418473768Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1459,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":9.739496,"status_code":200,"response_length":329,"response_mime":"application/json","time":"2026-03-06T19:22:00.424473912Z","message":"Request completed"} +{"level":"debug","transaction_id":"1237","content":{"pdu":11,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.435610182Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1237","time":"2026-03-06T19:22:00.436011426Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1457,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":119.374162,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<29690 bytes>","time":"2026-03-06T19:22:00.437975039Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.438979929Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1460,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":18.411524,"status_code":200,"response_length":478,"response_mime":"application/json","time":"2026-03-06T19:22:00.443494599Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1461,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-111918626934878%3Amatrix.theocloud.dev","duration":8.745432,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-111918626934878","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.447984894Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1463,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-111918626934878:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-111918626934878%3Amatrix.theocloud.dev","duration":7.261565,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:00.455580444Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1456,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":143.255518,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:00.459801428Z","message":"Request completed"} +{"level":"debug","transaction_id":"1238","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.476476744Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1238","time":"2026-03-06T19:22:00.476703102Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1464,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-111918626934878:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-111918626934878%3Amatrix.theocloud.dev","duration":36.206619,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917631251200 (WA)"},"time":"2026-03-06T19:22:00.492020337Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.492846291Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.502957766Z","message":"Hier teilen wir Fotos & Videos von unseren Trainings, Fortschritten und Events.all_member_addall_member_share"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:00.503265561Z","message":"Unknown element in group node 120363400918258753@g.us: all_member_share"} +{"level":"info","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","time":"2026-03-06T19:22:00.504858731Z","message":"Creating Matrix room"} +{"level":"info","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","time":"2026-03-06T19:22:00.505676374Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"491637362958","time":"2026-03-06T19:22:00.505778972Z","message":"Updating other user ID in DM portal"} +{"level":"info","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","time":"2026-03-06T19:22:00.506458397Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"491731828379","time":"2026-03-06T19:22:00.506562951Z","message":"Updating other user ID in DM portal"} +{"level":"info","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","time":"2026-03-06T19:22:00.507137333Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4917657607100","time":"2026-03-06T19:22:00.507247195Z","message":"Updating other user ID in DM portal"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.511854057Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.514056252Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.514868936Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.515837577Z","message":"Updating ghost info in IfNecessary call"} +{"level":"info","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","time":"2026-03-06T19:22:00.516361464Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4917620338641","time":"2026-03-06T19:22:00.516454982Z","message":"Updating other user ID in DM portal"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.517244269Z","message":""} +{"level":"info","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","time":"2026-03-06T19:22:00.517389401Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4917623702252","time":"2026-03-06T19:22:00.51750953Z","message":"Updating other user ID in DM portal"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1467,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131026634416177:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-131026634416177%3Amatrix.theocloud.dev","duration":6.450137,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:00.520876623Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1468,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":12.744038,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491731828379","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.537181705Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1472,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917695159069%3Amatrix.theocloud.dev","duration":12.388191,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917695159069","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.542600553Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1473,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491731828379:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":7.227481,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:00.544729692Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1474,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695159069:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917695159069%3Amatrix.theocloud.dev","duration":12.002872,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:00.554993214Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1462,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/state/m.room.member/@whatsapp_491736748726:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":145.798683,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UekhuwOSCuOveNyLTOPeVYPK","displayname":"Domi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:00.590422211Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1465,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":141.462948,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:00.601928156Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1475,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491731828379:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":60.987752,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alex (WA)"},"time":"2026-03-06T19:22:00.605928508Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.606833105Z","message":"040123fe0ff86c439c8721"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1476,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695159069:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917695159069%3Amatrix.theocloud.dev","duration":60.607253,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Karl (WA)"},"time":"2026-03-06T19:22:00.615759009Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.616531114Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1479,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":16.88638,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:00.619599073Z","message":"Request completed"} +{"level":"debug","transaction_id":"1239","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.625362382Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1239","time":"2026-03-06T19:22:00.625671154Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1240","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.642523171Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1240","time":"2026-03-06T19:22:00.642802261Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.65960909Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.660234177Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1481,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-111918626934878:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-111918626934878%3Amatrix.theocloud.dev","duration":12.562099,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:00.6731575Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.674103932Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1482,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-70476638453883%3Amatrix.theocloud.dev","duration":18.442883,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-70476638453883","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.692855098Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1483,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70476638453883:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-70476638453883%3Amatrix.theocloud.dev","duration":27.182169,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:00.7203855Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.730263353Z","message":"all_member_addall_member_share"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:00.730471832Z","message":"Unknown element in group node 120363173737697025@g.us: all_member_share"} +{"level":"info","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","time":"2026-03-06T19:22:00.732065981Z","message":"Creating Matrix room"} +{"level":"info","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","time":"2026-03-06T19:22:00.733052013Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4915150515988","time":"2026-03-06T19:22:00.733164529Z","message":"Updating other user ID in DM portal"} +{"level":"info","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","time":"2026-03-06T19:22:00.734299115Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"491783743461","time":"2026-03-06T19:22:00.734410653Z","message":"Updating other user ID in DM portal"} +{"level":"info","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","time":"2026-03-06T19:22:00.73523542Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"491605556877","time":"2026-03-06T19:22:00.735312875Z","message":"Updating other user ID in DM portal"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1477,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":150.281853,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45643 bytes>","time":"2026-03-06T19:22:00.735919943Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.738259518Z","message":""} +{"level":"debug","transaction_id":"1241","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.742753026Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1241","time":"2026-03-06T19:22:00.742995238Z","message":"Finished dispatching events from transaction"} +{"level":"info","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","time":"2026-03-06T19:22:00.743885657Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4915735701057","time":"2026-03-06T19:22:00.743965347Z","message":"Updating other user ID in DM portal"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.747530791Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.747530791Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.75016049Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.750792283Z","message":"Updating ghost info in IfNecessary call"} +{"level":"info","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","time":"2026-03-06T19:22:00.753963259Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4915234825973","time":"2026-03-06T19:22:00.754062016Z","message":"Updating other user ID in DM portal"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.754882732Z","message":""} +{"level":"info","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","time":"2026-03-06T19:22:00.754979184Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4917680834617","time":"2026-03-06T19:22:00.755063623Z","message":"Updating other user ID in DM portal"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.756023883Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1485,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":13.218616,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491783743461","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.761018649Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1486,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":14.510278,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-27956059590853","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.762417169Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1488,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":15.07565,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915735701057","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.766100647Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1489,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":15.888963,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491605556877","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.77039713Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1490,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":15.958874,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917680834617","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.772202202Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.772728184Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.775063079Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1492,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783743461:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":14.329037,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:00.775682439Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1493,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-27956059590853:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":14.902442,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:00.777601983Z","message":"Request completed"} +{"level":"debug","transaction_id":"1242","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.779100098Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1242","time":"2026-03-06T19:22:00.779620004Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1494,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735701057:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":14.427095,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:00.780826248Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1495,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491605556877:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":14.963973,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:00.785677069Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1496,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680834617:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":15.384912,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:00.787861663Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1497,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695159069:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917695159069%3Amatrix.theocloud.dev","duration":16.780987,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:00.789724495Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"131026634416177@lid","alternate_jid":"4917695159069@s.whatsapp.net","time":"2026-03-06T19:22:00.790276528Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"168212561981526@lid","alt_jid":"4917672322250@s.whatsapp.net","source_push_name":"Dya Singh","alt_push_name":"Dya","time":"2026-03-06T19:22:00.790696559Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1503,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-168212561981526%3Amatrix.theocloud.dev","duration":13.812205,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-168212561981526","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:00.804829269Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1484,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70476638453883:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-70476638453883%3Amatrix.theocloud.dev","duration":87.45313,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mumen Moawia (WA)"},"time":"2026-03-06T19:22:00.808028531Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.808828783Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1505,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-168212561981526:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-168212561981526%3Amatrix.theocloud.dev","duration":10.636689,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:00.81583675Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.844115721Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1498,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783743461:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":79.408635,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vitali (WA)"},"time":"2026-03-06T19:22:00.855239838Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1499,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-27956059590853:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":77.97687,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alex (WA)"},"time":"2026-03-06T19:22:00.8557793Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.855922197Z","message":"040122ede527e7f5150b5d"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.856266309Z","message":"040123fe0ff86c439c8721"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1500,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735701057:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":75.887191,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Bes (WA)"},"time":"2026-03-06T19:22:00.856850819Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.857297599Z","message":"040121b11c61dcfed13771"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1501,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491605556877:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":81.802337,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vale (WA)"},"time":"2026-03-06T19:22:00.867624817Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.86814158Z","message":""} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1502,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680834617:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":80.735428,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sascha (WA)"},"time":"2026-03-06T19:22:00.868824567Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.86923908Z","message":"04011d43152bfd67ff6416"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1478,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/state/m.room.member/@whatsapp_491736748726:matrix.theocloud.dev?user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":284.321134,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UekhuwOSCuOveNyLTOPeVYPK","displayname":"Domi (WA)","membership":"join"},"time":"2026-03-06T19:22:00.875389665Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1506,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-168212561981526:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-168212561981526%3Amatrix.theocloud.dev","duration":88.858705,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Dya (WA)"},"time":"2026-03-06T19:22:00.904872016Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:00.905694897Z","message":""} +{"level":"debug","transaction_id":"1243","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:00.928688908Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1243","time":"2026-03-06T19:22:00.92907751Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1480,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":318.093124,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:00.938238642Z","message":"Request completed"} +{"level":"info","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:00.939151689Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1504,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":153.553542,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<85321 bytes>","time":"2026-03-06T19:22:00.947896283Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:00.957549733Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1510,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491628947581:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":22.098214,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:00.97165758Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1511,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70476638453883:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-70476638453883%3Amatrix.theocloud.dev","duration":16.465021,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:00.974423611Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:00.975492895Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1513,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ZIXtQzHyprijDOKfuxRNtixI?user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":22.732941,"status_code":200,"response_length":85321,"response_mime":"image/jpeg","time":"2026-03-06T19:22:00.994499265Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.000899675Z","message":"admin_linkall_member_addall_member_share"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:01.001002063Z","message":"Unknown element in group node 120363422109419332@g.us: admin_link"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:01.001053956Z","message":"Unknown element in group node 120363422109419332@g.us: all_member_share"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1514,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-130455353487454%3Amatrix.theocloud.dev","duration":25.629157,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-130455353487454","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.001453593Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.004209986Z","message":""} +{"level":"info","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","time":"2026-03-06T19:22:01.004359238Z","message":"Creating Matrix room"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.005525045Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.011995576Z","message":""} +{"level":"debug","transaction_id":"1244","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:01.017981123Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1244","time":"2026-03-06T19:22:01.018296461Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.026546152Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.029306805Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.034637791Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.054819815Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1516,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130455353487454:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-130455353487454%3Amatrix.theocloud.dev","duration":54.111926,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:01.056041914Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1515,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491628947581:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":71.898572,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZIXtQzHyprijDOKfuxRNtixI"},"time":"2026-03-06T19:22:01.066667847Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.070585715Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1517,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.029666,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55685 bytes>","time":"2026-03-06T19:22:01.078906995Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1507,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":221.094729,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<30587 bytes>","time":"2026-03-06T19:22:01.085027827Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1523,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-168212561981526:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-168212561981526%3Amatrix.theocloud.dev","duration":26.48661,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.097424539Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.098250493Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.115598809Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1525,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491731828379:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":89.429386,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.174796646Z","message":"Request completed"} +{"level":"debug","transaction_id":"1245","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:01.183964483Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1245","time":"2026-03-06T19:22:01.1843109Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1528,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/kqQEaYFpnRMgETLNDUCxsbfg?user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":22.9366,"status_code":200,"response_length":30587,"response_mime":"image/jpeg","time":"2026-03-06T19:22:01.197935718Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.20652624Z","message":"all_member_shareadmin_add"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:01.206682826Z","message":"Unknown element in group node 120363417948931600@g.us: all_member_share"} +{"level":"info","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","time":"2026-03-06T19:22:01.208030851Z","message":"Creating Matrix room"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.209217889Z","message":""} +{"level":"info","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","time":"2026-03-06T19:22:01.211371404Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4917616043654","time":"2026-03-06T19:22:01.211475049Z","message":"Updating other user ID in DM portal"} +{"level":"info","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","time":"2026-03-06T19:22:01.212352058Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4917658289477","time":"2026-03-06T19:22:01.212423576Z","message":"Updating other user ID in DM portal"} +{"level":"info","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","time":"2026-03-06T19:22:01.215983085Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4915901353554","time":"2026-03-06T19:22:01.21607374Z","message":"Updating other user ID in DM portal"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1526,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":118.125803,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<190000 bytes>","time":"2026-03-06T19:22:01.218827967Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:01.221021571Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.221570042Z","message":""} +{"level":"info","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","time":"2026-03-06T19:22:01.221682628Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4915258731774","time":"2026-03-06T19:22:01.221737454Z","message":"Updating other user ID in DM portal"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:01.224582337Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:01.224711754Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1530,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917616043654%3Amatrix.theocloud.dev","duration":40.714655,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917616043654","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.262000998Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.262543602Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"168212561981526@lid","alternate_jid":"4917672322250@s.whatsapp.net","time":"2026-03-06T19:22:01.262651578Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"215492065255495@lid","time":"2026-03-06T19:22:01.263082714Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1532,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917658289477%3Amatrix.theocloud.dev","duration":46.757961,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917658289477","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.271573431Z","message":"Request completed"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1533,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915901353554%3Amatrix.theocloud.dev","duration":52.880399,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915901353554","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.277862094Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1529,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491731828379:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":84.427636,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kqQEaYFpnRMgETLNDUCxsbfg"},"time":"2026-03-06T19:22:01.282690146Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1536,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917616043654:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917616043654%3Amatrix.theocloud.dev","duration":41.450303,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:01.303957727Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1537,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-215492065255495%3Amatrix.theocloud.dev","duration":42.569384,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-215492065255495","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.305945715Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1512,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":344.945568,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26579 bytes>","time":"2026-03-06T19:22:01.308517026Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1538,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917658289477:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917658289477%3Amatrix.theocloud.dev","duration":36.956236,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:01.308946765Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:01.309560329Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1539,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915901353554:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915901353554%3Amatrix.theocloud.dev","duration":38.156195,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:01.316446631Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1521,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130455353487454:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-130455353487454%3Amatrix.theocloud.dev","duration":263.962828,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491739137913 (WA)"},"time":"2026-03-06T19:22:01.320231101Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.321270004Z","message":""} +{"level":"debug","transaction_id":"1246","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:01.321357167Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1246","time":"2026-03-06T19:22:01.321704492Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.336173842Z","message":""} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:01.336930303Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1542,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-215492065255495:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-215492065255495%3Amatrix.theocloud.dev","duration":41.314669,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:01.34761211Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1544,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-256693099352121%3Amatrix.theocloud.dev","duration":39.984176,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-256693099352121","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.349841473Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1518,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":344.898983,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26844 bytes>","time":"2026-03-06T19:22:01.365639222Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1546,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-138817721917594%3Amatrix.theocloud.dev","duration":47.603052,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-138817721917594","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.384833956Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1548,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256693099352121:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-256693099352121%3Amatrix.theocloud.dev","duration":41.000519,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:01.391193997Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1549,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783743461:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":42.061841,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.408072414Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1550,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138817721917594:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-138817721917594%3Amatrix.theocloud.dev","duration":35.320322,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:01.420641637Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1520,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":382.303675,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<69735 bytes>","time":"2026-03-06T19:22:01.422968709Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1519,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":395.803406,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<30587 bytes>","time":"2026-03-06T19:22:01.436076625Z","message":"Request completed"} +{"level":"debug","transaction_id":"1247","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:01.440484018Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1247","time":"2026-03-06T19:22:01.44126667Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1552,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/pdBxkhbkEzMdTweLoiuFiCMc?user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":36.203477,"status_code":200,"response_length":26844,"response_mime":"image/jpeg","time":"2026-03-06T19:22:01.44440908Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1554,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680834617:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":38.478936,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.4618352Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1524,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":382.636403,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43921 bytes>","time":"2026-03-06T19:22:01.467047175Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1555,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-27956059590853:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":36.934725,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.473389336Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1557,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XkUrOcJLxypIwkwNPfeIGgEU?user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":33.977326,"status_code":200,"response_length":69735,"response_mime":"image/jpeg","time":"2026-03-06T19:22:01.495943201Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.498156012Z","message":""} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1558,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491605556877:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":30.79329,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.49820092Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1559,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/AvlyffuDHEMFxceTihjFMwRW?user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":33.282885,"status_code":200,"response_length":30587,"response_mime":"image/jpeg","time":"2026-03-06T19:22:01.506832369Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1527,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":385.009362,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<52032 bytes>","time":"2026-03-06T19:22:01.512282646Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1556,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783743461:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":70.78396,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pdBxkhbkEzMdTweLoiuFiCMc"},"time":"2026-03-06T19:22:01.51546773Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.521359269Z","message":""} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:01.522090517Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.522906693Z","message":"all_member_addall_member_share"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:01.523047355Z","message":"Unknown element in group node 120363326854732201@g.us: all_member_share"} +{"level":"info","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","time":"2026-03-06T19:22:01.524243124Z","message":"Creating Matrix room"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"create portals from history sync","conversation_count":27,"time":"2026-03-06T19:22:01.524908371Z","message":"Finished creating portals from history sync"} +{"level":"info","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","time":"2026-03-06T19:22:01.525037509Z","message":"Creating Matrix room"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","old_other_user_id":"","new_other_user_id":"4917641870516","time":"2026-03-06T19:22:01.525110774Z","message":"Updating other user ID in DM portal"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.527701989Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1449,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1927_955_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1267.516088,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:01.53159702Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:01.531857","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:01.531869823Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:01.531857","time":"2026-03-06T19:22:01.532068664Z","message":"Finished handling device list changes"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1561,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/sOgcNAreFByddNrBezfIEICB?user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":42.875503,"status_code":200,"response_length":43921,"response_mime":"image/jpeg","time":"2026-03-06T19:22:01.541199695Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1563,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735701057:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":41.473421,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.554109049Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1565,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":44.110383,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-251745280225436","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.566464624Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1541,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917616043654:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917616043654%3Amatrix.theocloud.dev","duration":268.005784,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917616043654 (WA)"},"time":"2026-03-06T19:22:01.57217192Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1543,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917658289477:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917658289477%3Amatrix.theocloud.dev","duration":263.109985,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917658289477 (WA)"},"time":"2026-03-06T19:22:01.572232892Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.573047672Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1531,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":350.805608,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<8338 bytes>","time":"2026-03-06T19:22:01.574673039Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.574918325Z","message":""} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1560,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680834617:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":79.449493,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XkUrOcJLxypIwkwNPfeIGgEU"},"time":"2026-03-06T19:22:01.575710685Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:01.575811817Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1545,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915901353554:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915901353554%3Amatrix.theocloud.dev","duration":266.110895,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Aylin (WA)"},"time":"2026-03-06T19:22:01.58274163Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.583405481Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1562,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-27956059590853:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":88.243046,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AvlyffuDHEMFxceTihjFMwRW"},"time":"2026-03-06T19:22:01.595322726Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","has_name":true,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:01.5959409Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1569,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/pVtSEGQfGhUHQhabQLcIvJCU?user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":46.418878,"status_code":200,"response_length":52032,"response_mime":"image/jpeg","time":"2026-03-06T19:22:01.600682417Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1570,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251745280225436:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":44.795256,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:01.611658609Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1547,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-215492065255495:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-215492065255495%3Amatrix.theocloud.dev","duration":264.824402,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Erman (WA)"},"time":"2026-03-06T19:22:01.612625295Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.61338888Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.61727532Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1572,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":39.933959,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-46858126766286","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.617797181Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1568,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491605556877:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":77.382373,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sOgcNAreFByddNrBezfIEICB"},"time":"2026-03-06T19:22:01.618907113Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1573,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251745280225436:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":29.337918,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:01.625827777Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1551,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256693099352121:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-256693099352121%3Amatrix.theocloud.dev","duration":252.805885,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jules (WA)"},"time":"2026-03-06T19:22:01.644217091Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.644958746Z","message":""} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1576,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917616043654:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917616043654%3Amatrix.theocloud.dev","duration":30.592983,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.648195443Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1577,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-46858126766286:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":33.589772,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:01.651696842Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1574,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735701057:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":59.163544,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pVtSEGQfGhUHQhabQLcIvJCU"},"time":"2026-03-06T19:22:01.660150264Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1535,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":416.698797,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<756132 bytes>","time":"2026-03-06T19:22:01.665442348Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1553,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138817721917594:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-138817721917594%3Amatrix.theocloud.dev","duration":255.333265,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Paula (WA)"},"time":"2026-03-06T19:22:01.676216696Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.676951086Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1508,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":838.5391,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:01.714580951Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.729848667Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1583,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.286537,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<211840 bytes>","time":"2026-03-06T19:22:01.742726872Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.747912167Z","message":""} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1586,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915901353554:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915901353554%3Amatrix.theocloud.dev","duration":18.958458,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.767204959Z","message":"Request completed"} +{"level":"debug","transaction_id":"1248","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:01.770376843Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1248","time":"2026-03-06T19:22:01.770643431Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.806327491Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.807018859Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1579,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251745280225436:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":184.959837,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Chrissi (WA)"},"time":"2026-03-06T19:22:01.810934632Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1575,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251745280225436:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":199.174263,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Chrissi (WA)"},"time":"2026-03-06T19:22:01.811013973Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.811651004Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.813319534Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1588,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256693099352121:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-256693099352121%3Amatrix.theocloud.dev","duration":33.921033,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:01.841207458Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:01.84192362Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1581,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-46858126766286:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":197.694446,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Julius (WA)"},"time":"2026-03-06T19:22:01.849572669Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:01.850272977Z","message":""} +{"level":"debug","transaction_id":"1249","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:01.868787448Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1249","time":"2026-03-06T19:22:01.869069889Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1590,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":38.904555,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-59622887026730","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:01.881115366Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1591,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59622887026730:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":45.32906,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:01.926848881Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:01.970641762Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1584,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-130455353487454%3Amatrix.theocloud.dev","duration":293.292505,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<83979 bytes>","time":"2026-03-06T19:22:01.97706054Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:02.000606514Z","message":""} +{"level":"debug","transaction_id":"1250","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:02.016508676Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1250","time":"2026-03-06T19:22:02.016833163Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1592,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":115.610645,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15220 bytes>","time":"2026-03-06T19:22:02.023275688Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1595,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130455353487454:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-130455353487454%3Amatrix.theocloud.dev","duration":47.009882,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:02.024446174Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:02.03126864Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:02.033580557Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1597,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WJKInHLEkPvWFRukBlVYLEki?user_id=%40whatsapp_lid-130455353487454%3Amatrix.theocloud.dev","duration":25.840081,"status_code":200,"response_length":83979,"response_mime":"image/jpeg","time":"2026-03-06T19:22:02.050420421Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1598,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-215492065255495:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-215492065255495%3Amatrix.theocloud.dev","duration":27.983887,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:02.061898429Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4367762146282@s.whatsapp.net","time":"2026-03-06T19:22:02.062819508Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1601,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4367762146282%3Amatrix.theocloud.dev","duration":31.755367,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4367762146282","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:02.09487317Z","message":"Request completed"} +{"level":"debug","transaction_id":"1251","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:02.111444491Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1251","time":"2026-03-06T19:22:02.112222673Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1599,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130455353487454:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-130455353487454%3Amatrix.theocloud.dev","duration":71.524218,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WJKInHLEkPvWFRukBlVYLEki"},"time":"2026-03-06T19:22:02.122352447Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:02.123393795Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1603,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4367762146282:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4367762146282%3Amatrix.theocloud.dev","duration":42.68637,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:02.137898834Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1604,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-49997882073306%3Amatrix.theocloud.dev","duration":59.951504,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-49997882073306","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:02.183658052Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1589,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917658289477%3Amatrix.theocloud.dev","duration":364.492236,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34090 bytes>","time":"2026-03-06T19:22:02.205643261Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1593,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59622887026730:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":302.567271,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Felix (WA)"},"time":"2026-03-06T19:22:02.229695731Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:02.230595508Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:02.230887029Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1606,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-49997882073306:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-49997882073306%3Amatrix.theocloud.dev","duration":53.271236,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:02.23736643Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1608,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917658289477:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917658289477%3Amatrix.theocloud.dev","duration":56.040899,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:02.262132617Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1611,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/tTwLLBqsJPDFaInkxxZKjZwa?user_id=%40whatsapp_4917658289477%3Amatrix.theocloud.dev","duration":49.418112,"status_code":200,"response_length":34090,"response_mime":"image/jpeg","time":"2026-03-06T19:22:02.311738185Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1596,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":348.422173,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15127 bytes>","time":"2026-03-06T19:22:02.329958201Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1594,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":405.517689,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46568 bytes>","time":"2026-03-06T19:22:02.344880478Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:02.345781582Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1613,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251745280225436:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":51.177437,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:02.381523472Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:02.391392734Z","message":""} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1614,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":52.286601,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-187849085329414","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:02.398353698Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1612,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917658289477:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917658289477%3Amatrix.theocloud.dev","duration":112.08969,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tTwLLBqsJPDFaInkxxZKjZwa"},"time":"2026-03-06T19:22:02.424226814Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1615,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LXWwZVePUhXHkbHUxnFqIiaB?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":54.045996,"status_code":200,"response_length":15127,"response_mime":"image/jpeg","time":"2026-03-06T19:22:02.43570573Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1616,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59622887026730:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":52.094675,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:02.443864487Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:02.445259096Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1617,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-187849085329414:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":50.374321,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:02.449005781Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1567,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1955_955_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":934.086662,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:02.466367856Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:02.466717","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:02.466732362Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:02.466717","time":"2026-03-06T19:22:02.466962702Z","message":"Finished handling device list changes"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1600,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":425.754887,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<9803 bytes>","time":"2026-03-06T19:22:02.482887005Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1605,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4367762146282:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4367762146282%3Amatrix.theocloud.dev","duration":368.168102,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4367762146282 (WA)"},"time":"2026-03-06T19:22:02.506269966Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:02.507085165Z","message":""} +{"level":"debug","transaction_id":"1252","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:02.509693003Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1252","time":"2026-03-06T19:22:02.50996413Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1620,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-141188745167008%3Amatrix.theocloud.dev","duration":68.70811,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-141188745167008","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:02.514282893Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1466,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2010.037376,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491637362958@s.whatsapp.net","displayname":"FloJ (WA)","avatar_url":"mxc://matrix.theocloud.dev/oHURlkhlQKAlDyqbcEDHaxsG","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491637362958@s.whatsapp.net","displayname":"FloJ (WA)","avatar_url":"mxc://matrix.theocloud.dev/oHURlkhlQKAlDyqbcEDHaxsG","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"FloJ (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/oHURlkhlQKAlDyqbcEDHaxsG"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!491637362958@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:02.523492147Z","message":"Request completed"} +{"level":"info","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","room_id":"!xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev","time":"2026-03-06T19:22:02.52409726Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1602,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-138817721917594%3Amatrix.theocloud.dev","duration":455.061097,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40959 bytes>","time":"2026-03-06T19:22:02.524310349Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1623,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-46858126766286:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":49.024271,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:02.532302183Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1619,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-251745280225436:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":111.503085,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LXWwZVePUhXHkbHUxnFqIiaB"},"time":"2026-03-06T19:22:02.547481269Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1624,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-141188745167008:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-141188745167008%3Amatrix.theocloud.dev","duration":45.075812,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:02.559775104Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1626,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138817721917594:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-138817721917594%3Amatrix.theocloud.dev","duration":45.371943,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:02.571229995Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1627,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/CBaHFbcIsutovHAvcmuIhbcC?user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":51.597887,"status_code":200,"response_length":9803,"response_mime":"image/jpeg","time":"2026-03-06T19:22:02.584086409Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1610,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-49997882073306:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-49997882073306%3Amatrix.theocloud.dev","duration":353.649722,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491786748116 (WA)"},"time":"2026-03-06T19:22:02.59124286Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:02.591986331Z","message":""} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1625,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":93.726147,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:02.618835282Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1630,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/MsWeuvpskahBdUZmTLSdrYCL?user_id=%40whatsapp_lid-138817721917594%3Amatrix.theocloud.dev","duration":47.614506,"status_code":200,"response_length":40959,"response_mime":"image/jpeg","time":"2026-03-06T19:22:02.619040199Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1471,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2101.503151,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917657607100@s.whatsapp.net","displayname":"Alex (WA)","avatar_url":"mxc://matrix.theocloud.dev/YNWVkqhhjrMzHXcXqoAfgdLb","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917657607100@s.whatsapp.net","displayname":"Alex (WA)","avatar_url":"mxc://matrix.theocloud.dev/YNWVkqhhjrMzHXcXqoAfgdLb","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Alex (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/YNWVkqhhjrMzHXcXqoAfgdLb"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4917657607100@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:02.628831867Z","message":"Request completed"} +{"level":"info","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","room_id":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","time":"2026-03-06T19:22:02.629417773Z","message":"Matrix room created"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1469,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2114.211988,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917623702252@s.whatsapp.net","displayname":"Amon (WA)","avatar_url":"mxc://matrix.theocloud.dev/sEWrJTaMMLVCkLTmuCbVdDzk","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917623702252@s.whatsapp.net","displayname":"Amon (WA)","avatar_url":"mxc://matrix.theocloud.dev/sEWrJTaMMLVCkLTmuCbVdDzk","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Amon (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/sEWrJTaMMLVCkLTmuCbVdDzk"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4917623702252@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:02.641264478Z","message":"Request completed"} +{"level":"info","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","room_id":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","time":"2026-03-06T19:22:02.641791228Z","message":"Matrix room created"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1470,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2122.70955,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917620338641@s.whatsapp.net","displayname":"Marcyś (WA)","avatar_url":"mxc://matrix.theocloud.dev/gzmDybURnbFaydYpgticRewF","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917620338641@s.whatsapp.net","displayname":"Marcyś (WA)","avatar_url":"mxc://matrix.theocloud.dev/gzmDybURnbFaydYpgticRewF","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Marcyś (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/gzmDybURnbFaydYpgticRewF"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4917620338641@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:02.650003066Z","message":"Request completed"} +{"level":"info","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","room_id":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","time":"2026-03-06T19:22:02.650601054Z","message":"Matrix room created"} +{"level":"debug","transaction_id":"1253","content":{"pdu":15,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:02.657042462Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1253","time":"2026-03-06T19:22:02.658069352Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1607,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":478.745567,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<745580 bytes>","time":"2026-03-06T19:22:02.66419605Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_count":100,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:02.664670628Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_count":100,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:02.664784121Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1609,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":428.929146,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15127 bytes>","time":"2026-03-06T19:22:02.665868771Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:02.671788596Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1631,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-46858126766286:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":112.820659,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CBaHFbcIsutovHAvcmuIhbcC"},"time":"2026-03-06T19:22:02.697272202Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:02.698289733Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1639,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4367762146282:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4367762146282%3Amatrix.theocloud.dev","duration":40.115479,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:02.712110319Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491734736190@s.whatsapp.net","time":"2026-03-06T19:22:02.712858608Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1632,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":96.48729,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:02.715848693Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1633,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138817721917594:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-138817721917594%3Amatrix.theocloud.dev","duration":96.952998,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MsWeuvpskahBdUZmTLSdrYCL"},"time":"2026-03-06T19:22:02.716310978Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","has_name":true,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:02.716791633Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1634,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":91.387761,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:02.721613539Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1635,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":82.747303,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:02.725321392Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1636,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":86.906056,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:02.738308829Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1640,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":42.334575,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-33994833981513","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:02.740942579Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1641,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491734736190%3Amatrix.theocloud.dev","duration":44.090268,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491734736190","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:02.757244519Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1643,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-187849085329414:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":44.264734,"status_code":200,"response_length":29,"response_mime":"application/json","time":"2026-03-06T19:22:02.761320301Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:02.76191829Z","message":"040122ede527e7f5150b5d"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1647,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-33994833981513:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":30.070703,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:02.771356765Z","message":"Request completed"} +{"level":"debug","transaction_id":"1254","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:02.7739352Z","message":"Starting handling of transaction"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1621,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-187849085329414:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":324.662691,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vitali (WA)"},"time":"2026-03-06T19:22:02.773869409Z","message":"Request completed"} +{"level":"debug","transaction_id":"1254","time":"2026-03-06T19:22:02.774347409Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:02.77691425Z","message":"040122ede527e7f5150b5d"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1642,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.310084,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:02.790677914Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1648,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491734736190:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491734736190%3Amatrix.theocloud.dev","duration":36.430464,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:02.794138805Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1644,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":75.498518,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:02.797555975Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1585,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1084.972999,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:02.80024022Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1645,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.276212,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:02.802056397Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1646,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":68.316854,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:02.807047321Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1629,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-141188745167008:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-141188745167008%3Amatrix.theocloud.dev","duration":297.547712,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+33628246935 (WA)"},"time":"2026-03-06T19:22:02.85755979Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:02.858201011Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:02.866771908Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1652,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.222226,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:02.876326531Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1653,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.754282,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:02.877397841Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1654,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":80.218665,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:02.882937515Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1655,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":77.820493,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:02.885319973Z","message":"Request completed"} +{"level":"debug","transaction_id":"1255","content":{"pdu":39,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:02.889501984Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1255","time":"2026-03-06T19:22:02.890959102Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1656,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-49997882073306:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-49997882073306%3Amatrix.theocloud.dev","duration":33.246637,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:02.900322358Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:02.9010388Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1661,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-265085683519507%3Amatrix.theocloud.dev","duration":23.836098,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-265085683519507","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:02.92506424Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1657,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/state/m.room.join_rules/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":54.488935,"status_code":200,"response_length":289,"response_mime":"application/json","time":"2026-03-06T19:22:02.931835651Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:02.93360224Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1659,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/state/m.room.join_rules/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":50.914341,"status_code":200,"response_length":289,"response_mime":"application/json","time":"2026-03-06T19:22:02.934666426Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1660,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/state/m.room.join_rules/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":50.564361,"status_code":200,"response_length":289,"response_mime":"application/json","time":"2026-03-06T19:22:02.936462628Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1622,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s1962_955_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":477.228036,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:02.94437582Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:02.944601","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:02.944615379Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:02.944601","time":"2026-03-06T19:22:02.944835102Z","message":"Finished handling device list changes"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1662,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-265085683519507:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-265085683519507%3Amatrix.theocloud.dev","duration":29.18622,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:02.954539398Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1649,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-33994833981513:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":230.165276,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Laura ^^ (WA)"},"time":"2026-03-06T19:22:03.001692875Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:03.002600475Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:03.022812461Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1651,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491734736190:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491734736190%3Amatrix.theocloud.dev","duration":243.388292,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491734736190 (WA)"},"time":"2026-03-06T19:22:03.037766306Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:03.03864988Z","message":""} +{"level":"debug","transaction_id":"1256","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:03.078179173Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1256","time":"2026-03-06T19:22:03.078542492Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:03.169111562Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:03.180327243Z","message":""} +{"level":"debug","transaction_id":"1257","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:03.207026732Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1257","time":"2026-03-06T19:22:03.207374756Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:03.209587008Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1668,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-265085683519507:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-265085683519507%3Amatrix.theocloud.dev","duration":266.014722,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491795247666 (WA)"},"time":"2026-03-06T19:22:03.220704421Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:03.221402773Z","message":""} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1666,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":380.378265,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26844 bytes>","time":"2026-03-06T19:22:03.324082343Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1673,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-187849085329414:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":63.460097,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:03.387991804Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:03.398237586Z","message":""} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1674,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/vodzizjGAdnOXIEIFkvNVJXl?user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":79.770208,"status_code":200,"response_length":26844,"response_mime":"image/jpeg","time":"2026-03-06T19:22:03.46794444Z","message":"Request completed"} +{"level":"debug","transaction_id":"1258","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:03.471519383Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1258","time":"2026-03-06T19:22:03.471892899Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1669,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-141188745167008%3Amatrix.theocloud.dev","duration":458.484412,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40767 bytes>","time":"2026-03-06T19:22:03.516267775Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1677,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-141188745167008:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-141188745167008%3Amatrix.theocloud.dev","duration":59.236599,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:03.575938513Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1676,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-187849085329414:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":123.94757,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vodzizjGAdnOXIEIFkvNVJXl"},"time":"2026-03-06T19:22:03.592270275Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:03.593524571Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1637,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824922665098062_1?ts=1772610555000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":937.929101,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie sie gut lief und wir endlich eine richtig gute Turnecke dann hatten","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:03.603164402Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6A85A251D362BC3493","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T07:49:15Z","event_id":"$v4UlRk-W1pXujjiRXvFo6GYZRBHwdtFjpnqIYcLHV0U","part_id":"","time":"2026-03-06T19:22:03.603305623Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1678,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/deeAqRHkJnAKjOnfsZJvjRCX?user_id=%40whatsapp_lid-141188745167008%3Amatrix.theocloud.dev","duration":59.578407,"status_code":200,"response_length":40767,"response_mime":"image/jpeg","time":"2026-03-06T19:22:03.635686077Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1679,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-89215194906776%3Amatrix.theocloud.dev","duration":63.882572,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-89215194906776","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:03.657733167Z","message":"Request completed"} +{"level":"debug","transaction_id":"1259","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:03.659923489Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1259","time":"2026-03-06T19:22:03.660991306Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1487,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2927.881254,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915150515988@s.whatsapp.net","displayname":"Maja (WA)","avatar_url":"mxc://matrix.theocloud.dev/CLOiNyKbSlasDdKXAMAFbPPT","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915150515988@s.whatsapp.net","displayname":"Maja (WA)","avatar_url":"mxc://matrix.theocloud.dev/CLOiNyKbSlasDdKXAMAFbPPT","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Maja (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/CLOiNyKbSlasDdKXAMAFbPPT"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4915150515988@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:03.678593009Z","message":"Request completed"} +{"level":"info","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","room_id":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","time":"2026-03-06T19:22:03.679059346Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1670,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":505.706825,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<21278 bytes>","time":"2026-03-06T19:22:03.682656918Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1667,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s2018_955_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":743.713076,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:03.688707698Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:03.688949","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:03.688964437Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:03.688949","time":"2026-03-06T19:22:03.68917564Z","message":"Finished handling device list changes"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1671,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":501.281343,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26844 bytes>","time":"2026-03-06T19:22:03.689441739Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1682,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-89215194906776:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-89215194906776%3Amatrix.theocloud.dev","duration":71.486852,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:03.729646057Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1672,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491734736190%3Amatrix.theocloud.dev","duration":514.860903,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35390 bytes>","time":"2026-03-06T19:22:03.735421868Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":1491,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2980.066793,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915234825973@s.whatsapp.net","displayname":"Mici (WA)","avatar_url":"mxc://matrix.theocloud.dev/lyGoEouXaxbYbHonsiEnPPND","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915234825973@s.whatsapp.net","displayname":"Mici (WA)","avatar_url":"mxc://matrix.theocloud.dev/lyGoEouXaxbYbHonsiEnPPND","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Mici (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/lyGoEouXaxbYbHonsiEnPPND"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4915234825973@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:03.737973064Z","message":"Request completed"} +{"level":"info","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","room_id":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","time":"2026-03-06T19:22:03.738544094Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1684,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-33994833981513:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":84.334187,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:03.767304347Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1681,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-141188745167008:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-141188745167008%3Amatrix.theocloud.dev","duration":149.263764,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/deeAqRHkJnAKjOnfsZJvjRCX"},"time":"2026-03-06T19:22:03.785217616Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:03.78618542Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1688,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491734736190:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491734736190%3Amatrix.theocloud.dev","duration":77.215799,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:03.812897759Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1683,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":152.153346,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:03.831856636Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1690,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/lNvvfPFXLLfahVICDvskpsln?user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":66.544608,"status_code":200,"response_length":21278,"response_mime":"image/jpeg","time":"2026-03-06T19:22:03.833993878Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1691,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":65.338503,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-21079833710744","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:03.851886543Z","message":"Request completed"} +{"level":"debug","transaction_id":"1260","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:03.867175073Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1260","time":"2026-03-06T19:22:03.867477559Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1692,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WCYZAONLYpEtJtPGrlxxEOdi?user_id=%40whatsapp_491734736190%3Amatrix.theocloud.dev","duration":57.937953,"status_code":200,"response_length":35390,"response_mime":"image/jpeg","time":"2026-03-06T19:22:03.870981822Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":1689,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":137.214097,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:03.876590431Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1695,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21079833710744:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":54.572187,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:03.906794113Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1693,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":107.032904,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:03.939315089Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1694,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-33994833981513:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":111.324219,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lNvvfPFXLLfahVICDvskpsln"},"time":"2026-03-06T19:22:03.945530627Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:03.946500386Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1696,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491734736190:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491734736190%3Amatrix.theocloud.dev","duration":121.560293,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WCYZAONLYpEtJtPGrlxxEOdi"},"time":"2026-03-06T19:22:03.99279215Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":1697,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":116.228748,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:03.993404527Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917646175175@s.whatsapp.net","time":"2026-03-06T19:22:03.993718887Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1675,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-265085683519507%3Amatrix.theocloud.dev","duration":570.864297,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<36124 bytes>","time":"2026-03-06T19:22:04.00661525Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1700,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-1975802458312%3Amatrix.theocloud.dev","duration":62.017157,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-1975802458312","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:04.008806619Z","message":"Request completed"} +{"level":"debug","transaction_id":"1261","content":{"pdu":26,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:04.048922866Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1261","time":"2026-03-06T19:22:04.049882778Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1701,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917646175175%3Amatrix.theocloud.dev","duration":61.300995,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917646175175","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:04.055371747Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1699,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":122.434368,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:04.062495303Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1703,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-265085683519507:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-265085683519507%3Amatrix.theocloud.dev","duration":56.067928,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:04.063103349Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1704,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1975802458312:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-1975802458312%3Amatrix.theocloud.dev","duration":56.007863,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:22:04.065272857Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":1702,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":100.448251,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:04.096831897Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1705,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646175175:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917646175175%3Amatrix.theocloud.dev","duration":44.475728,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:04.10027414Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1706,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/itkPvVnnVdyfQQZBkzVXzZvb?user_id=%40whatsapp_lid-265085683519507%3Amatrix.theocloud.dev","duration":42.055416,"status_code":200,"response_length":36124,"response_mime":"image/jpeg","time":"2026-03-06T19:22:04.105297052Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1650,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/state/m.room.member/@whatsapp_491637362958:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1336.954606,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oHURlkhlQKAlDyqbcEDHaxsG","displayname":"FloJ (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:04.128429769Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1687,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-89215194906776:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-89215194906776%3Amatrix.theocloud.dev","duration":403.64452,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491754848071 (WA)"},"time":"2026-03-06T19:22:04.133489069Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:04.13430287Z","message":""} +{"level":"debug","transaction_id":"1262","content":{"pdu":8,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:04.175247795Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1262","time":"2026-03-06T19:22:04.175973805Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1711,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-265085683519507:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-265085683519507%3Amatrix.theocloud.dev","duration":87.764626,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/itkPvVnnVdyfQQZBkzVXzZvb"},"time":"2026-03-06T19:22:04.193415779Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:04.194599115Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1713,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-175110245867630%3Amatrix.theocloud.dev","duration":44.557023,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-175110245867630","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:04.239438092Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21079833710744:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":353.031269,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Burak C. (WA)"},"time":"2026-03-06T19:22:04.260043778Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:04.261087081Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1714,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-175110245867630:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-175110245867630%3Amatrix.theocloud.dev","duration":39.668349,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:04.279561812Z","message":"Request completed"} +{"level":"debug","transaction_id":"1263","content":{"pdu":0,"unstable_edu":2,"unstable_to_device":0},"time":"2026-03-06T19:22:04.29913558Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1263","time":"2026-03-06T19:22:04.299282388Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1658,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1442.295862,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:04.320078813Z","message":"Request completed"} +{"level":"info","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:04.320698244Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1708,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1975802458312:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-1975802458312%3Amatrix.theocloud.dev","duration":311.649062,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Melvin (WA)"},"time":"2026-03-06T19:22:04.377128443Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:04.377873799Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1663,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917657607100:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1454.842736,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YNWVkqhhjrMzHXcXqoAfgdLb","displayname":"Alex (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:04.387174756Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:04.40130593Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1710,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646175175:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917646175175%3Amatrix.theocloud.dev","duration":304.882819,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917646175175 (WA)"},"time":"2026-03-06T19:22:04.405412721Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:04.40626298Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:04.421642165Z","message":""} +{"level":"debug","transaction_id":"1264","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:04.449018355Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1264","time":"2026-03-06T19:22:04.449359394Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1718,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-89215194906776:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-89215194906776%3Amatrix.theocloud.dev","duration":56.038594,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:04.457669849Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1522,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3417.449849,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491628947581@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491628947581@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!491628947581@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:04.485120909Z","message":"Request completed"} +{"level":"info","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","room_id":"!xRkqecNmTFOMvkWiXu:matrix.theocloud.dev","time":"2026-03-06T19:22:04.485603519Z","message":"Matrix room created"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:04.539401016Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1721,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":86.754359,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:04.573036046Z","message":"Request completed"} +{"level":"debug","transaction_id":"1265","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:04.586131739Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1265","time":"2026-03-06T19:22:04.586564621Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:04.597777439Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1715,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-175110245867630:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-175110245867630%3Amatrix.theocloud.dev","duration":329.164999,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915256299774 (WA)"},"time":"2026-03-06T19:22:04.608875784Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:04.6094487Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1680,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824923604287186_1?ts=1772610607000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":1062.409356,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ne das war so Jungle themed ganz komisch haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:04.666873522Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AB72A19DD1626F5939B","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T07:50:07Z","event_id":"$mS-yT17gLVo3YFLKchwEqyYIA-THDRETDK7HDMseWMc","part_id":"","time":"2026-03-06T19:22:04.667012229Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1723,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646175175:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917646175175%3Amatrix.theocloud.dev","duration":86.170408,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:04.684184193Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491772288896@s.whatsapp.net","time":"2026-03-06T19:22:04.685001766Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1722,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":156.981118,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:04.730562771Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1664,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917623702252:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1797.782016,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sEWrJTaMMLVCkLTmuCbVdDzk","displayname":"Amon (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:04.732875387Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1665,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917620338641:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1808.376938,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gzmDybURnbFaydYpgticRewF","displayname":"Marcyś (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:04.74523166Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1726,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491772288896%3Amatrix.theocloud.dev","duration":64.488942,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491772288896","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:04.749749124Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:04.758399082Z","message":""} +{"level":"debug","transaction_id":"1266","content":{"pdu":12,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:04.804462393Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1266","time":"2026-03-06T19:22:04.805476571Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1730,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491772288896:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491772288896%3Amatrix.theocloud.dev","duration":67.270967,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:04.817349886Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1540,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3559.429209,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491731828379@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491731828379@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!491731828379@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:04.843071025Z","message":"Request completed"} +{"level":"info","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","room_id":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","time":"2026-03-06T19:22:04.843771543Z","message":"Matrix room created"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1727,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":129.908323,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:04.861081445Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1719,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":500.704307,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55007 bytes>","time":"2026-03-06T19:22:04.929687586Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1732,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":105.629565,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:04.950264986Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1685,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s2022_955_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1264.15919,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:04.953497353Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:04.953707","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:04.953718334Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:04.953707","time":"2026-03-06T19:22:04.953862418Z","message":"Finished handling device list changes"} +{"level":"debug","transaction_id":"1267","content":{"pdu":11,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:04.970903149Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1267","time":"2026-03-06T19:22:04.971558478Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1734,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21079833710744:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":42.961409,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:04.97302712Z","message":"Request completed"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":1534,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3756.782825,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915258731774@s.whatsapp.net","displayname":"+4915258731774 (WA)","avatar_url":"mxc://matrix.theocloud.dev/MVXbCQlVlZXaAIccCKeicuRA","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915258731774@s.whatsapp.net","displayname":"+4915258731774 (WA)","avatar_url":"mxc://matrix.theocloud.dev/MVXbCQlVlZXaAIccCKeicuRA","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"+4915258731774 (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/MVXbCQlVlZXaAIccCKeicuRA"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4915258731774@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:04.982665345Z","message":"Request completed"} +{"level":"info","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","room_id":"!wRkwNZtgctxiqmVHWz:matrix.theocloud.dev","time":"2026-03-06T19:22:04.983505826Z","message":"Matrix room created"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1716,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":648.151334,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<337818 bytes>","time":"2026-03-06T19:22:04.992600399Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1738,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VnmYzoNKYWXdotaucesMOFXO?user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":59.270682,"status_code":200,"response_length":55007,"response_mime":"image/jpeg","time":"2026-03-06T19:22:05.032456204Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1735,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":100.220566,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:05.050945951Z","message":"Request completed"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":1739,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":132.204525,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:05.116725088Z","message":"Request completed"} +{"level":"debug","transaction_id":"1268","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:05.144308361Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1268","time":"2026-03-06T19:22:05.145156454Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1740,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21079833710744:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":113.886032,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VnmYzoNKYWXdotaucesMOFXO"},"time":"2026-03-06T19:22:05.146679783Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:05.147532626Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1725,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-1975802458312%3Amatrix.theocloud.dev","duration":477.808075,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38192 bytes>","time":"2026-03-06T19:22:05.158459509Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1741,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":110.545828,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:05.162201375Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1564,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3655.571688,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491783743461@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491783743461@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!491783743461@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:05.172140131Z","message":"Request completed"} +{"level":"info","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","room_id":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","time":"2026-03-06T19:22:05.172512879Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1743,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-197731905720552%3Amatrix.theocloud.dev","duration":41.553879,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-197731905720552","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:05.189399188Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1731,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491772288896:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491772288896%3Amatrix.theocloud.dev","duration":374.538409,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491772288896 (WA)"},"time":"2026-03-06T19:22:05.192074145Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:05.192867203Z","message":""} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":1742,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":89.739345,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:05.207025755Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1744,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1975802458312:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-1975802458312%3Amatrix.theocloud.dev","duration":52.536985,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:05.211381604Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1509,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":4294.789646,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","name":"WhatsApp (+4917641870516)","topic":"Your WhatsApp bridged chats - +4917641870516","invite":["@theo:matrix.theocloud.dev"],"creation_content":{"type":"m.space"},"initial_state":[{"type":"m.room.avatar","content":{"url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr"}}],"power_level_content_override":{"users":{"@theo:matrix.theocloud.dev":50,"@whatsappbot:matrix.theocloud.dev":9001}}},"time":"2026-03-06T19:22:05.234228248Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1748,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-197731905720552:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-197731905720552%3Amatrix.theocloud.dev","duration":76.107962,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:05.265936401Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1571,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3689.172075,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917680834617@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917680834617@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4917680834617@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:05.266010363Z","message":"Request completed"} +{"level":"info","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","room_id":"!fWHCoPezLmCifCgnUg:matrix.theocloud.dev","time":"2026-03-06T19:22:05.26659613Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1750,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/twjsBbkWYkNNKRnmtNYXgTYG?user_id=%40whatsapp_lid-1975802458312%3Amatrix.theocloud.dev","duration":65.867209,"status_code":200,"response_length":38192,"response_mime":"image/jpeg","time":"2026-03-06T19:22:05.277422371Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1746,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":127.172045,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:05.300216353Z","message":"Request completed"} +{"level":"debug","transaction_id":"1269","content":{"pdu":12,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:05.318038059Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1269","time":"2026-03-06T19:22:05.318664055Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":1749,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":122.468032,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:05.330067681Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1578,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3709.647018,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491605556877@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"491605556877@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!491605556877@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:05.32984251Z","message":"Request completed"} +{"level":"info","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","room_id":"!JmVDWCppZlZeFbcgKz:matrix.theocloud.dev","time":"2026-03-06T19:22:05.332629842Z","message":"Matrix room created"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:05.373413362Z","message":""} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1754,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":113.744321,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:05.381402682Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1580,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3739.346648,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917616043654@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917616043654@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4917616043654@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:05.388851074Z","message":"Request completed"} +{"level":"info","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","room_id":"!NOcWeBtUTcuAExaode:matrix.theocloud.dev","time":"2026-03-06T19:22:05.389602087Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1755,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1975802458312:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-1975802458312%3Amatrix.theocloud.dev","duration":128.275063,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/twjsBbkWYkNNKRnmtNYXgTYG"},"time":"2026-03-06T19:22:05.4059467Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:05.40696046Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1756,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":122.866971,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:05.423714628Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1737,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-175110245867630%3Amatrix.theocloud.dev","duration":488.936034,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22023 bytes>","time":"2026-03-06T19:22:05.443520411Z","message":"Request completed"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","req_id":1566,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3919.291395,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917641870516@s.whatsapp.net","displayname":"Theo Leuthardt (WA)","avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917641870516@s.whatsapp.net","displayname":"Theo Leuthardt (WA)","avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Theo Leuthardt (WA)"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS"}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4917641870516@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:05.445957276Z","message":"Request completed"} +{"level":"info","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","room_id":"!OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev","time":"2026-03-06T19:22:05.447016153Z","message":"Matrix room created"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1758,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":126.372003,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:05.460507154Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1762,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-130794756513956%3Amatrix.theocloud.dev","duration":65.502004,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-130794756513956","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:05.472762087Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1764,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-175110245867630:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-175110245867630%3Amatrix.theocloud.dev","duration":49.572113,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:05.493476936Z","message":"Request completed"} +{"level":"debug","transaction_id":"1270","content":{"pdu":31,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:05.501833067Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1270","time":"2026-03-06T19:22:05.503818681Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1707,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915150515988:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1440.384699,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CLOiNyKbSlasDdKXAMAFbPPT","displayname":"Maja (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:05.503795354Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1759,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":129.261234,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:05.511402567Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1761,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":121.888691,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:05.512513338Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1712,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/state/m.room.member/@whatsapp_491637362958:matrix.theocloud.dev?user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":1406.706019,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oHURlkhlQKAlDyqbcEDHaxsG","displayname":"FloJ (WA)","membership":"join"},"time":"2026-03-06T19:22:05.535910268Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1767,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130794756513956:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-130794756513956%3Amatrix.theocloud.dev","duration":63.797714,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:05.536989749Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1763,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":134.682946,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:05.558941225Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":1709,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915234825973:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1469.285545,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lyGoEouXaxbYbHonsiEnPPND","displayname":"Mici (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:05.567509258Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1768,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/PvkWtcTEtdTVwzftscgQGOqO?user_id=%40whatsapp_lid-175110245867630%3Amatrix.theocloud.dev","duration":79.186258,"status_code":200,"response_length":22023,"response_mime":"image/jpeg","time":"2026-03-06T19:22:05.572816008Z","message":"Request completed"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","req_id":1765,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":124.679865,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:05.573221163Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1766,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":127.557713,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:05.588642811Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1582,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3954.419302,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915735701057@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915735701057@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4915735701057@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:05.615697517Z","message":"Request completed"} +{"level":"info","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","room_id":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","time":"2026-03-06T19:22:05.61624522Z","message":"Matrix room created"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1770,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":118.441909,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:05.630513704Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1771,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":117.580056,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:05.630602822Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1776,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-175110245867630:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-175110245867630%3Amatrix.theocloud.dev","duration":104.71966,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PvkWtcTEtdTVwzftscgQGOqO"},"time":"2026-03-06T19:22:05.677868257Z","message":"Request completed"} +{"level":"debug","transaction_id":"1271","content":{"pdu":32,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:05.678065841Z","message":"Starting handling of transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:05.67915971Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","req_id":1777,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":108.416479,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:05.682151889Z","message":"Request completed"} +{"level":"debug","transaction_id":"1271","time":"2026-03-06T19:22:05.682405207Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1753,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-197731905720552:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-197731905720552%3Amatrix.theocloud.dev","duration":419.604792,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917670764502 (WA)"},"time":"2026-03-06T19:22:05.685740522Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:05.686658388Z","message":""} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1778,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":119.932691,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:05.709316807Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1779,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":112.645703,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:05.729725468Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1782,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-220460688113746%3Amatrix.theocloud.dev","duration":67.744008,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-220460688113746","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:05.747191468Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1781,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":123.355727,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:05.756497383Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1724,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824924667870450_2?ts=1772610741000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1116.258606,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hahaha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:05.784258055Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A690B2612E77D909927","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T07:52:21Z","event_id":"$53nuIxDHnELpMVMvJEOyQJgNtPsCzo4eXrg2oWzwDZo","part_id":"","time":"2026-03-06T19:22:05.784403117Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","req_id":1783,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":114.35586,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:05.796959419Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1786,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220460688113746:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220460688113746%3Amatrix.theocloud.dev","duration":52.878514,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:05.800447059Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1785,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":127.547796,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:05.857768934Z","message":"Request completed"} +{"level":"debug","transaction_id":"1272","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:05.862193927Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1272","time":"2026-03-06T19:22:05.863001442Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1587,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":4103.216729,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915901353554@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4915901353554@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4915901353554@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:05.871595666Z","message":"Request completed"} +{"level":"info","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","room_id":"!PchXjQjXcAUVmlVcIq:matrix.theocloud.dev","time":"2026-03-06T19:22:05.872058929Z","message":"Matrix room created"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1717,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917657607100:matrix.theocloud.dev?user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":1487.252383,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YNWVkqhhjrMzHXcXqoAfgdLb","displayname":"Alex (WA)","membership":"join"},"time":"2026-03-06T19:22:05.875056696Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1760,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491772288896%3Amatrix.theocloud.dev","duration":494.412152,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<71824 bytes>","time":"2026-03-06T19:22:05.878557747Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1747,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":707.841977,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<258807 bytes>","time":"2026-03-06T19:22:05.885365686Z","message":"Request completed"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","req_id":1789,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":100.101833,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:05.898023049Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1736,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s2057_956_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":951.493295,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:05.905473816Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:05.905696","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:05.905708206Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:05.905696","time":"2026-03-06T19:22:05.905837484Z","message":"Finished handling device list changes"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1794,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491772288896:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491772288896%3Amatrix.theocloud.dev","duration":30.989896,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:05.90994693Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1773,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130794756513956:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-130794756513956%3Amatrix.theocloud.dev","duration":379.101269,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Josi (WA)"},"time":"2026-03-06T19:22:05.916308787Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:05.917356839Z","message":""} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1791,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.480147,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:05.928936747Z","message":"Request completed"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1792,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.93153,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:05.934782191Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1797,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/NEUSQhbAjEBIGjHiauzxjSmD?user_id=%40whatsapp_491772288896%3Amatrix.theocloud.dev","duration":28.838407,"status_code":200,"response_length":71824,"response_mime":"image/jpeg","time":"2026-03-06T19:22:05.93886796Z","message":"Request completed"} +{"level":"debug","transaction_id":"1273","content":{"pdu":12,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:05.959974275Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1273","time":"2026-03-06T19:22:05.960503958Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1799,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.773056,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:05.993011874Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1800,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491772288896:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491772288896%3Amatrix.theocloud.dev","duration":57.700349,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NEUSQhbAjEBIGjHiauzxjSmD"},"time":"2026-03-06T19:22:05.996764147Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491774904330@s.whatsapp.net","time":"2026-03-06T19:22:05.997566355Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:06.000381484Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1802,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491774904330%3Amatrix.theocloud.dev","duration":31.164082,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491774904330","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:06.029020352Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1790,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220460688113746:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220460688113746%3Amatrix.theocloud.dev","duration":260.150561,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491795186866 (WA)"},"time":"2026-03-06T19:22:06.060769362Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:06.061595037Z","message":""} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1801,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.989369,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:06.068652103Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1804,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491774904330:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491774904330%3Amatrix.theocloud.dev","duration":42.423414,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:06.071795421Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917623702252:matrix.theocloud.dev?user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":1339.899432,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sEWrJTaMMLVCkLTmuCbVdDzk","displayname":"Amon (WA)","membership":"join"},"time":"2026-03-06T19:22:06.073449145Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1729,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917620338641:matrix.theocloud.dev?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":1344.740545,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gzmDybURnbFaydYpgticRewF","displayname":"Marcyś (WA)","membership":"join"},"time":"2026-03-06T19:22:06.090543654Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:06.099387354Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1810,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130794756513956:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-130794756513956%3Amatrix.theocloud.dev","duration":29.918097,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:06.129597182Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:06.130673101Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1733,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1281.079023,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:06.142957158Z","message":"Request completed"} +{"level":"debug","transaction_id":"1274","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:06.150735485Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1274","time":"2026-03-06T19:22:06.150981748Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1811,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-252510304526430%3Amatrix.theocloud.dev","duration":42.768714,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-252510304526430","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:06.17372293Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1813,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252510304526430:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-252510304526430%3Amatrix.theocloud.dev","duration":32.331704,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:06.206475434Z","message":"Request completed"} +{"level":"debug","transaction_id":"1275","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:06.244545443Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1275","time":"2026-03-06T19:22:06.245005564Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1796,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s2106_957_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":345.515689,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:06.251485314Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:06.251777","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:06.251790106Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:06.251777","time":"2026-03-06T19:22:06.251983289Z","message":"Finished handling device list changes"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1805,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":211.846293,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<615970 bytes>","time":"2026-03-06T19:22:06.277134935Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1807,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491774904330:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491774904330%3Amatrix.theocloud.dev","duration":237.325499,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Chris (WA)"},"time":"2026-03-06T19:22:06.309301532Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:06.310131118Z","message":""} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1618,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3910.242707,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_4917641870516:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917658289477@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"4917658289477@s.whatsapp.net","fi.mau.receiver":"4917641870516"},"com.beeper.room_type":"dm","com.beeper.room_type.v2":"dm"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg+dm","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2}},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"WhatsApp private chat"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}}],"preset":"private_chat","is_direct":true,"power_level_content_override":{"users":{"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0}},"com.beeper.local_room_id":"!4917658289477@s.whatsapp.net.4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:06.335596634Z","message":"Request completed"} +{"level":"info","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","room_id":"!KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev","time":"2026-03-06T19:22:06.336122476Z","message":"Matrix room created"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:06.356583031Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1803,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-197731905720552%3Amatrix.theocloud.dev","duration":351.589446,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35744 bytes>","time":"2026-03-06T19:22:06.365058313Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","req_id":1752,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev?ts=1772824925235&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1142.666433,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:06.377991902Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:06.378424575Z","message":"Added portal to space"} +{"level":"debug","transaction_id":"1276","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:06.391651292Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1276","time":"2026-03-06T19:22:06.391901397Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1745,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/state/m.room.member/@whatsapp_491731828379:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1242.892377,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kqQEaYFpnRMgETLNDUCxsbfg","displayname":"Alex (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:06.40644443Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1818,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220460688113746:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-220460688113746%3Amatrix.theocloud.dev","duration":50.253425,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:06.407075315Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:06.40789659Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1816,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":131.493741,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<189914 bytes>","time":"2026-03-06T19:22:06.421194337Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1819,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-197731905720552:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-197731905720552%3Amatrix.theocloud.dev","duration":57.77543,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:06.423327946Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1817,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":107.357042,"status_code":200,"response_length":334,"response_mime":"application/json","time":"2026-03-06T19:22:06.444365187Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1821,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-172941891379455%3Amatrix.theocloud.dev","duration":51.307692,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-172941891379455","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:06.45944419Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1822,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/iagMrDmHqhpMisgHlhpvKrII?user_id=%40whatsapp_lid-197731905720552%3Amatrix.theocloud.dev","duration":41.501358,"status_code":200,"response_length":35744,"response_mime":"image/jpeg","time":"2026-03-06T19:22:06.464978067Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1628,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3931.135864,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_lid-195790463058158:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363417948931600@g.us","displayname":"Testung"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363417948931600@g.us","displayname":"Testung"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2},"m.room.avatar":{"level":2},"m.room.name":{"level":2},"m.room.topic":{"level":2}},"member_actions":{"invite":2,"kick":2,"leave":2},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":""}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Testung"}}],"preset":"private_chat","power_level_content_override":{"users":{"@whatsapp_lid-70231405916394:matrix.theocloud.dev":75,"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0},"state_default":99,"ban":99},"com.beeper.local_room_id":"!120363417948931600@g.us.:matrix.theocloud.dev"},"time":"2026-03-06T19:22:06.479674544Z","message":"Request completed"} +{"level":"info","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","room_id":"!qUotrLYuNWPxuSMPyh:matrix.theocloud.dev","time":"2026-03-06T19:22:06.480133896Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1824,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-172941891379455:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-172941891379455%3Amatrix.theocloud.dev","duration":34.00233,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:06.49374754Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1814,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252510304526430:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-252510304526430%3Amatrix.theocloud.dev","duration":299.403069,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915256492723 (WA)"},"time":"2026-03-06T19:22:06.506090194Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:06.506758235Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1788,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824925785281662_3?ts=1772624395000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":736.826773,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Anaa gehen wir dann heute wie immer zu 16/17 Uhr ins Gym zusammen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:06.522262367Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE53ED4C108BD4B9267","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T11:39:55Z","event_id":"$st6QQLg6WfBMlZLDyIW8ddxKDinj6l9_8TSPVVXt-Zg","part_id":"","time":"2026-03-06T19:22:06.522421468Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1277","content":{"pdu":23,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:06.546094554Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1277","time":"2026-03-06T19:22:06.547108174Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1823,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":102.453351,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:06.547261896Z","message":"Request completed"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":1757,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915258731774:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1221.75547,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MVXbCQlVlZXaAIccCKeicuRA","displayname":"+4915258731774 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:06.552998386Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1825,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-197731905720552:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-197731905720552%3Amatrix.theocloud.dev","duration":112.032419,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iagMrDmHqhpMisgHlhpvKrII"},"time":"2026-03-06T19:22:06.577213378Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:06.578206883Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1826,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":104.413193,"status_code":200,"response_length":389,"response_mime":"application/json","time":"2026-03-06T19:22:06.589971105Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:06.60258824Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1831,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-42717778305055%3Amatrix.theocloud.dev","duration":39.062398,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-42717778305055","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:06.617575819Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1769,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915150515988:matrix.theocloud.dev?user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":1117.582605,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CLOiNyKbSlasDdKXAMAFbPPT","displayname":"Maja (WA)","membership":"join"},"time":"2026-03-06T19:22:06.621955065Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1829,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":77.085125,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:06.624870698Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1833,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491774904330:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491774904330%3Amatrix.theocloud.dev","duration":46.971818,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:06.649825039Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1638,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3993.290261,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_lid-195790463058158:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363192861790277@g.us","displayname":"Die phi-ratten","avatar_url":"mxc://matrix.theocloud.dev/EEYSTweKQnEegwroBwzjPlUJ"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363192861790277@g.us","displayname":"Die phi-ratten","avatar_url":"mxc://matrix.theocloud.dev/EEYSTweKQnEegwroBwzjPlUJ"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2},"m.room.avatar":{"level":2},"m.room.name":{"level":2},"m.room.topic":{"level":2}},"member_actions":{"invite":2,"kick":2,"leave":2},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"Bobber Kurwa\n\nMaja:\n- Mobilkommukikation\n- ⁠Funktionale Programmierung\n\nJosh:\n- Mobilkommunikation\n- ⁠Verteilte Systeme\n\nAlex:\n- Funktionale Programmierung \n- ⁠Kryptographie\n\nChrissi:\n- Robotic\n- ⁠Funktionale Programmierung\n\nTheo:\n- Komplexitätstheorie\n- ⁠Kryptographie\n\nDomi:\n- Robotic\n- ⁠Kryptographie"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Die phi-ratten"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/EEYSTweKQnEegwroBwzjPlUJ"}}],"preset":"private_chat","power_level_content_override":{"users":{"@theo:matrix.theocloud.dev":75,"@whatsapp_lid-195790463058158:matrix.theocloud.dev":75,"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0},"state_default":99,"ban":99},"com.beeper.local_room_id":"!120363192861790277@g.us.:matrix.theocloud.dev"},"time":"2026-03-06T19:22:06.660259255Z","message":"Request completed"} +{"level":"info","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","room_id":"!yywjyVJbcWYSiFwjvD:matrix.theocloud.dev","time":"2026-03-06T19:22:06.660888115Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1834,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-42717778305055:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-42717778305055%3Amatrix.theocloud.dev","duration":51.88403,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:06.669776094Z","message":"Request completed"} +{"level":"debug","transaction_id":"1278","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:06.673705906Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1278","time":"2026-03-06T19:22:06.674621677Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:06.674592553Z","message":""} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1832,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":94.600642,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:06.684980114Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1837,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915157943799%3Amatrix.theocloud.dev","duration":46.777028,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915157943799","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:06.697496327Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1772,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1162.761294,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:06.699714376Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1774,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/state/m.room.member/@whatsapp_491783743461:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1148.123904,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pdBxkhbkEzMdTweLoiuFiCMc","displayname":"Vitali (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:06.707881374Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1842,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157943799:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915157943799%3Amatrix.theocloud.dev","duration":27.141241,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:06.725045656Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1838,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":121.324855,"status_code":200,"response_length":422,"response_mime":"application/json","time":"2026-03-06T19:22:06.783044511Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1841,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":113.43066,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:06.799066174Z","message":"Request completed"} +{"level":"debug","transaction_id":"1279","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:06.819861272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1279","time":"2026-03-06T19:22:06.820163409Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1827,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-172941891379455:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-172941891379455%3Amatrix.theocloud.dev","duration":348.899543,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915222663440 (WA)"},"time":"2026-03-06T19:22:06.842830209Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:06.843691852Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1847,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":66.865603,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:06.850403828Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1849,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":86.079055,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:06.937056078Z","message":"Request completed"} +{"level":"debug","transaction_id":"1280","content":{"pdu":15,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:06.948234812Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1280","time":"2026-03-06T19:22:06.949327982Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1839,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-42717778305055:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-42717778305055%3Amatrix.theocloud.dev","duration":306.76346,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491784134011 (WA)"},"time":"2026-03-06T19:22:06.976732738Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:06.977485078Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:06.993403305Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1850,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.join_rules/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.565841,"status_code":200,"response_length":289,"response_mime":"application/json","time":"2026-03-06T19:22:07.00562632Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1851,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-172941891379455:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-172941891379455%3Amatrix.theocloud.dev","duration":22.527883,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:07.016279002Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:07.017227739Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1846,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157943799:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915157943799%3Amatrix.theocloud.dev","duration":304.076491,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Josi (WA)"},"time":"2026-03-06T19:22:07.029304504Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"130794756513956@lid","alternate_jid":"4915157943799@s.whatsapp.net","time":"2026-03-06T19:22:07.029772447Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"195790463058158@lid","alternate_jid":"4917641870516@s.whatsapp.net","time":"2026-03-06T19:22:07.029864639Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915253435944@s.whatsapp.net","time":"2026-03-06T19:22:07.030189475Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","time":"2026-03-06T19:22:07.032013334Z","message":"Remote profile updated"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","state_event":"CONNECTED","time":"2026-03-06T19:22:07.032080103Z","message":"Not sending bridge state as it's a duplicate"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":1775,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915234825973:matrix.theocloud.dev?user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":1476.487952,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lyGoEouXaxbYbHonsiEnPPND","displayname":"Mici (WA)","membership":"join"},"time":"2026-03-06T19:22:07.044662596Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1853,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-12940887474366%3Amatrix.theocloud.dev","duration":43.790715,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-12940887474366","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:07.061301245Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1840,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":395.269182,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<531818 bytes>","time":"2026-03-06T19:22:07.068401404Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1854,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915253435944%3Amatrix.theocloud.dev","duration":40.108145,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915253435944","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:07.070675466Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","req_id":1751,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev?ts=1772824925235&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1838.363409,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:07.073596686Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:07.073970063Z","message":"Added portal to space"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1845,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-252510304526430%3Amatrix.theocloud.dev","duration":365.218664,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43503 bytes>","time":"2026-03-06T19:22:07.07525502Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1856,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12940887474366:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12940887474366%3Amatrix.theocloud.dev","duration":44.265363,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:07.105916657Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1858,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252510304526430:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-252510304526430%3Amatrix.theocloud.dev","duration":36.633496,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:07.112212234Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1857,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253435944:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915253435944%3Amatrix.theocloud.dev","duration":42.93417,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:07.113915336Z","message":"Request completed"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1815,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s2186_957_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":878.141655,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:07.130251358Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:07.130506","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:07.130517038Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:07.130506","time":"2026-03-06T19:22:07.13070673Z","message":"Finished handling device list changes"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:07.144877085Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1860,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/AqYlVnTaKISCZvYnExVefXos?user_id=%40whatsapp_lid-252510304526430%3Amatrix.theocloud.dev","duration":37.043469,"status_code":200,"response_length":43503,"response_mime":"image/jpeg","time":"2026-03-06T19:22:07.14941606Z","message":"Request completed"} +{"level":"debug","transaction_id":"1281","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:07.15305023Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1281","time":"2026-03-06T19:22:07.153142491Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1780,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917680834617:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1549.481161,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XkUrOcJLxypIwkwNPfeIGgEU","displayname":"Sascha (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:07.181406795Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1784,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/state/m.room.member/@whatsapp_491605556877:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1486.149155,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sOgcNAreFByddNrBezfIEICB","displayname":"Vale (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:07.19672347Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1863,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252510304526430:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-252510304526430%3Amatrix.theocloud.dev","duration":75.077231,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AqYlVnTaKISCZvYnExVefXos"},"time":"2026-03-06T19:22:07.224814076Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:07.22583482Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1282","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:07.255128109Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1282","time":"2026-03-06T19:22:07.255619798Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1867,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-69114630545617%3Amatrix.theocloud.dev","duration":33.452532,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-69114630545617","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:07.259557362Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1787,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917616043654:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1518.816172,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"displayname":"+4917616043654 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:07.276535374Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1828,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824926523769981_2?ts=1772624412000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":756.732989,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sisi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:07.280626451Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A6E9DAA354C0C83A272","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T11:40:12Z","event_id":"$k-O2GK-QwRoC3G-8KjUqYZ4Ap9lH7bchCIwnhXzgduk","part_id":"","time":"2026-03-06T19:22:07.280785622Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1868,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-69114630545617:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-69114630545617%3Amatrix.theocloud.dev","duration":29.22156,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:07.289153626Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12940887474366:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12940887474366%3Amatrix.theocloud.dev","duration":224.588096,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491633662727 (WA)"},"time":"2026-03-06T19:22:07.330681174Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:07.33147954Z","message":""} +{"level":"debug","transaction_id":"1283","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:07.337553927Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1283","time":"2026-03-06T19:22:07.337959361Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1861,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253435944:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915253435944%3Amatrix.theocloud.dev","duration":227.187972,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Beatle (WA)"},"time":"2026-03-06T19:22:07.341255284Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:07.341931497Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1793,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1566.091314,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:07.442087528Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1864,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-42717778305055%3Amatrix.theocloud.dev","duration":304.210727,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55575 bytes>","time":"2026-03-06T19:22:07.462123232Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:07.499602865Z","message":""} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1686,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3809.651418,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_lid-195790463058158:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363326854732201@g.us","displayname":"Umzug Halle","avatar_url":"mxc://matrix.theocloud.dev/QQhUTnsdyMlugQrwkDPSuoBw"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363326854732201@g.us","displayname":"Umzug Halle","avatar_url":"mxc://matrix.theocloud.dev/QQhUTnsdyMlugQrwkDPSuoBw"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2},"m.room.avatar":{"level":2},"m.room.name":{"level":2},"m.room.topic":{"level":2}},"member_actions":{"invite":2,"kick":2,"leave":2},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":""}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Umzug Halle"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/QQhUTnsdyMlugQrwkDPSuoBw"}}],"preset":"private_chat","power_level_content_override":{"users":{"@whatsapp_lid-187849085329414:matrix.theocloud.dev":75,"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0},"state_default":99,"ban":99},"com.beeper.local_room_id":"!120363326854732201@g.us.:matrix.theocloud.dev"},"time":"2026-03-06T19:22:07.500104402Z","message":"Request completed"} +{"level":"info","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","room_id":"!RLPmAJGDXGPlIucoNA:matrix.theocloud.dev","time":"2026-03-06T19:22:07.50060545Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1871,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-69114630545617:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-69114630545617%3Amatrix.theocloud.dev","duration":214.548488,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"🤎☁️ ~ Lukas (WA)"},"time":"2026-03-06T19:22:07.50388524Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:07.504539941Z","message":""} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","req_id":1795,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1609.911433,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:07.508374418Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1874,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-42717778305055:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-42717778305055%3Amatrix.theocloud.dev","duration":50.816073,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:07.513250452Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1878,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/hfobDmrIRJPvBJWBuzQwCwcs?user_id=%40whatsapp_lid-42717778305055%3Amatrix.theocloud.dev","duration":26.879822,"status_code":200,"response_length":55575,"response_mime":"image/jpeg","time":"2026-03-06T19:22:07.540277221Z","message":"Request completed"} +{"level":"debug","transaction_id":"1284","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:07.551397707Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1284","time":"2026-03-06T19:22:07.551677215Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1875,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":69.991251,"status_code":200,"response_length":390,"response_mime":"application/json","time":"2026-03-06T19:22:07.571470637Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1798,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1643.698299,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:07.57349627Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1879,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-42717778305055:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-42717778305055%3Amatrix.theocloud.dev","duration":80.073183,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hfobDmrIRJPvBJWBuzQwCwcs"},"time":"2026-03-06T19:22:07.620610078Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:07.62171568Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1880,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.580235,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:07.64846329Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1882,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-91057719120052%3Amatrix.theocloud.dev","duration":37.152982,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-91057719120052","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:07.659144608Z","message":"Request completed"} +{"level":"debug","transaction_id":"1285","content":{"pdu":13,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:07.663309997Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1285","time":"2026-03-06T19:22:07.664028185Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:07.665363288Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1808,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1600.386701,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:07.674956255Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1872,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":353.290872,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<134104 bytes>","time":"2026-03-06T19:22:07.680882297Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_count":100,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:07.681670047Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_count":100,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:07.681771807Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1884,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-91057719120052:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-91057719120052%3Amatrix.theocloud.dev","duration":33.386881,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:07.692895925Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1885,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-69114630545617:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-69114630545617%3Amatrix.theocloud.dev","duration":33.309146,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:07.698926311Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:07.699706797Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1806,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915901353554:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1631.625794,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"displayname":"Aylin (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:07.701163845Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1883,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":65.584348,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:07.714614896Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1889,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-140325221875807%3Amatrix.theocloud.dev","duration":39.387862,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-140325221875807","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:07.739349584Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1809,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1666.557583,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:07.757713195Z","message":"Request completed"} +{"level":"debug","transaction_id":"1286","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:07.771465615Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1286","time":"2026-03-06T19:22:07.77170685Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1892,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-140325221875807:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-140325221875807%3Amatrix.theocloud.dev","duration":36.306494,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:07.775972323Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1876,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-12940887474366%3Amatrix.theocloud.dev","duration":282.556709,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<29691 bytes>","time":"2026-03-06T19:22:07.790720274Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1895,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12940887474366:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12940887474366%3Amatrix.theocloud.dev","duration":18.473334,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:07.809496024Z","message":"Request completed"} +{"level":"debug","transaction_id":"1287","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:07.834863273Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1287","time":"2026-03-06T19:22:07.835180775Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1896,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/prVwKQWmMbbqdYpJGhpnfNKm?user_id=%40whatsapp_lid-12940887474366%3Amatrix.theocloud.dev","duration":32.531383,"status_code":200,"response_length":29691,"response_mime":"image/jpeg","time":"2026-03-06T19:22:07.842180362Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1812,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1709.828952,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:07.853292816Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:07.858177999Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1870,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824927281631969_3?ts=1772624413000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":589.785458,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ouioui","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:07.871556972Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A87BAC04476DF58A106","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T11:40:13Z","event_id":"$W5CJjZxmqrtaxU_m0MDsV9euV52A5SHd5Wy7iTtZqBg","part_id":"","time":"2026-03-06T19:22:07.871700428Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1888,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-91057719120052:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-91057719120052%3Amatrix.theocloud.dev","duration":200.991417,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491773825063 (WA)"},"time":"2026-03-06T19:22:07.894070608Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:07.894633326Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1897,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12940887474366:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12940887474366%3Amatrix.theocloud.dev","duration":63.663128,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/prVwKQWmMbbqdYpJGhpnfNKm"},"time":"2026-03-06T19:22:07.906088217Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:07.907150028Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1898,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.631696,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:07.914473332Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1901,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-115947104927857%3Amatrix.theocloud.dev","duration":31.803488,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-115947104927857","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:07.939271437Z","message":"Request completed"} +{"level":"debug","transaction_id":"1288","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:07.941573506Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1288","time":"2026-03-06T19:22:07.941657945Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1820,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/state/m.room.member/@whatsapp_491731828379:matrix.theocloud.dev?user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":1566.078043,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kqQEaYFpnRMgETLNDUCxsbfg","displayname":"Alex (WA)","membership":"join"},"time":"2026-03-06T19:22:07.973147213Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1894,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-140325221875807:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-140325221875807%3Amatrix.theocloud.dev","duration":201.228252,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jens B. (WA)"},"time":"2026-03-06T19:22:07.977405143Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:07.977945372Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1903,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115947104927857:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-115947104927857%3Amatrix.theocloud.dev","duration":48.605288,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:07.988305207Z","message":"Request completed"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":1830,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915258731774:matrix.theocloud.dev?user_id=%40whatsapp_4915258731774%3Amatrix.theocloud.dev","duration":1439.19759,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MVXbCQlVlZXaAIccCKeicuRA","displayname":"+4915258731774 (WA)","membership":"join"},"time":"2026-03-06T19:22:07.992772943Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:08.046388361Z","message":""} +{"level":"debug","transaction_id":"1289","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:08.048737923Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1289","time":"2026-03-06T19:22:08.04906227Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1720,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":3597.384813,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_lid-195790463058158:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363422109419332@g.us","displayname":"Geburtstag Vitali / 25.11."}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363422109419332@g.us","displayname":"Geburtstag Vitali / 25.11."}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2},"m.room.avatar":{"level":2},"m.room.name":{"level":2},"m.room.topic":{"level":2}},"member_actions":{"invite":2,"kick":2,"leave":2},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":""}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Geburtstag Vitali / 25.11."}}],"preset":"private_chat","power_level_content_override":{"users":{"@whatsapp_lid-187849085329414:matrix.theocloud.dev":75,"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0},"state_default":99,"ban":99},"com.beeper.local_room_id":"!120363422109419332@g.us.:matrix.theocloud.dev"},"time":"2026-03-06T19:22:08.055891092Z","message":"Request completed"} +{"level":"info","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","room_id":"!tBlZXyMrGKIRODvGsg:matrix.theocloud.dev","time":"2026-03-06T19:22:08.056254621Z","message":"Matrix room created"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1907,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":56.838776,"status_code":200,"response_length":390,"response_mime":"application/json","time":"2026-03-06T19:22:08.113672878Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1835,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1495.823906,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:08.118632792Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:08.127374871Z","message":""} +{"level":"debug","transaction_id":"1290","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:08.14826272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1290","time":"2026-03-06T19:22:08.148613398Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1909,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":83.203301,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:08.197373526Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1899,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915253435944%3Amatrix.theocloud.dev","duration":329.895408,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34459 bytes>","time":"2026-03-06T19:22:08.20034622Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1905,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115947104927857:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-115947104927857%3Amatrix.theocloud.dev","duration":223.646064,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491727367070 (WA)"},"time":"2026-03-06T19:22:08.212158632Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:08.212997367Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1913,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253435944:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915253435944%3Amatrix.theocloud.dev","duration":25.434018,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:08.226152566Z","message":"Request completed"} +{"level":"debug","transaction_id":"1291","content":{"pdu":12,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:08.243204401Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1291","time":"2026-03-06T19:22:08.244086788Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1912,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.743652,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:08.255648537Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1914,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/gKwdBiKGvDmBpMlZhMckajdN?user_id=%40whatsapp_4915253435944%3Amatrix.theocloud.dev","duration":35.399453,"status_code":200,"response_length":34459,"response_mime":"image/jpeg","time":"2026-03-06T19:22:08.261660275Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1843,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1601.380346,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:08.301714571Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1836,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917658289477:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1680.810632,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tTwLLBqsJPDFaInkxxZKjZwa","displayname":"+4917658289477 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:08.306715064Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1916,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253435944:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915253435944%3Amatrix.theocloud.dev","duration":59.804137,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gKwdBiKGvDmBpMlZhMckajdN"},"time":"2026-03-06T19:22:08.321759145Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1844,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/state/m.room.member/@whatsapp_491783743461:matrix.theocloud.dev?user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":1641.189706,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pdBxkhbkEzMdTweLoiuFiCMc","displayname":"Vitali (WA)","membership":"join"},"time":"2026-03-06T19:22:08.349601392Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1919,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491625626441%3Amatrix.theocloud.dev","duration":29.931716,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491625626441","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:08.3528647Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1887,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824927682043842_1?ts=1772482104000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":685.185165,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hatten wir doch gestern das Thema: Prioritäten","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:08.367382869Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AB07EDF49C73FFEA6B9","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:08:24Z","event_id":"$lgRlzmAtLwv6yYl2n4mrXTTZblpSN89Jfitovadl2ms","part_id":"","time":"2026-03-06T19:22:08.367521227Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1917,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.648607,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:08.374026958Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1908,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-91057719120052%3Amatrix.theocloud.dev","duration":310.614768,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<60930 bytes>","time":"2026-03-06T19:22:08.384311503Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1921,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491625626441:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491625626441%3Amatrix.theocloud.dev","duration":38.320533,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:08.391508254Z","message":"Request completed"} +{"level":"debug","transaction_id":"1292","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:08.400017619Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1292","time":"2026-03-06T19:22:08.400109601Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1924,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-91057719120052:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-91057719120052%3Amatrix.theocloud.dev","duration":35.922292,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:08.420547806Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1926,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/xTXyjRsNQSwHdMKStsYuFhvn?user_id=%40whatsapp_lid-91057719120052%3Amatrix.theocloud.dev","duration":40.979845,"status_code":200,"response_length":60930,"response_mime":"image/jpeg","time":"2026-03-06T19:22:08.461677113Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1911,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-140325221875807%3Amatrix.theocloud.dev","duration":328.831921,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61605 bytes>","time":"2026-03-06T19:22:08.465618798Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1900,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824927872580579_4?ts=1772624424000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":622.986487,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auch wenn bodenlos schultermuskelkater ich","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:08.495690967Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A154FFC128174D0E780","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T11:40:24Z","event_id":"$GWDN2I50HnJWAWeo6bHvmqkQhuOHm3mrmvf_ksw_Dl4","part_id":"","time":"2026-03-06T19:22:08.495816054Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1293","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:08.512074762Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1293","time":"2026-03-06T19:22:08.512596832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1928,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-140325221875807:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-140325221875807%3Amatrix.theocloud.dev","duration":47.123795,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:08.513104096Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1848,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1730.085357,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:08.530513663Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1927,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-91057719120052:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-91057719120052%3Amatrix.theocloud.dev","duration":85.119074,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xTXyjRsNQSwHdMKStsYuFhvn"},"time":"2026-03-06T19:22:08.547045454Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:08.547922043Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1930,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/iOdArJhUbYJYWuEglwVvRVfa?user_id=%40whatsapp_lid-140325221875807%3Amatrix.theocloud.dev","duration":37.560441,"status_code":200,"response_length":61605,"response_mime":"image/jpeg","time":"2026-03-06T19:22:08.550781313Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1852,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127753970032737:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1552.815496,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sYSbpNQTvisKpJOIimOumfcj","com.beeper.exclude_from_timeline":true,"displayname":"Josh (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:08.55903331Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:08.566879383Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1932,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-9461947228209%3Amatrix.theocloud.dev","duration":30.960143,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-9461947228209","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:08.579147028Z","message":"Request completed"} +{"level":"debug","transaction_id":"1294","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:08.603891284Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1294","time":"2026-03-06T19:22:08.603980961Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":1855,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1561.718981,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:08.607089847Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1935,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-9461947228209:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-9461947228209%3Amatrix.theocloud.dev","duration":27.950572,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:22:08.607498773Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1933,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-140325221875807:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-140325221875807%3Amatrix.theocloud.dev","duration":68.571708,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iOdArJhUbYJYWuEglwVvRVfa"},"time":"2026-03-06T19:22:08.619556612Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:08.620369784Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1925,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491625626441:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491625626441%3Amatrix.theocloud.dev","duration":245.280526,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Philipp (WA)"},"time":"2026-03-06T19:22:08.636976865Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:08.637730253Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1938,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":29.150601,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-198041059483854","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:08.649782713Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1865,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917680834617:matrix.theocloud.dev?user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":1479.056817,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XkUrOcJLxypIwkwNPfeIGgEU","displayname":"Sascha (WA)","membership":"join"},"time":"2026-03-06T19:22:08.661146599Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1939,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198041059483854:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":28.920331,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:08.679055747Z","message":"Request completed"} +{"level":"debug","transaction_id":"1295","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:08.696858316Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1295","time":"2026-03-06T19:22:08.697461264Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1866,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/state/m.room.member/@whatsapp_491605556877:matrix.theocloud.dev?user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":1567.27437,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sOgcNAreFByddNrBezfIEICB","displayname":"Vale (WA)","membership":"join"},"time":"2026-03-06T19:22:08.764584375Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:08.78889086Z","message":""} +{"level":"debug","transaction_id":"1296","content":{"pdu":1,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:08.791258162Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1296","time":"2026-03-06T19:22:08.791626859Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1869,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917616043654:matrix.theocloud.dev?user_id=%40whatsapp_4917616043654%3Amatrix.theocloud.dev","duration":1543.649824,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"displayname":"+4917616043654 (WA)","membership":"join"},"time":"2026-03-06T19:22:08.820893328Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1936,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-9461947228209:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-9461947228209%3Amatrix.theocloud.dev","duration":223.816339,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"🤏🏻😎 (WA)"},"time":"2026-03-06T19:22:08.831528271Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1944,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491625626441:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491625626441%3Amatrix.theocloud.dev","duration":42.98313,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:08.832222782Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:08.832466462Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1946,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-74526322876491%3Amatrix.theocloud.dev","duration":23.297684,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-74526322876491","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:08.858387838Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1947,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-74526322876491:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-74526322876491%3Amatrix.theocloud.dev","duration":29.672462,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:08.888447715Z","message":"Request completed"} +{"level":"debug","transaction_id":"1297","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:08.896675337Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1297","time":"2026-03-06T19:22:08.896954496Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1941,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198041059483854:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":226.465524,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vale (WA)"},"time":"2026-03-06T19:22:08.905728493Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:08.906516732Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1873,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1496.170812,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:08.939116281Z","message":"Request completed"} +{"level":"debug","transaction_id":"1298","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:09.02435248Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1298","time":"2026-03-06T19:22:09.024675011Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1949,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":87.042178,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:09.026938667Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1942,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-115947104927857%3Amatrix.theocloud.dev","duration":331.730372,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<36712 bytes>","time":"2026-03-06T19:22:09.030126126Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1922,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824928368379657_4?ts=1772482120000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":669.82351,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja isso","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:09.038364992Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A49FB842679E332DF1E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:08:40Z","event_id":"$Ej3xug4Fn2kJ2nN3XRMvOCl7PBbhUnUmyjrqf4fWOsU","part_id":"","time":"2026-03-06T19:22:09.038496644Z","message":"Sent message part to Matrix"} +{"level":"warn","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A678206F4484E04C80A","PartID":null},"time":"2026-03-06T19:22:09.039589396Z","message":"Reply target message not found in database"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1951,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115947104927857:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-115947104927857%3Amatrix.theocloud.dev","duration":19.472986,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:09.050000634Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:09.066440093Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1953,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wCwzuzwyQHRZRBnvBgKLxamM?user_id=%40whatsapp_lid-115947104927857%3Amatrix.theocloud.dev","duration":41.052063,"status_code":200,"response_length":36712,"response_mime":"image/jpeg","time":"2026-03-06T19:22:09.091145237Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:09.099352255Z","message":""} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1881,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1539.841119,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:09.113947112Z","message":"Request completed"} +{"level":"debug","transaction_id":"1299","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:09.132187033Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1299","time":"2026-03-06T19:22:09.132584156Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1929,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824928496986121_5?ts=1772624428000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":650.135061,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yippie","m.mentions":{"user_ids":["@whatsapp_4915903048642:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$W5CJjZxmqrtaxU_m0MDsV9euV52A5SHd5Wy7iTtZqBg"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:09.147255Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2932994E0E02A5B558","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T11:40:28Z","event_id":"$OJkxOQ5C5YQ_qUm6F0w4NYWzauzyIqENHOPtGPV0ioI","part_id":"","time":"2026-03-06T19:22:09.14740118Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1956,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-9461947228209:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-9461947228209%3Amatrix.theocloud.dev","duration":51.37537,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:09.151040518Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:09.152073763Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1948,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-74526322876491:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-74526322876491%3Amatrix.theocloud.dev","duration":271.144143,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Philipp (WA)"},"time":"2026-03-06T19:22:09.159785251Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:09.160286998Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1955,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-115947104927857:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-115947104927857%3Amatrix.theocloud.dev","duration":85.345572,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wCwzuzwyQHRZRBnvBgKLxamM"},"time":"2026-03-06T19:22:09.176773949Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:09.1774554Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1959,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-199450228215815%3Amatrix.theocloud.dev","duration":28.997088,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-199450228215815","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:09.181405884Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1957,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.046149,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:09.18676348Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1960,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-140918044790963%3Amatrix.theocloud.dev","duration":20.049393,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-140918044790963","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:09.197707545Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1524.484284,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:09.200096427Z","message":"Request completed"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","req_id":1877,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1694.32859,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:09.203488664Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1961,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-199450228215815:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-199450228215815%3Amatrix.theocloud.dev","duration":25.469986,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:09.207158732Z","message":"Request completed"} +{"level":"debug","transaction_id":"1300","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:09.211537Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1300","time":"2026-03-06T19:22:09.21194858Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1963,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-140918044790963:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-140918044790963%3Amatrix.theocloud.dev","duration":25.612883,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:09.223648337Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1964,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":42.482571,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:09.243236004Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:09.248362352Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:09.290638678Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1893,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1564.327098,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:09.322698557Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:09.325192901Z","message":""} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1890,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915901353554:matrix.theocloud.dev?user_id=%40whatsapp_4915901353554%3Amatrix.theocloud.dev","duration":1624.313174,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"displayname":"Aylin (WA)","membership":"join"},"time":"2026-03-06T19:22:09.326070608Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1891,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220641227747573:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1614.467378,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hcAkoMihfYoWRUINswywSzGJ","com.beeper.exclude_from_timeline":true,"displayname":"Anastasia (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:09.330294176Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1954,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":268.061028,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43921 bytes>","time":"2026-03-06T19:22:09.341603306Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1966,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-199450228215815:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-199450228215815%3Amatrix.theocloud.dev","duration":147.493683,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"🏋️Матвей (WA)"},"time":"2026-03-06T19:22:09.354825693Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:09.355680911Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1970,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-74526322876491:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-74526322876491%3Amatrix.theocloud.dev","duration":32.100317,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:09.357607089Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491625626441@s.whatsapp.net","alternate_jid":"74526322876491@lid","time":"2026-03-06T19:22:09.357990453Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491629826171@s.whatsapp.net","time":"2026-03-06T19:22:09.358263187Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1967,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-140918044790963:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-140918044790963%3Amatrix.theocloud.dev","duration":141.800146,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915789414260 (WA)"},"time":"2026-03-06T19:22:09.365624765Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:09.366530129Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1973,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198041059483854:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":27.661705,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:09.369675333Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1969,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":55.506605,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:09.378986627Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1974,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491629826171%3Amatrix.theocloud.dev","duration":24.650738,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491629826171","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:09.383183585Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1975,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/GpmbnAzaYSAXefYtDeDCQleb?user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":26.978997,"status_code":200,"response_length":43921,"response_mime":"image/jpeg","time":"2026-03-06T19:22:09.396771735Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1977,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491629826171:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491629826171%3Amatrix.theocloud.dev","duration":19.551697,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:09.403145885Z","message":"Request completed"} +{"level":"debug","transaction_id":"1301","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:09.416688149Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1301","time":"2026-03-06T19:22:09.417014801Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1522.039318,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:09.437012581Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1978,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198041059483854:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":55.275288,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GpmbnAzaYSAXefYtDeDCQleb"},"time":"2026-03-06T19:22:09.452345809Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:09.453119451Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1981,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-276351164624932%3Amatrix.theocloud.dev","duration":31.777437,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-276351164624932","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:09.485138611Z","message":"Request completed"} +{"level":"debug","transaction_id":"1302","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:09.506544619Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1302","time":"2026-03-06T19:22:09.50702248Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1982,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-276351164624932:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-276351164624932%3Amatrix.theocloud.dev","duration":26.961955,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:09.512446076Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:09.523192278Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1952,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824929039919260_6?ts=1772482144000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":497.325899,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Maja nutzt das einfach nur um ihren Dickschädel halt durchzudrücken","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:09.537395948Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A37C8715E59C0C8FE8C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:09:04Z","event_id":"$7mtM06w9Y_EaVBnxuCJt6oSp8m3YT1xb538_fQkjiQE","part_id":"","time":"2026-03-06T19:22:09.537489327Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:09.538879117Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1904,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1569.696497,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:09.543668127Z","message":"Request completed"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":1906,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1584.269214,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:09.57771767Z","message":"Request completed"} +{"level":"debug","transaction_id":"1303","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:09.59576343Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1303","time":"2026-03-06T19:22:09.596013395Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1979,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491629826171:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491629826171%3Amatrix.theocloud.dev","duration":208.486603,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491629826171 (WA)"},"time":"2026-03-06T19:22:09.611820293Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:09.612373863Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1958,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824929148267223_7?ts=1772624446000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":467.012494,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ist ja auch erstmal wieder eine Woche zum Reinkommen","m.mentions":{"user_ids":["@whatsapp_4915903048642:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$GWDN2I50HnJWAWeo6bHvmqkQhuOHm3mrmvf_ksw_Dl4"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:09.615413186Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0BDE6C46D8B68AF68B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T11:40:46Z","event_id":"$yDrfFrt_8bxLGtuvTMy5HYcF4XJuEbi7Pp5diWuevX0","part_id":"","time":"2026-03-06T19:22:09.615506216Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1910,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1508.809736,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:09.628112176Z","message":"Request completed"} +{"level":"debug","transaction_id":"1304","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:09.664572742Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1304","time":"2026-03-06T19:22:09.665389337Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1990,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":46.501361,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:09.675164312Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1983,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-276351164624932:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-276351164624932%3Amatrix.theocloud.dev","duration":175.517868,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491794397891 (WA)"},"time":"2026-03-06T19:22:09.688210069Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:09.689035254Z","message":""} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1915,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1503.874337,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:09.760813698Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:09.769140216Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1984,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-199450228215815%3Amatrix.theocloud.dev","duration":260.98741,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<67249 bytes>","time":"2026-03-06T19:22:09.792037285Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1918,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917658289477:matrix.theocloud.dev?user_id=%40whatsapp_4917658289477%3Amatrix.theocloud.dev","duration":1497.470994,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tTwLLBqsJPDFaInkxxZKjZwa","displayname":"+4917658289477 (WA)","membership":"join"},"time":"2026-03-06T19:22:09.804911928Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1994,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-199450228215815:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-199450228215815%3Amatrix.theocloud.dev","duration":30.017063,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:09.822601353Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1988,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-140918044790963%3Amatrix.theocloud.dev","duration":248.592443,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35475 bytes>","time":"2026-03-06T19:22:09.8507266Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1996,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ueHGVqQluxwydpXALcBNjGZi?user_id=%40whatsapp_lid-199450228215815%3Amatrix.theocloud.dev","duration":32.600945,"status_code":200,"response_length":67249,"response_mime":"image/jpeg","time":"2026-03-06T19:22:09.855346802Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:09.857600051Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":1920,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1521.705541,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:09.872167739Z","message":"Request completed"} +{"level":"debug","transaction_id":"1305","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:09.880546569Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1305","time":"2026-03-06T19:22:09.880873012Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":1997,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-140918044790963:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-140918044790963%3Amatrix.theocloud.dev","duration":32.98438,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:09.884074439Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2001,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/JQlITVRLtCFovlwNJIKeCRBy?user_id=%40whatsapp_lid-140918044790963%3Amatrix.theocloud.dev","duration":29.941005,"status_code":200,"response_length":35475,"response_mime":"image/jpeg","time":"2026-03-06T19:22:09.914170424Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":1998,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-199450228215815:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-199450228215815%3Amatrix.theocloud.dev","duration":60.139798,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ueHGVqQluxwydpXALcBNjGZi"},"time":"2026-03-06T19:22:09.915786852Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:09.916786992Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2003,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-66662220976313%3Amatrix.theocloud.dev","duration":34.145995,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-66662220976313","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:09.951198597Z","message":"Request completed"} +{"level":"debug","transaction_id":"1306","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:09.971091264Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1306","time":"2026-03-06T19:22:09.971451161Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2004,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66662220976313:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66662220976313%3Amatrix.theocloud.dev","duration":29.343435,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:09.980882374Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2002,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-140918044790963:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-140918044790963%3Amatrix.theocloud.dev","duration":69.439078,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JQlITVRLtCFovlwNJIKeCRBy"},"time":"2026-03-06T19:22:09.983882236Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:09.984578842Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":1931,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":1473.37208,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:10.004498608Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":1934,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127753970032737:matrix.theocloud.dev?user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":1449.019847,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sYSbpNQTvisKpJOIimOumfcj","com.beeper.exclude_from_timeline":true,"displayname":"Josh (WA)","membership":"join"},"time":"2026-03-06T19:22:10.008662601Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2006,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-48498888163368%3Amatrix.theocloud.dev","duration":31.369767,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-48498888163368","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:10.01614347Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":1923,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1689.683176,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:10.064159219Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2009,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-48498888163368:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-48498888163368%3Amatrix.theocloud.dev","duration":47.714869,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:10.064190718Z","message":"Request completed"} +{"level":"info","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:10.064835501Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_count":51,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:10.067551735Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_count":51,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:10.067658942Z","message":"Sending backfill messages"} +{"level":"debug","transaction_id":"1307","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:10.078992656Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1307","time":"2026-03-06T19:22:10.079248139Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":1985,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824929538086059_8?ts=1772482153000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":548.237166,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"das und nichts anderes","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:10.086461792Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A94B66EB2E7B9C3267A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:09:13Z","event_id":"$XtEdrMzkHKX9l0ITFQMI2zD4Y_-Hv4nAGOySOyXWJqk","part_id":"","time":"2026-03-06T19:22:10.086646315Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2007,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":81.729142,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:10.086920725Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":1993,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491629826171%3Amatrix.theocloud.dev","duration":312.90224,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<115383 bytes>","time":"2026-03-06T19:22:10.092118172Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2015,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491629826171:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491629826171%3Amatrix.theocloud.dev","duration":29.281206,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:10.121725192Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":1937,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1555.665058,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:10.163482661Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2016,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/iqxtixcEQqKbXcQLuAsfpiDO?user_id=%40whatsapp_491629826171%3Amatrix.theocloud.dev","duration":43.326124,"status_code":200,"response_length":115383,"response_mime":"image/jpeg","time":"2026-03-06T19:22:10.165197008Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":1989,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824929616061392_5?ts=1772624459000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":553.886842,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich bissi klimmis core und standi nur","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:10.170072832Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AF36F2ABBB42B172332","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T11:40:59Z","event_id":"$SUugyGiw5OevUnkfl-hZlSrHeoCmzNDpukT1SXecf7M","part_id":"","time":"2026-03-06T19:22:10.17021077Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1308","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:10.192316039Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1308","time":"2026-03-06T19:22:10.192904739Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":1999,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-276351164624932%3Amatrix.theocloud.dev","duration":329.615899,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<75802 bytes>","time":"2026-03-06T19:22:10.196594502Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2020,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-276351164624932:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-276351164624932%3Amatrix.theocloud.dev","duration":25.169665,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:10.222053244Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2005,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66662220976313:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66662220976313%3Amatrix.theocloud.dev","duration":247.701816,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alex (WA)"},"time":"2026-03-06T19:22:10.22873861Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:10.229495909Z","message":""} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":2017,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.147067,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:10.23119957Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2018,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491629826171:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491629826171%3Amatrix.theocloud.dev","duration":66.362878,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iqxtixcEQqKbXcQLuAsfpiDO"},"time":"2026-03-06T19:22:10.231785477Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491731365871@s.whatsapp.net","alternate_jid":"70231405916394@lid","time":"2026-03-06T19:22:10.232280448Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917624407266@s.whatsapp.net","time":"2026-03-06T19:22:10.232646282Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2021,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ZDFCsTYRdxovxPMMbdNXIlnB?user_id=%40whatsapp_lid-276351164624932%3Amatrix.theocloud.dev","duration":20.688449,"status_code":200,"response_length":75802,"response_mime":"image/jpeg","time":"2026-03-06T19:22:10.242876349Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2023,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917624407266%3Amatrix.theocloud.dev","duration":22.030817,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917624407266","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:10.254917076Z","message":"Request completed"} +{"level":"debug","transaction_id":"1309","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:10.264388797Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1309","time":"2026-03-06T19:22:10.264722363Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2025,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624407266:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917624407266%3Amatrix.theocloud.dev","duration":23.573701,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:10.278826159Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2010,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-48498888163368:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-48498888163368%3Amatrix.theocloud.dev","duration":218.411111,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Florian Weis (WA)"},"time":"2026-03-06T19:22:10.282780765Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:10.283392303Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2024,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-276351164624932:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-276351164624932%3Amatrix.theocloud.dev","duration":50.365171,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZDFCsTYRdxovxPMMbdNXIlnB"},"time":"2026-03-06T19:22:10.293501613Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:10.294474096Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":1940,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1660.111285,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:10.322225828Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2027,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-164154254037235%3Amatrix.theocloud.dev","duration":30.333937,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-164154254037235","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:10.325116736Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2029,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-164154254037235:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-164154254037235%3Amatrix.theocloud.dev","duration":37.337225,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:10.362906818Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":1943,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1599.455144,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:10.365019336Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:10.396143468Z","message":""} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":1945,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1577.743786,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:10.39956867Z","message":"Request completed"} +{"level":"debug","transaction_id":"1310","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:10.426375855Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1310","time":"2026-03-06T19:22:10.426694196Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:10.448626465Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2026,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624407266:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917624407266%3Amatrix.theocloud.dev","duration":172.67515,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917624407266 (WA)"},"time":"2026-03-06T19:22:10.451670677Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:10.452517654Z","message":""} +{"level":"debug","transaction_id":"1311","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:10.476423384Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1311","time":"2026-03-06T19:22:10.476878825Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2030,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-164154254037235:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-164154254037235%3Amatrix.theocloud.dev","duration":135.007711,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491723092920 (WA)"},"time":"2026-03-06T19:22:10.498154298Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:10.499013288Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":1950,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1488.806439,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:10.516223316Z","message":"Request completed"} +{"level":"info","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:10.517048222Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","orig_participant":"195790463058158@lid","rerouted_participant":"4917641870516@s.whatsapp.net","time":"2026-03-06T19:22:10.521360489Z","message":"Rerouting message key (PN recipient in LID DM)"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":1962,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1377.596761,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:10.564765675Z","message":"Request completed"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","req_id":1965,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1363.394907,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:10.567435045Z","message":"Request completed"} +{"level":"info","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:10.568323368Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","action":"forward backfill","message_count":1,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:10.569160357Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","action":"forward backfill","message_count":1,"batch_send":false,"mark_read":true,"mark_read_past_threshold":true,"time":"2026-03-06T19:22:10.569257507Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2013,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824930087570327_2?ts=1772482184000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":503.084946,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:10.590797333Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A63F6842233741A5CB7","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:09:44Z","event_id":"$NB2aSlIqu8ZNaFawuVi9WT7FzLpusuncu3KDYenAOxo","part_id":"","time":"2026-03-06T19:22:10.590928357Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1312","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:10.620620933Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1312","time":"2026-03-06T19:22:10.620724579Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:10.670971019Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2019,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824930171089385_9?ts=1772624471000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":513.720518,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oki","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:10.684952521Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A018231BB8EC322C561","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T11:41:11Z","event_id":"$JohgVohiAPiCJPAYk40mkvwzdbLuR7cka-fOMtDi00I","part_id":"","time":"2026-03-06T19:22:10.685087456Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2012,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824930067928044_1?ts=1770362865000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":620.858884,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hast du die Mail auch bekommen mit dieser Infoveranstaltung von Pätzoldt?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:10.688921863Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3EB0E75F9815E52C55AD07","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-06T07:27:45Z","event_id":"$yZdr-USotlt5jFSzMHfQuAw_gu7HkpcEZ67vCqj9wg8","part_id":"","time":"2026-03-06T19:22:10.689074958Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1313","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:10.745195825Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1313","time":"2026-03-06T19:22:10.745789554Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:10.75914087Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2033,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-48498888163368%3Amatrix.theocloud.dev","duration":311.330162,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<91211 bytes>","time":"2026-03-06T19:22:10.768706109Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":1972,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220641227747573:matrix.theocloud.dev?user_id=%40whatsapp_lid-220641227747573%3Amatrix.theocloud.dev","duration":1463.145504,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hcAkoMihfYoWRUINswywSzGJ","com.beeper.exclude_from_timeline":true,"displayname":"Anastasia (WA)","membership":"join"},"time":"2026-03-06T19:22:10.794113308Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2042,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-48498888163368:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-48498888163368%3Amatrix.theocloud.dev","duration":38.078461,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:10.807124771Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:10.811040545Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":1968,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1573.077558,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:10.816807276Z","message":"Request completed"} +{"level":"info","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:10.817685891Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":1971,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1492.753851,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:10.819679537Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2045,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/xhbUITlxJOdMRvABLbPxiYRY?user_id=%40whatsapp_lid-48498888163368%3Amatrix.theocloud.dev","duration":36.403575,"status_code":200,"response_length":91211,"response_mime":"image/jpeg","time":"2026-03-06T19:22:10.843651897Z","message":"Request completed"} +{"level":"debug","transaction_id":"1314","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:10.851122359Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1314","time":"2026-03-06T19:22:10.851649528Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2035,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-66662220976313%3Amatrix.theocloud.dev","duration":358.694703,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<27066 bytes>","time":"2026-03-06T19:22:10.917213132Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"voice message","time":"2026-03-06T19:22:10.918383548Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2048,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-48498888163368:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-48498888163368%3Amatrix.theocloud.dev","duration":75.24562,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xhbUITlxJOdMRvABLbPxiYRY"},"time":"2026-03-06T19:22:10.919125272Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:10.920093006Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:10.953418425Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2050,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66662220976313:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-66662220976313%3Amatrix.theocloud.dev","duration":37.163039,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:10.954760653Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"voice message","time":"2026-03-06T19:22:10.956493577Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","orig_participant":"195790463058158@lid","rerouted_participant":"4917641870516@s.whatsapp.net","time":"2026-03-06T19:22:10.956710437Z","message":"Rerouting message key (PN recipient in LID DM)"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","orig_participant":"195790463058158@lid","rerouted_participant":"4917641870516@s.whatsapp.net","time":"2026-03-06T19:22:10.957043445Z","message":"Rerouting message key (PN recipient in LID DM)"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_count":82,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:10.95740851Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_count":82,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:10.957507616Z","message":"Sending backfill messages"} +{"level":"debug","transaction_id":"1315","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:10.959459287Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1315","time":"2026-03-06T19:22:10.959918988Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2051,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-97882405363848%3Amatrix.theocloud.dev","duration":42.160458,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-97882405363848","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:10.962513347Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":1976,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1597.102719,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:10.97655638Z","message":"Request completed"} +{"level":"info","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:10.977473758Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2052,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VbuQUzvHAEzAXXFZFRRmjwLh?user_id=%40whatsapp_lid-66662220976313%3Amatrix.theocloud.dev","duration":44.221362,"status_code":200,"response_length":27066,"response_mime":"image/jpeg","time":"2026-03-06T19:22:10.999106683Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2055,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-97882405363848:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-97882405363848%3Amatrix.theocloud.dev","duration":40.487109,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:11.005189381Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66662220976313:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-66662220976313%3Amatrix.theocloud.dev","duration":61.550401,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VbuQUzvHAEzAXXFZFRRmjwLh"},"time":"2026-03-06T19:22:11.060993235Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:11.0622036Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1316","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:11.096532722Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1316","time":"2026-03-06T19:22:11.096621002Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2059,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-75930894614615%3Amatrix.theocloud.dev","duration":45.14761,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-75930894614615","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:11.10771383Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2043,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-164154254037235%3Amatrix.theocloud.dev","duration":337.924538,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<68666 bytes>","time":"2026-03-06T19:22:11.110151603Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2060,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-75930894614615:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-75930894614615%3Amatrix.theocloud.dev","duration":43.300772,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:11.151486107Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2061,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-164154254037235:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-164154254037235%3Amatrix.theocloud.dev","duration":45.114853,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:11.155721129Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":1986,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1645.851532,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:11.190091527Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2063,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/OqadHlzzFlAlRDjFzlCDaSvl?user_id=%40whatsapp_lid-164154254037235%3Amatrix.theocloud.dev","duration":57.726959,"status_code":200,"response_length":68666,"response_mime":"image/jpeg","time":"2026-03-06T19:22:11.213638129Z","message":"Request completed"} +{"level":"debug","transaction_id":"1317","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:11.253926118Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1317","time":"2026-03-06T19:22:11.25424383Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":1987,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1683.282345,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:11.261515731Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":1980,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/state/m.room.member/@whatsapp_491628947581:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1826.916897,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZIXtQzHyprijDOKfuxRNtixI","displayname":"Claudia Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:11.264811585Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2049,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":380.733062,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<134104 bytes>","time":"2026-03-06T19:22:11.278106188Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":2064,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":91.734527,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:11.28270893Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2058,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-97882405363848:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-97882405363848%3Amatrix.theocloud.dev","duration":296.921854,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Elias (WA)"},"time":"2026-03-06T19:22:11.302296177Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:11.303037412Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2065,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-164154254037235:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-164154254037235%3Amatrix.theocloud.dev","duration":92.144222,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OqadHlzzFlAlRDjFzlCDaSvl"},"time":"2026-03-06T19:22:11.306106418Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:11.307045936Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","req_id":2011,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev?ts=1772824930064&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1255.265759,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:11.32275708Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:11.323119212Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":2066,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.683388,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:11.333871629Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2054,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917624407266%3Amatrix.theocloud.dev","duration":372.450964,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<19555 bytes>","time":"2026-03-06T19:22:11.335405504Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2039,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824930591823315_11?ts=1772482185000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":750.381747,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"auch das ehhhhhh ein Abend vorher umplanen warum der Mist lasst das mal mimimimimi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:11.342367096Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6F324DBBD45E37E7A7","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:09:45Z","event_id":"$-0h3C93bXV3s3jibJw9lT_X9p7bY6ZQQm7bHIhfT744","part_id":"","time":"2026-03-06T19:22:11.342503847Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2069,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-213782164934732%3Amatrix.theocloud.dev","duration":38.683853,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-213782164934732","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:11.345982338Z","message":"Request completed"} +{"level":"debug","transaction_id":"1318","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:11.366203333Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1318","time":"2026-03-06T19:22:11.366931927Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2071,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624407266:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917624407266%3Amatrix.theocloud.dev","duration":36.903854,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:11.37268469Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2073,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-213782164934732:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-213782164934732%3Amatrix.theocloud.dev","duration":30.849094,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:11.377213119Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2074,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KZXdgXnCUiMUQbismkoYZmeT?user_id=%40whatsapp_4917624407266%3Amatrix.theocloud.dev","duration":53.912876,"status_code":200,"response_length":19555,"response_mime":"image/jpeg","time":"2026-03-06T19:22:11.426752058Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2040,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824930686038148_12?ts=1772624477000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":769.215676,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Klingt guti","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:11.455422563Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA1D801A2CE6181457F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T11:41:17Z","event_id":"$a1VZAXPzWNer9ygO0tnP-UVQ_gOvqjqnMTBFJaVdEIA","part_id":"","time":"2026-03-06T19:22:11.455558686Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","action":"forward backfill","req_id":2037,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824930569552381_10?ts=1721245655000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":890.881291,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"https://steamcommunity.com/sharedfiles/filedetails/?id=2136320635","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"Steam Workshop::SPACEDUDE_NASA_4KWP","matched_url":"https://steamcommunity.com/sharedfiles/filedetails/?id=2136320635"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:11.460592912Z","message":"Request completed"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","action":"forward backfill","message_id":"4917641870516@s.whatsapp.net:4917641870516@s.whatsapp.net:6876F54EB44601D702","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2024-07-17T19:47:35Z","event_id":"$JcRfzytuwmMdKyBeyj5mij7rBOG4kUmHqp_SfAu6AVM","part_id":"","time":"2026-03-06T19:22:11.460738393Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:11.461443311Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","time":"2026-03-06T19:22:11.461515248Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2062,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-75930894614615:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-75930894614615%3Amatrix.theocloud.dev","duration":312.765978,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vincent (WA)"},"time":"2026-03-06T19:22:11.464495974Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:11.464852169Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:11.465434234Z","message":""} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2041,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824930689887502_13?ts=1770364237000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":811.675688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja, aber wieso muss so nen Bums vorort sein","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:11.50170909Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A29E167C4EC786B8C1A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:50:37Z","event_id":"$0dB_BRlW32Tgv4hm5vGHx_q_R1TolZp9MZ9etsCmu8o","part_id":"","time":"2026-03-06T19:22:11.501839904Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1319","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:11.50625016Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1319","time":"2026-03-06T19:22:11.506426023Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2080,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-97882405363848:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-97882405363848%3Amatrix.theocloud.dev","duration":47.191122,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:11.514260573Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:11.515367292Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2077,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624407266:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917624407266%3Amatrix.theocloud.dev","duration":96.58919,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KZXdgXnCUiMUQbismkoYZmeT"},"time":"2026-03-06T19:22:11.523675581Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2082,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-30653349408787%3Amatrix.theocloud.dev","duration":44.489695,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-30653349408787","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:11.56015689Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2083,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917655425926%3Amatrix.theocloud.dev","duration":43.690351,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917655425926","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:11.568706135Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":1992,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":1814.837268,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:11.576406309Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":1991,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1914.742914,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:11.590423221Z","message":"Request completed"} +{"level":"info","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:11.591512829Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","orig_participant":"266657507356684@lid","rerouted_participant":"4915150515988@s.whatsapp.net","time":"2026-03-06T19:22:11.59560237Z","message":"Rerouting message key (PN recipient in LID DM)"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2084,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-30653349408787:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-30653349408787%3Amatrix.theocloud.dev","duration":40.970556,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:11.60160433Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2085,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655425926:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917655425926%3Amatrix.theocloud.dev","duration":46.71396,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:11.615758621Z","message":"Request completed"} +{"level":"debug","transaction_id":"1320","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:11.631650028Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1320","time":"2026-03-06T19:22:11.631741591Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2086,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":79.766506,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:11.656695793Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":1995,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1852.917334,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:11.658899734Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2075,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-213782164934732:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-213782164934732%3Amatrix.theocloud.dev","duration":299.043311,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491639153989 (WA)"},"time":"2026-03-06T19:22:11.676470986Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:11.677266Z","message":""} +{"level":"debug","transaction_id":"1321","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:11.744128529Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1321","time":"2026-03-06T19:22:11.744587183Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":2000,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1938.170365,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:11.810896702Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2078,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":384.337758,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<4556 bytes>","time":"2026-03-06T19:22:11.82853172Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:11.833165052Z","message":""} +{"level":"debug","transaction_id":"1322","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:11.863053955Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1322","time":"2026-03-06T19:22:11.863373134Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2053,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824930957888815_1?ts=1766562246000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":910.108711,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Frohe Weihnachten! Verbring eine schöne Zeit mit deinen Engsten 🌲🎅","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:11.868136652Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC73C2AB4B32E69DDA6F13405A9CD3C1","sender_id":{"user_id":"4917657607100"},"message_ts":"2025-12-24T07:44:06Z","event_id":"$tiVxFLOEsMt3m8VeySNDVSd861ffF6y2zAtfHt6XYn0","part_id":"","time":"2026-03-06T19:22:11.868260692Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2094,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-75930894614615:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-75930894614615%3Amatrix.theocloud.dev","duration":41.511764,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:11.875067094Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:11.875975322Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2088,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-30653349408787:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-30653349408787%3Amatrix.theocloud.dev","duration":286.137449,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Stefan Strolch (WA)"},"time":"2026-03-06T19:22:11.887952842Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2089,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655425926:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917655425926%3Amatrix.theocloud.dev","duration":272.030091,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Stefan (WA)"},"time":"2026-03-06T19:22:11.887996633Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:11.888712795Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:11.891002641Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":2093,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":95.397612,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:11.906969757Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2096,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-135437549052023%3Amatrix.theocloud.dev","duration":40.244756,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-135437549052023","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:11.916474374Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2076,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":517.860065,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<72458 bytes>","time":"2026-03-06T19:22:11.918747877Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2014,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1835.802501,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","com.beeper.exclude_from_timeline":true,"displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:11.924968164Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:11.950156687Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2008,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-65244881764452:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1940.961399,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hTULxoVmZmnVBXhcluKJkmwT","com.beeper.exclude_from_timeline":true,"displayname":"Domi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:11.950476075Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2099,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-135437549052023:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-135437549052023%3Amatrix.theocloud.dev","duration":38.198729,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:11.955031044Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","req_id":2034,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21qmhtENTgisuuURICKB:matrix.theocloud.dev?ts=1772824930517&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1458.617842,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:11.978906393Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:11.97925316Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","req_id":2038,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev?ts=1772824930568&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1409.078415,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:11.979984408Z","message":"Request completed"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917641870516@s.whatsapp.net","latest_message_ts":"2024-07-17T19:47:35Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:11.980227738Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","req_id":2046,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev?ts=1772824930817&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1160.521381,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:11.981078067Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:11.98136421Z","message":"Added portal to space"} +{"level":"debug","transaction_id":"1323","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:11.984780053Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1323","time":"2026-03-06T19:22:11.985090083Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:12.041685039Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:12.04541147Z","message":""} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2092,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":301.199689,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<127440 bytes>","time":"2026-03-06T19:22:12.065077989Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","orig_participant":"266657507356684@lid","rerouted_participant":"4915150515988@s.whatsapp.net","time":"2026-03-06T19:22:12.065266982Z","message":"Rerouting message key (PN recipient in LID DM)"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":2022,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1860.119951,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:12.091744582Z","message":"Request completed"} +{"level":"info","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:12.092360869Z","message":"Fetching messages for forward backfill"} +{"level":"debug","transaction_id":"1324","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:12.135696562Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1324","time":"2026-03-06T19:22:12.135821021Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:12.143831224Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2072,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824931343547569_14?ts=1772482210000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":807.36775,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"alles eumgeheule weil ihr das einfach so passt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:12.151084966Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2CAF1BAFCCF902C6BC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:10:10Z","event_id":"$aP7DBcfPqQMQOMvtrdNueY5Im1DwSeFtuipI43qv4bc","part_id":"","time":"2026-03-06T19:22:12.151228003Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2079,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824931456378354_6?ts=1772624546000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":761.474435,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":745580,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/mRkkybFKMAQtNYFDgbHUrCtU"},"time":"2026-03-06T19:22:12.218101916Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AEB1B97860C941AF9DD","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T11:42:26Z","event_id":"$pSwXRpPoF4kvKYJxw2sQZWdruLLV8Oo3FmCZbY2UZeA","part_id":"","time":"2026-03-06T19:22:12.218291398Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":2028,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1911.483866,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:12.23432696Z","message":"Request completed"} +{"level":"debug","transaction_id":"1325","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:12.26562912Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1325","time":"2026-03-06T19:22:12.266077856Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":2031,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1905.000065,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:12.270576323Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2103,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-135437549052023:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-135437549052023%3Amatrix.theocloud.dev","duration":317.814871,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Leander (WA)"},"time":"2026-03-06T19:22:12.273008438Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":2032,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1873.434949,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:12.273639881Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:12.273879231Z","message":""} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2081,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824931502592524_15?ts=1770364248000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":799.784283,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"als ob ich am Montag abend nach der Arbeit zur HWR fahre","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:12.302508599Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8B5071D1F104BD3B86","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:50:48Z","event_id":"$mc7cLpj5WYu9Ej9yss_ucrW-xDmz8BypwOhUtj1IjdY","part_id":"","time":"2026-03-06T19:22:12.302647306Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:12.302764361Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2097,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":414.174699,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<182212 bytes>","time":"2026-03-06T19:22:12.305816745Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":2110,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":83.690451,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:12.318671832Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":2112,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":83.149942,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:12.354287726Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":2113,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":81.301079,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:12.356834173Z","message":"Request completed"} +{"level":"debug","transaction_id":"1326","content":{"pdu":5,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:12.389494345Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1326","time":"2026-03-06T19:22:12.390047914Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:12.434727651Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2104,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-30653349408787%3Amatrix.theocloud.dev","duration":399.815559,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<54593 bytes>","time":"2026-03-06T19:22:12.452513598Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2101,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":550.940408,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<97045 bytes>","time":"2026-03-06T19:22:12.480452506Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2118,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-135437549052023:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-135437549052023%3Amatrix.theocloud.dev","duration":46.870965,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:12.482107347Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:12.483198143Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2119,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-30653349408787:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-30653349408787%3Amatrix.theocloud.dev","duration":48.460854,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:12.501425283Z","message":"Request completed"} +{"level":"debug","transaction_id":"1327","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:12.510502116Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1327","time":"2026-03-06T19:22:12.510623921Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2106,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917655425926%3Amatrix.theocloud.dev","duration":402.091298,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<30978 bytes>","time":"2026-03-06T19:22:12.514772758Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2107,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-213782164934732%3Amatrix.theocloud.dev","duration":404.066017,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<33016 bytes>","time":"2026-03-06T19:22:12.517529918Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2121,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-182961395781844%3Amatrix.theocloud.dev","duration":37.268361,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-182961395781844","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:12.520759911Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2123,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/rFcZxcudHEcTxqVlwCuCjrtD?user_id=%40whatsapp_lid-30653349408787%3Amatrix.theocloud.dev","duration":35.491017,"status_code":200,"response_length":54593,"response_mime":"image/jpeg","time":"2026-03-06T19:22:12.537086295Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2124,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655425926:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917655425926%3Amatrix.theocloud.dev","duration":42.253419,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:12.557423159Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2125,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-213782164934732:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-213782164934732%3Amatrix.theocloud.dev","duration":43.246295,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:12.561196524Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2126,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182961395781844:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-182961395781844%3Amatrix.theocloud.dev","duration":45.100955,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:12.566311697Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2128,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/IielmYafeLpvfVArVGLiCZVI?user_id=%40whatsapp_4917655425926%3Amatrix.theocloud.dev","duration":50.471401,"status_code":200,"response_length":30978,"response_mime":"image/jpeg","time":"2026-03-06T19:22:12.608061134Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2129,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/sZRTWDsCVppDcOBbALHkvEyY?user_id=%40whatsapp_lid-213782164934732%3Amatrix.theocloud.dev","duration":54.400864,"status_code":200,"response_length":33016,"response_mime":"image/jpeg","time":"2026-03-06T19:22:12.615763193Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2127,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-30653349408787:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-30653349408787%3Amatrix.theocloud.dev","duration":97.290545,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rFcZxcudHEcTxqVlwCuCjrtD"},"time":"2026-03-06T19:22:12.634671784Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:12.635760204Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","req_id":2056,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev?ts=1772824930977&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1671.099419,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:12.65307311Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:12.65357758Z","message":"Added portal to space"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2134,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-209689514090663%3Amatrix.theocloud.dev","duration":48.374319,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-209689514090663","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:12.684432261Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655425926:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917655425926%3Amatrix.theocloud.dev","duration":109.987719,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IielmYafeLpvfVArVGLiCZVI"},"time":"2026-03-06T19:22:12.718449397Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2133,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-213782164934732:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-213782164934732%3Amatrix.theocloud.dev","duration":104.908304,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sZRTWDsCVppDcOBbALHkvEyY"},"time":"2026-03-06T19:22:12.720955126Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:12.721710679Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":2047,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1903.201418,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:12.72585763Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2135,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-209689514090663:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-209689514090663%3Amatrix.theocloud.dev","duration":43.94332,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:12.728699859Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2095,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824931869058080_16?ts=1766571253000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":878.34643,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dir auch frohe Weihnachten und das wünsch ich dir auch :) 🎄 Hab von Max gestern gehört, dass du gestern auch nachmittags bei FitX warst, also haben wir und leider knapp verpasst","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:12.747536652Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AAF1FB7D6B7F5707D94","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T10:14:13Z","event_id":"$7RwXSegGru2uehk-Ge6-G2lavrUJZmQZl7ECUzeZ16g","part_id":"","time":"2026-03-06T19:22:12.747655593Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2136,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-186646947455090%3Amatrix.theocloud.dev","duration":43.681273,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-186646947455090","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:12.763058174Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":2036,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915735701057:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2199.585977,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pVtSEGQfGhUHQhabQLcIvJCU","displayname":"Bes (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:12.765184381Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2137,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":45.368171,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-16114767646828","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:12.767347114Z","message":"Request completed"} +{"level":"debug","transaction_id":"1328","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:12.785223856Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1328","time":"2026-03-06T19:22:12.785321984Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2111,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":525.909449,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<153287 bytes>","time":"2026-03-06T19:22:12.789788533Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":2044,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-187849085329414:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2001.258132,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vodzizjGAdnOXIEIFkvNVJXl","com.beeper.exclude_from_timeline":true,"displayname":"Vitali (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:12.796420749Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2141,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-186646947455090:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-186646947455090%3Amatrix.theocloud.dev","duration":64.925316,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:12.828402753Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2143,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-16114767646828:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":62.339688,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:12.829998508Z","message":"Request completed"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":2138,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":106.126283,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:12.83264434Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2120,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":425.77074,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<39414 bytes>","time":"2026-03-06T19:22:12.887386803Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2130,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182961395781844:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-182961395781844%3Amatrix.theocloud.dev","duration":335.367475,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Dmytro (WA)"},"time":"2026-03-06T19:22:12.901952884Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:12.902843582Z","message":""} +{"level":"debug","transaction_id":"1329","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:12.921710756Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1329","time":"2026-03-06T19:22:12.922220953Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2122,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":498.648779,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<84075 bytes>","time":"2026-03-06T19:22:12.992647321Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2108,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824932151932641_17?ts=1772482217000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":842.209792,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ich hasse solche menschen über alles","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:12.994346163Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1F3A7537F75BD73026","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:10:17Z","event_id":"$sYHPk7nkibj9Q6_JkxljaadK3Fw-i4-2IzsFsITGhYY","part_id":"","time":"2026-03-06T19:22:12.994570845Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 404","media_type":"file attachment","time":"2026-03-06T19:22:12.995751737Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":2068,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1716.292636,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:12.999367678Z","message":"Request completed"} +{"level":"info","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:12.999929768Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 404","media_type":"file attachment","time":"2026-03-06T19:22:13.001029433Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","orig_participant":"266657507356684@lid","rerouted_participant":"4915150515988@s.whatsapp.net","time":"2026-03-06T19:22:13.001308593Z","message":"Rerouting message key (PN recipient in LID DM)"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","orig_participant":"266657507356684@lid","rerouted_participant":"4915150515988@s.whatsapp.net","time":"2026-03-06T19:22:13.00139827Z","message":"Rerouting message key (PN recipient in LID DM)"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_count":39,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:13.001502125Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_count":39,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:13.001589498Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":2067,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/state/m.room.member/@whatsapp_491628947581:matrix.theocloud.dev?user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":1756.251248,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZIXtQzHyprijDOKfuxRNtixI","displayname":"Claudia Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:13.021658587Z","message":"Request completed"} +{"level":"info","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:13.022424546Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:13.024980282Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.030253019Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-209689514090663:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-209689514090663%3Amatrix.theocloud.dev","duration":301.911102,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"sirajedine (WA)"},"time":"2026-03-06T19:22:13.030770061Z","message":"Request completed"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:13.030920292Z","message":"Failed to download media: invalid media hmac, trying with next host..."} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:13.031301421Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.035654825Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:13.037097416Z","message":"Failed to download media: invalid media hmac, trying with next host..."} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.041737104Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"error","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","error":"failed to download media from last host: invalid media hmac","time":"2026-03-06T19:22:13.043713988Z","message":"Failed to download thumbnail for link preview"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.047597005Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","transaction_id":"1330","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:13.047750727Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1330","time":"2026-03-06T19:22:13.048006699Z","message":"Finished dispatching events from transaction"} +{"level":"error","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","error":"download failed with status code 403","time":"2026-03-06T19:22:13.050479602Z","message":"Failed to download thumbnail for link preview"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_count":71,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:13.050822807Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_count":71,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:13.050872046Z","message":"Sending backfill messages"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:13.051122989Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.053550494Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.059613426Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.06554736Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.070768065Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2131,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":496.573906,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<112636 bytes>","time":"2026-03-06T19:22:13.071320866Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.078637256Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.078767722Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.08512001Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.085183916Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2109,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824932220188103_18?ts=1772624562849&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":869.999937,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$pSwXRpPoF4kvKYJxw2sQZWdruLLV8Oo3FmCZbY2UZeA","key":"❤️"}},"time":"2026-03-06T19:22:13.090383389Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AEB1B97860C941AF9DD","target_part_id":"","reaction_sender_id":{"user_id":"4917641870516","is_from_me":true},"reaction_ts":"2026-03-04T11:42:42.849Z","event_id":"$Lohbw-nHK2TY2IsZxdee0V6jpin4p9fMRP1025tOkyI","time":"2026-03-06T19:22:13.090560998Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.09104682Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.091036972Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_count":10,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:13.091103113Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_count":10,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:13.09115752Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.097070082Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.102405817Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:13.108356652Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_count":100,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:13.109040547Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_count":100,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:13.109128269Z","message":"Sending backfill messages"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2145,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-186646947455090:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-186646947455090%3Amatrix.theocloud.dev","duration":287.347675,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Stefan (WA)"},"time":"2026-03-06T19:22:13.115902474Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2146,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-16114767646828:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":286.284397,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Aylin (WA)"},"time":"2026-03-06T19:22:13.116488381Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:13.116545651Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:13.116996064Z","message":""} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824932303614620_2?ts=1770364264000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":830.260908,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"da haben wir schon wieder uni","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:13.134063544Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3EB0D8BD502AE2DDEAE8D0","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-06T07:51:04Z","event_id":"$Ak-W2V8urlJ2uZEsgMP76_c0OPx453gSzDJZXmqAops","part_id":"","time":"2026-03-06T19:22:13.134201761Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":2070,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1804.148755,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:13.138414713Z","message":"Request completed"} +{"level":"info","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:13.139255474Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","action":"forward backfill","message_count":1,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:13.141800314Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","action":"forward backfill","message_count":1,"batch_send":false,"mark_read":true,"mark_read_past_threshold":true,"time":"2026-03-06T19:22:13.141895719Z","message":"Sending backfill messages"} +{"level":"debug","transaction_id":"1331","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:13.177640472Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1331","time":"2026-03-06T19:22:13.178323179Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2090,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1613.223067,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","com.beeper.exclude_from_timeline":true,"displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:13.270394695Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:13.273164427Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:13.282192022Z","message":""} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":2091,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/state/m.room.member/@whatsapp_4917641870516:matrix.theocloud.dev?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1671.040821,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YgfTywOOZqNSCqtWIrOMUFaS","displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:13.330539172Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2163,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-16114767646828:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":64.081343,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:13.337612652Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:13.338937558Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:13.344453347Z","message":""} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","req_id":2087,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev?ts=1772824931591&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1754.787564,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:13.346650443Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:13.34716958Z","message":"Added portal to space"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2166,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":59.487192,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-273069826400467","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:13.398724793Z","message":"Request completed"} +{"level":"debug","transaction_id":"1332","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:13.43071441Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1332","time":"2026-03-06T19:22:13.430832373Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":2165,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":103.860112,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:13.435044696Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2153,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-182961395781844%3Amatrix.theocloud.dev","duration":388.578367,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43609 bytes>","time":"2026-03-06T19:22:13.447167837Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2168,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-273069826400467:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":55.670665,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:13.454750326Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":2098,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1563.432208,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:13.470772757Z","message":"Request completed"} +{"level":"info","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:13.471622108Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2100,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-65244881764452:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1558.875912,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hTULxoVmZmnVBXhcluKJkmwT","com.beeper.exclude_from_timeline":true,"displayname":"Domi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:13.484546758Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2170,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182961395781844:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-182961395781844%3Amatrix.theocloud.dev","duration":58.197556,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:13.50575197Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2154,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":441.255036,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<133376 bytes>","time":"2026-03-06T19:22:13.520824826Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2174,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/iEYebzGDOAkIIyPewuWwttdV?user_id=%40whatsapp_lid-182961395781844%3Amatrix.theocloud.dev","duration":40.737772,"status_code":200,"response_length":43609,"response_mime":"image/jpeg","time":"2026-03-06T19:22:13.546656455Z","message":"Request completed"} +{"level":"debug","transaction_id":"1333","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:13.583651314Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1333","time":"2026-03-06T19:22:13.58412247Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2140,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824932748515281_2?ts=1766572155000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":879.089551,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ah ja, ich war bis ca. 15:30 Uhr da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:13.627745354Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC3D10E104DC741EEDC990157C7D2048","sender_id":{"user_id":"4917657607100"},"message_ts":"2025-12-24T10:29:15Z","event_id":"$C3q-G0s00p0iCwUOJqJKJZl2eC8HpZD-TGdIO6_vvSw","part_id":"","time":"2026-03-06T19:22:13.627909413Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2175,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182961395781844:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-182961395781844%3Amatrix.theocloud.dev","duration":100.618456,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iEYebzGDOAkIIyPewuWwttdV"},"time":"2026-03-06T19:22:13.647568179Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","source_jid":"38504566390811@lid","alt_jid":"4917656979328@s.whatsapp.net","source_push_name":"Al koudsi","alt_push_name":"Ahmad Al koudsi","time":"2026-03-06T19:22:13.648575094Z","message":"Conflicting push names between JIDs"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:13.648681045Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 404","media_type":"sticker","time":"2026-03-06T19:22:13.699319509Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2178,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":76.820911,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-38504566390811","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:13.725821623Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2161,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":573.006216,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<96777 bytes>","time":"2026-03-06T19:22:13.734460965Z","message":"Request completed"} +{"level":"debug","transaction_id":"1334","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:13.756103039Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1334","time":"2026-03-06T19:22:13.756577198Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2164,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-186646947455090%3Amatrix.theocloud.dev","duration":476.53513,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<30978 bytes>","time":"2026-03-06T19:22:13.767301399Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2179,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-38504566390811:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":55.391576,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:13.78165076Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2167,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-209689514090663%3Amatrix.theocloud.dev","duration":453.919873,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<95949 bytes>","time":"2026-03-06T19:22:13.807815327Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2181,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-186646947455090:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-186646947455090%3Amatrix.theocloud.dev","duration":43.231209,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:13.810957528Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2171,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-273069826400467:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":360.618716,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Michał (WA)"},"time":"2026-03-06T19:22:13.815574587Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:13.816290051Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2183,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-209689514090663:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-209689514090663%3Amatrix.theocloud.dev","duration":23.815773,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:13.832004548Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2184,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/qvHvGznCKwXzGsizddKLfEec?user_id=%40whatsapp_lid-186646947455090%3Amatrix.theocloud.dev","duration":34.667856,"status_code":200,"response_length":30978,"response_mime":"image/jpeg","time":"2026-03-06T19:22:13.845753615Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2148,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824932995319763_19?ts=1772482224000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":894.21444,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"null flexibel","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:13.889678846Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACE542702619BD5D38C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:10:24Z","event_id":"$wqAkoS0i3is11soZFoOWFlBKyUwtGXyNdWIXJHZcxfA","part_id":"","time":"2026-03-06T19:22:13.889824397Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2185,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/nVngAMkAhBQRNXhaugGWdgAH?user_id=%40whatsapp_lid-209689514090663%3Amatrix.theocloud.dev","duration":58.301342,"status_code":200,"response_length":95949,"response_mime":"image/jpeg","time":"2026-03-06T19:22:13.89044718Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2102,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-65244881764452:matrix.theocloud.dev?user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":1951.541305,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hTULxoVmZmnVBXhcluKJkmwT","com.beeper.exclude_from_timeline":true,"displayname":"Domi (WA)","membership":"join"},"time":"2026-03-06T19:22:13.90274744Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2186,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-186646947455090:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-186646947455090%3Amatrix.theocloud.dev","duration":105.863327,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qvHvGznCKwXzGsizddKLfEec"},"time":"2026-03-06T19:22:13.951879199Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917655425926@s.whatsapp.net","alternate_jid":"186646947455090@lid","time":"2026-03-06T19:22:13.952384926Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:13.982722146Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2187,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-209689514090663:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-209689514090663%3Amatrix.theocloud.dev","duration":112.910125,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nVngAMkAhBQRNXhaugGWdgAH"},"time":"2026-03-06T19:22:14.003675856Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:14.004842081Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2190,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491702130605%3Amatrix.theocloud.dev","duration":59.459396,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491702130605","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:14.012377706Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2155,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824933091419917_7?ts=1772624654000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":928.1368,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hier in der Ubahn ist jmd der sieht auch wie vector von minions","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.019691582Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A7D113314E28F1AB0D4","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T11:44:14Z","event_id":"$pmHyrhi2QKtXrrHdXWWizwnQeumVueO5FUda_gn916s","part_id":"","time":"2026-03-06T19:22:14.019826238Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1335","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:14.055508342Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1335","time":"2026-03-06T19:22:14.055612337Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":2115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1742.208354,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:14.061320192Z","message":"Request completed"} +{"level":"info","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:14.062147892Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2192,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-12837791518793%3Amatrix.theocloud.dev","duration":57.657606,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-12837791518793","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:14.062768649Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","message_count":6,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:14.063283526Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","message_count":6,"batch_send":false,"mark_read":true,"mark_read_past_threshold":true,"time":"2026-03-06T19:22:14.063421185Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2150,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824933003243012_1?ts=1771317288000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":1065.361164,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Theo","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.068733174Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A8AC9E99F9C7546DD79","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T08:34:48Z","event_id":"$7DtT8v4CUkfL6BMrZMb8pRhZgzrRnX8ihlEHS0MBuok","part_id":"","time":"2026-03-06T19:22:14.068865874Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2193,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491702130605:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491702130605%3Amatrix.theocloud.dev","duration":60.060806,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:14.072805883Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":2116,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1724.268055,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:14.079011223Z","message":"Request completed"} +{"level":"info","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:14.079791011Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","message_count":3,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:14.080761469Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","message_count":3,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:14.080846537Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2158,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824933134826081_3?ts=1770364273000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":946.573257,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber es kommt besser. wir haben vorlesung währenddessen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.081508012Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3EB0B1ECF8C670DE73B386","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-06T07:51:13Z","event_id":"$-CiOpARlFx9UnQ70nLdUDMU_HW0HgvP1SbKW9UaqMFY","part_id":"","time":"2026-03-06T19:22:14.081626674Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2177,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":481.405994,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<10322 bytes>","time":"2026-03-06T19:22:14.111390769Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2182,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-38504566390811:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":348.643082,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ahmad Al koudsi (WA)"},"time":"2026-03-06T19:22:14.130508257Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:14.131305297Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2197,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12837791518793:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12837791518793%3Amatrix.theocloud.dev","duration":65.234927,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:14.132283926Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2152,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824933051195205_20?ts=1765280788000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1089.431722,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hallooo Mama, wollen wir heute Shawarma selber machen bzw so Hähnchen Dürüm Döner oder Shakshuka eher? Hätte dann auch nachmittags Zeit einkaufen zu gehen, falls wir dann noch was brauchen sollten :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.140755925Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0A7E99E4BA7203278B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-09T11:46:28Z","event_id":"$445Ilryhon85laBPXVYfVKAk5JIlklU_udepx5IUqd8","part_id":"","time":"2026-03-06T19:22:14.140915165Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","req_id":2105,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev?ts=1772824932092&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2087.686676,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:14.182957032Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:14.183456403Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2156,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824933092303630_1?ts=1770059447000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":1098.593971,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wasch geht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.191046016Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A8DDB02BD324553C60B","sender_id":{"user_id":"4915234825973"},"message_ts":"2026-02-02T19:10:47Z","event_id":"$0p6YvvUbYmYl-FhOj0rff6qXB66X_kG-FJ_uOr6mXXs","part_id":"","time":"2026-03-06T19:22:14.191181859Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2157,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824933109513100_21?ts=1767806013000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1103.826969,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber nur wenn du such willst","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.213462432Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A462C471EE743372A9A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-07T17:13:33Z","event_id":"$XO0KpYD8zHtwgmmXmVi9ODV-YV1LTFSeDZe3NlI2yxw","part_id":"","time":"2026-03-06T19:22:14.213577741Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1336","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:14.220133061Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1336","time":"2026-03-06T19:22:14.220610153Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2203,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":111.298726,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<114137 bytes>","time":"2026-03-06T19:22:14.225102893Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:14.23039777Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:14.236225125Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:14.242247339Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:14.248264734Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:14.254241062Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","action":"forward backfill","req_id":2160,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824933142142890_22?ts=1725486167000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1114.677864,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Haha okay","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.256997664Z","message":"Request completed"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","action":"forward backfill","message_id":"4915258731774@s.whatsapp.net:4917641870516@s.whatsapp.net:3617C32934325DC213F80EE7E42068B3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2024-09-04T21:42:47Z","event_id":"$C9QUXDM_sHcqxq84JrWHlBITz-Tz6PaoPIQhQVTcjX4","part_id":"","time":"2026-03-06T19:22:14.257118281Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:14.257974896Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","time":"2026-03-06T19:22:14.258045926Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"photo","time":"2026-03-06T19:22:14.260283391Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":2142,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/state/m.room.member/@whatsapp_4915735701057:matrix.theocloud.dev?user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":1497.330748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pVtSEGQfGhUHQhabQLcIvJCU","displayname":"Bes (WA)","membership":"join"},"time":"2026-03-06T19:22:14.263304206Z","message":"Request completed"} +{"level":"info","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:14.264163614Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:14.265560598Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","orig_participant":"195790463058158@lid","rerouted_participant":"4917641870516@s.whatsapp.net","time":"2026-03-06T19:22:14.265580224Z","message":"Rerouting message key (PN recipient in LID DM)"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_count":71,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:14.265821598Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_count":71,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:14.265904291Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"video attachment","time":"2026-03-06T19:22:14.27155718Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"photo","time":"2026-03-06T19:22:14.277531762Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_count":25,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:14.277621509Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_count":25,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:14.277706437Z","message":"Sending backfill messages"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:14.290126198Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2180,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":544.510176,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<57832 bytes>","time":"2026-03-06T19:22:14.293935671Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":2117,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1969.446472,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:14.326655907Z","message":"Request completed"} +{"level":"info","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:14.327558827Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","action":"forward backfill","message_count":1,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:14.32994317Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","action":"forward backfill","message_count":1,"batch_send":false,"mark_read":true,"mark_read_past_threshold":true,"time":"2026-03-06T19:22:14.330047654Z","message":"Sending backfill messages"} +{"level":"warn","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"4917616043654@s.whatsapp.net:4917641870516@s.whatsapp.net:7EAAB3BCCF8B3E1DDE3CD9E24D31B359","PartID":null},"time":"2026-03-06T19:22:14.330600944Z","message":"Reply target message not found in database"} +{"level":"debug","transaction_id":"1337","content":{"pdu":9,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:14.376928258Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1337","time":"2026-03-06T19:22:14.384539103Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2191,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":450.910582,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45061 bytes>","time":"2026-03-06T19:22:14.446709075Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2199,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491702130605:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491702130605%3Amatrix.theocloud.dev","duration":375.233267,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Julius (WA)"},"time":"2026-03-06T19:22:14.448199717Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"46858126766286@lid","alternate_jid":"491702130605@s.whatsapp.net","time":"2026-03-06T19:22:14.448776963Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915154980665@s.whatsapp.net","time":"2026-03-06T19:22:14.449108294Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2204,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12837791518793:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12837791518793%3Amatrix.theocloud.dev","duration":348.718442,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491759903260 (WA)"},"time":"2026-03-06T19:22:14.481193735Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:14.48204546Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2215,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-273069826400467:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":37.902738,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:14.48494489Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2216,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915154980665%3Amatrix.theocloud.dev","duration":45.464344,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915154980665","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:14.494866534Z","message":"Request completed"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":2147,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1666.155987,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:14.499236352Z","message":"Request completed"} +{"level":"info","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:14.499929466Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","action":"forward backfill","message_count":1,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:14.500562027Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","action":"forward backfill","message_count":1,"batch_send":false,"mark_read":true,"mark_read_past_threshold":true,"time":"2026-03-06T19:22:14.500645418Z","message":"Sending backfill messages"} +{"level":"debug","transaction_id":"1338","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:14.532156616Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1338","time":"2026-03-06T19:22:14.532529154Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2217,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/rhUmBVbIAEZKMsDzvFGnaMzv?user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":57.870904,"status_code":200,"response_length":45061,"response_mime":"image/jpeg","time":"2026-03-06T19:22:14.542947446Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2218,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915154980665:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915154980665%3Amatrix.theocloud.dev","duration":53.904845,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:14.549088602Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":2144,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-187849085329414:matrix.theocloud.dev?user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":1761.793575,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vodzizjGAdnOXIEIFkvNVJXl","com.beeper.exclude_from_timeline":true,"displayname":"Vitali (WA)","membership":"join"},"time":"2026-03-06T19:22:14.558815806Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2176,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824933628948176_3?ts=1766572163000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":975.596535,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ist max der blonde mit brille?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.60468251Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC1ECC5D8A4AF02D3F3167E50E7D26A3","sender_id":{"user_id":"4917657607100"},"message_ts":"2025-12-24T10:29:23Z","event_id":"$3xXmO7LeG57vhKsFFGsc9oh_9hAUhT6lsGnjxovhEoo","part_id":"","time":"2026-03-06T19:22:14.604773585Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:14.631418666Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2222,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-273069826400467:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":91.009006,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rhUmBVbIAEZKMsDzvFGnaMzv"},"time":"2026-03-06T19:22:14.634249022Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:14.635375157Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1339","content":{"pdu":1,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:14.679504467Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1339","time":"2026-03-06T19:22:14.679619847Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2226,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12837791518793:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12837791518793%3Amatrix.theocloud.dev","duration":54.330323,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:14.686153725Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:14.687270572Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2227,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-196314398773332%3Amatrix.theocloud.dev","duration":51.961416,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-196314398773332","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:14.687630119Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2211,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":406.877375,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<30937 bytes>","time":"2026-03-06T19:22:14.706429058Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2228,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-20414147354769%3Amatrix.theocloud.dev","duration":42.650332,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-20414147354769","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:14.73020544Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2229,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196314398773332:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-196314398773332%3Amatrix.theocloud.dev","duration":42.915453,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:14.73084736Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2230,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-38504566390811:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":46.089501,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:14.752843674Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2231,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-20414147354769:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-20414147354769%3Amatrix.theocloud.dev","duration":51.178903,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:14.781707154Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-65244881764452:matrix.theocloud.dev?user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":1304.357077,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hTULxoVmZmnVBXhcluKJkmwT","com.beeper.exclude_from_timeline":true,"displayname":"Domi (WA)","membership":"join"},"time":"2026-03-06T19:22:14.789595971Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2162,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-89215194906776:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1525.351301,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491754848071 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:14.79658124Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2233,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wwYmacyEqsOYwkZsEJSbjqKM?user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":53.635533,"status_code":200,"response_length":30937,"response_mime":"image/jpeg","time":"2026-03-06T19:22:14.806655908Z","message":"Request completed"} +{"level":"debug","transaction_id":"1340","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:14.819818371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1340","time":"2026-03-06T19:22:14.820286383Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":2169,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1405.716489,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:14.84120154Z","message":"Request completed"} +{"level":"info","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:14.842018415Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","action":"forward backfill","message_count":1,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:14.842723821Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","action":"forward backfill","message_count":1,"batch_send":false,"mark_read":true,"mark_read_past_threshold":true,"time":"2026-03-06T19:22:14.842834591Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2188,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824933890647906_23?ts=1772482234000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":979.611065,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"wow könnt ich gerade haten omg","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.870411437Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4A0AC27B6A8553CCAF","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:10:34Z","event_id":"$HwwYwCKPcZ1Jr2ASeHSu18ooSkClgokIP9kr0NqPJ90","part_id":"","time":"2026-03-06T19:22:14.870520391Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2223,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915154980665:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915154980665%3Amatrix.theocloud.dev","duration":342.22591,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915154980665 (WA)"},"time":"2026-03-06T19:22:14.891473263Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:14.892255077Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2212,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":583.624745,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<189288 bytes>","time":"2026-03-06T19:22:14.895910967Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2237,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-38504566390811:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":109.88505,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wwYmacyEqsOYwkZsEJSbjqKM"},"time":"2026-03-06T19:22:14.916873617Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:14.917967625Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2241,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-88180091007092%3Amatrix.theocloud.dev","duration":40.153682,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-88180091007092","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:14.958418206Z","message":"Request completed"} +{"level":"debug","transaction_id":"1341","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:14.967178235Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1341","time":"2026-03-06T19:22:14.967327837Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","req_id":2149,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev?ts=1772824933000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1975.974552,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:14.978056299Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:14.978563423Z","message":"Added portal to space"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","req_id":2151,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev?ts=1772824933022&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1955.420549,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:14.979391891Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:14.979765547Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","req_id":2159,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21wRkwNZtgctxiqmVHWz:matrix.theocloud.dev?ts=1772824933139&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1844.346086,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:14.984016842Z","message":"Request completed"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915258731774@s.whatsapp.net","latest_message_ts":"2024-09-04T21:42:47Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:14.984440086Z","message":"Added portal to space"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","req_id":2172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev?ts=1772824933471&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1509.495584,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:14.985969979Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:14.986374156Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2194,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934020601417_24?ts=1772624672000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":969.604702,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:14.990383448Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A123CE7023FF835F722","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T11:44:32Z","event_id":"$VCawuZPjlMEafQtYKYmvQhrCDjL9Ze3vAa5HX9kR1oI","part_id":"","time":"2026-03-06T19:22:14.990549812Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2242,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88180091007092:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-88180091007092%3Amatrix.theocloud.dev","duration":75.086309,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:15.033898706Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2198,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934069857005_2?ts=1771317295000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":970.628799,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oha tolles Profilbild","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.040623672Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3AA4918357C74B6C9886","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T08:34:55Z","event_id":"$83JGTLkvWfu9go285P0Pqs5ADxECzcXbh3WQBhr3elY","part_id":"","time":"2026-03-06T19:22:15.040782493Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2202,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934082830125_25?ts=1770364303000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":965.603931,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ach true","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.048594414Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A421EB52C0E09B8809A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:51:43Z","event_id":"$S0JaDARu9MPHzREaZABlviRMgrt2mvo74nhJEsUvcg8","part_id":"","time":"2026-03-06T19:22:15.048760638Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2221,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":556.206161,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<112153 bytes>","time":"2026-03-06T19:22:15.066257578Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2232,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196314398773332:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-196314398773332%3Amatrix.theocloud.dev","duration":369.353252,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917656766415 (WA)"},"time":"2026-03-06T19:22:15.100410976Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:15.101208644Z","message":""} +{"level":"debug","transaction_id":"1342","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:15.140421761Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1342","time":"2026-03-06T19:22:15.140972607Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2205,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934141827235_1?ts=1765281116000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":1021.100829,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hallo Theo, \nwir können gerne Skakshuka machen.","format":"org.matrix.custom.html","formatted_body":"Hallo Theo, \u003cbr\u003ewir können gerne Skakshuka machen.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.163147438Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3AFB877BF01FA7D7BB48","sender_id":{"user_id":"491628947581"},"message_ts":"2025-12-09T11:51:56Z","event_id":"$18qYhFczMCsNUEW4owJI_6hBzzuW7j3dw5jy42pG1-4","part_id":"","time":"2026-03-06T19:22:15.163364507Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2234,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-20414147354769:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-20414147354769%3Amatrix.theocloud.dev","duration":382.333007,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915206670209 (WA)"},"time":"2026-03-06T19:22:15.164192906Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:15.165089191Z","message":""} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2206,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934191968422_2?ts=1770059450000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":975.3025,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":117278},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"aEazJ837ZwZjrL1lS9gDHbf5WZ16ACCXYm3/gL1jbCo=","length":117278,"type":"WhatsApp Image Keys","sha256":"KQ6CLX71uKt/lpUPuqoW6VrZnochTkyY7/5pe6aBPxg=","enc_sha256":"vtJXwee4dTdxhxWEuSB7sLCaAsXSucUuiqJWuElBqk8=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:15.167521306Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A079456E92AD41E4263","sender_id":{"user_id":"4915234825973"},"message_ts":"2026-02-02T19:10:50Z","event_id":"$KgIHygmpPHz7Y9nyFwFpFtLAMhvrrJ5EIeCHlgNhgMQ","part_id":"","time":"2026-03-06T19:22:15.167672095Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2207,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934214265338_26?ts=1767806017000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":974.128102,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"auch*","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.188556452Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A22E2274D0B0A43D4C4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-07T17:13:37Z","event_id":"$OoyTIdr7ZHwDf442CElrBVeg9Edy8_8pDn-9PF3-jRY","part_id":"","time":"2026-03-06T19:22:15.189918585Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","req_id":2195,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934063699297_1?ts=1766586466000&user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":1146.838523,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Frohe Weihnachten🎄🎄🎄","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.210673873Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","message_id":"4917680834617@s.whatsapp.net:4917680834617@s.whatsapp.net:AC2AA4CDD76224526EECE603AA43E8F8","sender_id":{"user_id":"4917680834617"},"message_ts":"2025-12-24T14:27:46Z","event_id":"$Xzq2Mj7cKquWPnogl9wJDiUo49jnMOUvNLIzoWQbQ-Y","part_id":"","time":"2026-03-06T19:22:15.210813697Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","req_id":2200,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934081122763_1?ts=1771233167000&user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":1139.219786,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ist in eurer Gruppe noch Platz für 2?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.220473712Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","message_id":"491605556877@s.whatsapp.net:491605556877@s.whatsapp.net:3EB08068A96E27DA78F602","sender_id":{"user_id":"491605556877"},"message_ts":"2026-02-16T09:12:47Z","event_id":"$2Bvu9Vy2_m0HlpP_MvB4S62DWL7XJ60z82fwwx8BIL8","part_id":"","time":"2026-03-06T19:22:15.220619683Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:15.260643807Z","message":""} +{"level":"debug","transaction_id":"1343","content":{"pdu":7,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:15.285413067Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1343","time":"2026-03-06T19:22:15.28557112Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2253,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-196314398773332:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-196314398773332%3Amatrix.theocloud.dev","duration":39.923203,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:15.300958336Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:15.301728556Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2189,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-27956059590853:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1427.839846,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AvlyffuDHEMFxceTihjFMwRW","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:15.331473095Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:15.332641555Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2254,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-157088495980744%3Amatrix.theocloud.dev","duration":43.392475,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-157088495980744","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:15.345377142Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2208,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934266198746_27?ts=1765789129000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1086.366905,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.352711621Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8582E056F1E18CAF03","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T08:58:49Z","event_id":"$J94qSsmmCVck7-X7RIJeNaDBAJ9nu1EwyklRfoduvPY","part_id":"","time":"2026-03-06T19:22:15.352848861Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2210,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934277975050_28?ts=1765225045000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1085.747474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old photo. Media will be requested from your phone automatically soon.\n\nIch werd glaube nie wieder einen so guten Anime gucken können omg","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.image","body":"Ich werd glaube nie wieder einen so guten Anime gucken können omg","info":{"mimetype":"image/jpeg","w":900,"h":1600,"size":151222},"filename":"image.jpg"},"extra":{"info":{}},"whatsapp_media":{"key":"yXtEwtDmf+SZ5PgFcD/pUWLONHKN2hd5m/uJHW5krpQ=","length":151222,"type":"WhatsApp Image Keys","sha256":"MpTEs4LI6D5UFl8aB63Y5uZ6/zJv17VfvbP8x3sTni4=","enc_sha256":"YC0TWCnR2J4HEyX9va1UoTyq3ap+7EYprh1TCVSNE0A=","mime_type":"image/jpeg"},"type_description":"photo"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:15.363929048Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFE9929C8A45C21604D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-08T20:17:25Z","event_id":"$ACaCJC5ADq0V5Rgdg99PyQr0p_oVqGdYh8Ix4mk9Xuw","part_id":"","time":"2026-03-06T19:22:15.364092619Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2244,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88180091007092:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-88180091007092%3Amatrix.theocloud.dev","duration":335.155853,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mirko (WA)"},"time":"2026-03-06T19:22:15.369292022Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:15.37043052Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2256,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157088495980744:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-157088495980744%3Amatrix.theocloud.dev","duration":56.91225,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:15.402645866Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","action":"forward backfill","req_id":2214,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934330887647_1?ts=1740235783000&user_id=%40whatsapp_4917616043654%3Amatrix.theocloud.dev","duration":1102.055769,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"👍","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.433107894Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","action":"forward backfill","message_id":"4917616043654@s.whatsapp.net:4917616043654@s.whatsapp.net:3AC6DF945C073034C5BC","sender_id":{"user_id":"4917616043654"},"message_ts":"2025-02-22T14:49:43Z","event_id":"$QmYPqNHpBGEQxDAjePwd87c75VIwQwcjUWtENj8im2E","part_id":"","time":"2026-03-06T19:22:15.433286271Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:15.434143864Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","time":"2026-03-06T19:22:15.434231167Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"error","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:15.434398578Z","message":"Failed to get membership"} +{"level":"error","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.name","time":"2026-03-06T19:22:15.43451305Z","message":"Failed to set room metadata"} +{"level":"error","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","error":"no Get function provided for avatar","time":"2026-03-06T19:22:15.434600143Z","message":"Failed to reupload room avatar"} +{"level":"debug","transaction_id":"1344","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:15.437941185Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1344","time":"2026-03-06T19:22:15.43820023Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2252,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":227.833732,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<5529066 bytes>","time":"2026-03-06T19:22:15.464971446Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2258,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":113.227698,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<23427 bytes>","time":"2026-03-06T19:22:15.468921931Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2225,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934605346570_29?ts=1766572171000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":920.558361,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja genau","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.526063752Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4A4EA71D3F9B56BB9B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T10:29:31Z","event_id":"$gE-Jvmj3z4dmgruUYDWo2sUzMrKETCRZ_VyZ_u-zSO8","part_id":"","time":"2026-03-06T19:22:15.526225996Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:15.538887689Z","message":""} +{"level":"debug","transaction_id":"1345","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:15.550896428Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1345","time":"2026-03-06T19:22:15.551025986Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","action":"forward backfill","req_id":2219,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934500910679_1?ts=1725705161000&user_id=%40whatsapp_4915901353554%3Amatrix.theocloud.dev","duration":1068.135155,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"☀️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.569149689Z","message":"Request completed"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","action":"forward backfill","message_id":"4915901353554@s.whatsapp.net:4915901353554@s.whatsapp.net:C55DBC43815446E2A6D5438233BC6199","sender_id":{"user_id":"4915901353554"},"message_ts":"2024-09-07T10:32:41Z","event_id":"$_9Knyx_Y9B0ssfZOP9f3lXxXE2KeIyU53GC-9ZLmR60","part_id":"","time":"2026-03-06T19:22:15.569256408Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:15.569917116Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","time":"2026-03-06T19:22:15.570006863Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"error","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:15.570159887Z","message":"Failed to get membership"} +{"level":"error","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.name","time":"2026-03-06T19:22:15.570257736Z","message":"Failed to set room metadata"} +{"level":"error","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","error":"no Get function provided for avatar","time":"2026-03-06T19:22:15.570318569Z","message":"Failed to reupload room avatar"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:15.607207686Z","message":""} +{"level":"debug","transaction_id":"1346","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:15.664872975Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1346","time":"2026-03-06T19:22:15.665018107Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2260,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157088495980744:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-157088495980744%3Amatrix.theocloud.dev","duration":280.061386,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mihoshi (WA)"},"time":"2026-03-06T19:22:15.68293403Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:15.683754327Z","message":""} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","req_id":2196,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev?ts=1772824934062&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1640.147026,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:15.706975185Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:15.707476163Z","message":"Added portal to space"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","req_id":2201,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev?ts=1772824934079&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1625.837475,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:15.708355476Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:15.708752739Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","req_id":2209,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev?ts=1772824934264&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1444.226364,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:15.710847237Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:15.711139666Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2265,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":95.914723,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<57122 bytes>","time":"2026-03-06T19:22:15.723472054Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2240,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934871259182_31?ts=1772482249000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":885.239086,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ich hasse sie alle","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.756676436Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF1B40CE48F044C0FAB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:10:49Z","event_id":"$9v0eoBOSjtZS1d81KVKCidL0SS6GbD-filypDzdkeCo","part_id":"","time":"2026-03-06T19:22:15.756836794Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1347","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:15.81513618Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1347","time":"2026-03-06T19:22:15.815261686Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":2224,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1271.576636,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:15.831075987Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:15.844992047Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2243,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934991492752_32?ts=1772624682000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":863.652047,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"video.mp4","info":{"fi.mau.autoplay":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":108,"mimetype":"video/mp4","size":15220,"w":200},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/aJlmNHiwzOyClBDPZrkGsPbM"},"time":"2026-03-06T19:22:15.855476271Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A32FBA6DF2410646555","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T11:44:42Z","event_id":"$CGkxlr_ODXwreYCar07GUecPVe4-MPSnFgPtjY7IGk4","part_id":"","time":"2026-03-06T19:22:15.855635092Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","action":"forward backfill","req_id":2238,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824934843119407_30?ts=1726551716000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":1019.951295,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"🫶","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.863230991Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","action":"forward backfill","message_id":"4917658289477@s.whatsapp.net:4917641870516@s.whatsapp.net:152606CE6E5324FEFEDBF72AF048E052","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2024-09-17T05:41:56Z","event_id":"$MAjcYctEIRZhR7p0tHOpdjPPHetvg_MUsYX5SQV6qJo","part_id":"","time":"2026-03-06T19:22:15.863410764Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2245,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935041612847_3?ts=1771317304000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":844.505644,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Was weißt du übers Netzwerk Labor?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.886254265Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3AF5065990EB674A8C74","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T08:35:04Z","event_id":"$pP01b_rJANZ5SO1tAWZ3IPsm5oJrp2AhYlZhLuQO-kg","part_id":"","time":"2026-03-06T19:22:15.886406032Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2246,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935049577862_33?ts=1770364334000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":845.9108,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"eine Onlinevorlesung bei Zimmi wohlbemerkt wo ich eig schon auf dem Nachhauseweg sein wollte","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.895636238Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A980611F8FF0DA1D203","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:52:14Z","event_id":"$GAiuJ_BWrcshm0Sbek2XojxCsQNrOovfXh2KyIg3Fp0","part_id":"","time":"2026-03-06T19:22:15.895767542Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2262,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-20414147354769%3Amatrix.theocloud.dev","duration":395.178804,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<50481 bytes>","time":"2026-03-06T19:22:15.93224473Z","message":"Request completed"} +{"level":"debug","transaction_id":"1348","content":{"pdu":7,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:15.937061817Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1348","time":"2026-03-06T19:22:15.937449092Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2273,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-20414147354769:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-20414147354769%3Amatrix.theocloud.dev","duration":46.077209,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:15.978794003Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2247,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935164297879_34?ts=1765281720000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":819.571767,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Okee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:15.984047813Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADC8BF4DAACB6594A9B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-09T12:02:00Z","event_id":"$amDF3-zjjBSftjynPucFsZ9IxN7O5RouDskmb3d01cY","part_id":"","time":"2026-03-06T19:22:15.984198532Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2263,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915154980665%3Amatrix.theocloud.dev","duration":393.315205,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<29778 bytes>","time":"2026-03-06T19:22:16.008323847Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2264,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-88180091007092%3Amatrix.theocloud.dev","duration":397.494842,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<109579 bytes>","time":"2026-03-06T19:22:16.022666712Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2274,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ivyYZqwVPkAQePkiOikbjzQv?user_id=%40whatsapp_lid-20414147354769%3Amatrix.theocloud.dev","duration":47.034606,"status_code":200,"response_length":50481,"response_mime":"image/jpeg","time":"2026-03-06T19:22:16.025989455Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2248,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935168429953_35?ts=1770059469000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":861.65023,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":467422},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"pZo9CEKa93y3cAg7P8qKSXgM2+GLEKDcYdpujZzp2zE=","length":467422,"type":"WhatsApp Image Keys","sha256":"o6TYxR/GW6uVjqgZHhzLVf7/kMsV5l7IKxnGCHWByE4=","enc_sha256":"0Co/a0COsGG040DRuD59nftpIykFPdHB5NRRGtPU7No=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:16.030322536Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADC6BF256EED2391E6F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-02T19:11:09Z","event_id":"$TqkgC23rIkSTUWuAHBEdz5CG1ff3IDtPtnN_UoH0XSs","part_id":"","time":"2026-03-06T19:22:16.030554971Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2236,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-89215194906776:matrix.theocloud.dev?user_id=%40whatsapp_lid-89215194906776%3Amatrix.theocloud.dev","duration":1242.298643,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491754848071 (WA)","membership":"join"},"time":"2026-03-06T19:22:16.039511396Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:16.040318911Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2249,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935192610862_1?ts=1767806127000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":849.790464,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja bin hinten aber Bizeps fertig gemacht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.042619863Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A862A73D9F3498613CD","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-07T17:15:27Z","event_id":"$s_41YHFpq5tN6sZvgRUPLDmUvzCuKutA-BR130QA3BA","part_id":"","time":"2026-03-06T19:22:16.042752004Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","req_id":2250,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935211628197_36?ts=1766589802000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":850.429311,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wünsch ich dir auch 🎅","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.062194329Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","message_id":"4917680834617@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF097324C2599FBA642","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T15:23:22Z","event_id":"$7KbAQT-k9J0mU--cBdtmad8wqYGNDoEvCq7cAKAliTY","part_id":"","time":"2026-03-06T19:22:16.062352661Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2278,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915154980665:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915154980665%3Amatrix.theocloud.dev","duration":56.451152,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:16.065112895Z","message":"Request completed"} +{"level":"debug","transaction_id":"1349","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:16.07086929Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1349","time":"2026-03-06T19:22:16.070992352Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","req_id":2251,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935221363851_37?ts=1771233208000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":853.810791,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ohne das böse zu meinen, aber eher nicht so","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.07530413Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","message_id":"491605556877@s.whatsapp.net:4917641870516@s.whatsapp.net:3A32532767162698BCB9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T09:13:28Z","event_id":"$imuJG0Jx7LQJbA8e1DcfB7HWBYTgA6VQdEj8JtOn3R4","part_id":"","time":"2026-03-06T19:22:16.075548508Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2279,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88180091007092:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-88180091007092%3Amatrix.theocloud.dev","duration":53.948635,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:16.076973778Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2235,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-102147257532455:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1292.448002,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qXVJUHNyOxuokCEzkiaQFcJo","com.beeper.exclude_from_timeline":true,"displayname":"FloJ (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:16.082981116Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2282,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491754848071%3Amatrix.theocloud.dev","duration":48.974194,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491754848071","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:16.089596151Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2285,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/jAhNUUvlkymmWgXnoxTvoHDX?user_id=%40whatsapp_4915154980665%3Amatrix.theocloud.dev","duration":34.943663,"status_code":200,"response_length":29778,"response_mime":"image/jpeg","time":"2026-03-06T19:22:16.100179829Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2287,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/pPKHjogbUpOHFJjFptQcXgFN?user_id=%40whatsapp_lid-88180091007092%3Amatrix.theocloud.dev","duration":33.844766,"status_code":200,"response_length":109579,"response_mime":"image/jpeg","time":"2026-03-06T19:22:16.11094845Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2280,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-20414147354769:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-20414147354769%3Amatrix.theocloud.dev","duration":87.26274,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ivyYZqwVPkAQePkiOikbjzQv"},"time":"2026-03-06T19:22:16.113587787Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:16.114782368Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2289,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491754848071:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491754848071%3Amatrix.theocloud.dev","duration":39.935075,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:16.129932749Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2292,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-99561704038426%3Amatrix.theocloud.dev","duration":39.90239,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-99561704038426","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:16.154979073Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2257,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935353507054_38?ts=1765789152000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":810.560516,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"12:30 Uhr oder 12:45 Uhr?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.164208791Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3F86752A08DF4E9EAB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T08:59:12Z","event_id":"$ZNVUfCvDq52U0CTlRwQV8QSZ4mkm8lRqqPeZ2G-i2A0","part_id":"","time":"2026-03-06T19:22:16.164325008Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2290,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915154980665:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915154980665%3Amatrix.theocloud.dev","duration":85.395229,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jAhNUUvlkymmWgXnoxTvoHDX"},"time":"2026-03-06T19:22:16.185884948Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915787340921@s.whatsapp.net","time":"2026-03-06T19:22:16.186648463Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","transaction_id":"1350","content":{"pdu":8,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:16.188586724Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1350","time":"2026-03-06T19:22:16.189010457Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2291,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88180091007092:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-88180091007092%3Amatrix.theocloud.dev","duration":81.983856,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pPKHjogbUpOHFJjFptQcXgFN"},"time":"2026-03-06T19:22:16.193215028Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:16.1939886Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2294,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-99561704038426:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-99561704038426%3Amatrix.theocloud.dev","duration":44.233026,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:16.199677108Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2259,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935364911309_1?ts=1765225074000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":850.13751,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Brooo","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.215178935Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:ACC49BCBF99D43B7CF27F8B76292B3FD","sender_id":{"user_id":"4915735701057"},"message_ts":"2025-12-08T20:17:54Z","event_id":"$0nalp2s7csT11pw-x06WGe5TxqRbqKcblskblMKIkuc","part_id":"","time":"2026-03-06T19:22:16.215345928Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2296,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915787340921%3Amatrix.theocloud.dev","duration":55.808953,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915787340921","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:16.242715762Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2297,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":56.067159,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-266502737506505","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:16.250260676Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2269,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-157088495980744%3Amatrix.theocloud.dev","duration":396.834973,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<60221 bytes>","time":"2026-03-06T19:22:16.254490041Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2300,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915787340921:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915787340921%3Amatrix.theocloud.dev","duration":58.023859,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:16.30122237Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2301,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-266502737506505:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":57.313423,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:16.307987007Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2302,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157088495980744:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-157088495980744%3Amatrix.theocloud.dev","duration":59.966869,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:16.314777276Z","message":"Request completed"} +{"level":"debug","transaction_id":"1351","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:16.344067631Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1351","time":"2026-03-06T19:22:16.344170648Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2261,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935527040705_4?ts=1766572181000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":827.796106,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Er kam grad als ich ging","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.355031251Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC8D0BF3F30033D79829B46A7C887221","sender_id":{"user_id":"4917657607100"},"message_ts":"2025-12-24T10:29:41Z","event_id":"$YN9UiZPTvzzpHJLHm6IdgR0uPGGQCfglEwDPy25XJtc","part_id":"","time":"2026-03-06T19:22:16.355184275Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2305,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/MteePNhLunKwnvXsfYlaKbQf?user_id=%40whatsapp_lid-157088495980744%3Amatrix.theocloud.dev","duration":42.53111,"status_code":200,"response_length":60221,"response_mime":"image/jpeg","time":"2026-03-06T19:22:16.357489906Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2275,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":409.117982,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45580 bytes>","time":"2026-03-06T19:22:16.390719781Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","req_id":2213,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21NOcWeBtUTcuAExaode:matrix.theocloud.dev?ts=1772824934327&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2079.21195,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:16.407129208Z","message":"Request completed"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917616043654@s.whatsapp.net","latest_message_ts":"2025-02-22T14:49:43Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:16.407700308Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","req_id":2220,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21PchXjQjXcAUVmlVcIq:matrix.theocloud.dev?ts=1772824934500&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1906.737736,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:16.408879314Z","message":"Request completed"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915901353554@s.whatsapp.net","latest_message_ts":"2024-09-07T10:32:41Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:16.4091598Z","message":"Added portal to space"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","req_id":2239,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev?ts=1772824934842&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1565.617568,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:16.41016895Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:16.410459983Z","message":"Added portal to space"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2307,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157088495980744:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-157088495980744%3Amatrix.theocloud.dev","duration":66.494531,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MteePNhLunKwnvXsfYlaKbQf"},"time":"2026-03-06T19:22:16.424318004Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2293,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491754848071:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491754848071%3Amatrix.theocloud.dev","duration":294.513066,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491754848071 (WA)"},"time":"2026-03-06T19:22:16.424597442Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:16.42646656Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2255,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-27956059590853:matrix.theocloud.dev?user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":1112.644756,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AvlyffuDHEMFxceTihjFMwRW","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","membership":"join"},"time":"2026-03-06T19:22:16.444815155Z","message":"Request completed"} +{"level":"debug","transaction_id":"1352","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:16.457219061Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1352","time":"2026-03-06T19:22:16.457296167Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2298,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-99561704038426:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-99561704038426%3Amatrix.theocloud.dev","duration":290.544003,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491621791301 (WA)"},"time":"2026-03-06T19:22:16.490417507Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:16.491241715Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2266,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935758259270_3?ts=1772482255000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":773.741171,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja das ist dieses: wir haben die diskussion „gewonnen“ (ist ja eig eher Meinungsaustausch) und maja ging auf defensive mit nhn passiv agressiven Kommentar","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$-0h3C93bXV3s3jibJw9lT_X9p7bY6ZQQm7bHIhfT744"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.532148785Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AE641458179150C3C6C","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:10:55Z","event_id":"$mJEt_i0nep-6_U89MaTNvndDPbpOszSOmHtA62Bc-R8","part_id":"","time":"2026-03-06T19:22:16.532296222Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2303,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915787340921:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915787340921%3Amatrix.theocloud.dev","duration":248.189942,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915787340921 (WA)"},"time":"2026-03-06T19:22:16.549626728Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:16.55045757Z","message":""} +{"level":"debug","transaction_id":"1353","content":{"pdu":3,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:16.55340547Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1353","time":"2026-03-06T19:22:16.553692173Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2304,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-266502737506505:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":247.669408,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sven (WA)"},"time":"2026-03-06T19:22:16.555834582Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:16.556542503Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2310,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":86.940418,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<225792 bytes>","time":"2026-03-06T19:22:16.595414511Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2277,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":598.036474,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<458134 bytes>","time":"2026-03-06T19:22:16.605606584Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2268,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935856562317_39?ts=1772624700000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":750.505715,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"vector ist auch oft so ein mood haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.607253114Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9DE9081AD6C8003AFC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T11:45:00Z","event_id":"$tYaWnDUbm0i380swXbBgVHZAIKA3GzBHQasXVuowOmM","part_id":"","time":"2026-03-06T19:22:16.607387909Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2272,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935896565629_4?ts=1770364353000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":747.303171,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also dieser Bachelorball ist ja cool und so, aber aus dem jahrgang über mir ist keiner hingegangen weil es zu teuer war.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.64403237Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3EB06CBFC028BEDF9F5A9A","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-06T07:52:33Z","event_id":"$TaXR8XWWknRSQcPlApjGOXO0jvgcW5uFJKydYuztSgY","part_id":"","time":"2026-03-06T19:22:16.644221712Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1354","content":{"pdu":1,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:16.66003727Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1354","time":"2026-03-06T19:22:16.660168224Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:16.660181983Z","message":""} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2271,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935887513171_40?ts=1771317872000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":785.533468,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Danke","m.mentions":{"user_ids":["@whatsapp_4915150515988:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$83JGTLkvWfu9go285P0Pqs5ADxECzcXbh3WQBhr3elY"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.673188139Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA8B54F81A9772F5219","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T08:44:32Z","event_id":"$ytKu26mJHj6wC_SrVcABOt-zCwb9s9Pa8d2PrUddyJc","part_id":"","time":"2026-03-06T19:22:16.673321049Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","action":"forward backfill","req_id":2270,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824935864201588_1?ts=1726578844956&user_id=%40whatsapp_4917658289477%3Amatrix.theocloud.dev","duration":814.596417,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$MAjcYctEIRZhR7p0tHOpdjPPHetvg_MUsYX5SQV6qJo","key":"🫶"}},"time":"2026-03-06T19:22:16.678913803Z","message":"Request completed"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","action":"forward backfill","target_message_id":"4917658289477@s.whatsapp.net:4917641870516@s.whatsapp.net:152606CE6E5324FEFEDBF72AF048E052","target_part_id":"","reaction_sender_id":{"user_id":"4917658289477"},"reaction_ts":"2024-09-17T13:14:04.956Z","event_id":"$0bHW7onkdsxUSyNd8AGYIPnYZjq1dgZNuvdYv-36-oU","time":"2026-03-06T19:22:16.679029182Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:16.679555723Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","time":"2026-03-06T19:22:16.679637089Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"error","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:16.679802755Z","message":"Failed to get membership"} +{"level":"error","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.name","time":"2026-03-06T19:22:16.679912826Z","message":"Failed to set room metadata"} +{"level":"error","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:16.68000851Z","message":"Failed to get membership"} +{"level":"error","portal_id":"4917658289477@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917658289477@s.whatsapp.net","latest_message_ts":"2024-09-17T05:41:56Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.avatar","time":"2026-03-06T19:22:16.680088479Z","message":"Failed to set room metadata"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:16.705165743Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2276,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824935985021832_41?ts=1765466294000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":727.086226,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Falls es noch nicht zu spät ist wie bräuchten für die Shawarma auch noch Kartoffeln","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.712274423Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD87D022C3ECAB191C0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-11T15:18:14Z","event_id":"$8-lK4x_OYVOl-RGCMxlRxWnIdyVcFbO50Frs1fangv0","part_id":"","time":"2026-03-06T19:22:16.712426259Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2281,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936031479262_42?ts=1770059471000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":713.860486,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"moin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.745469795Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6F1D052E8D06898A78","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-02T19:11:11Z","event_id":"$3nldGMwdfwuZPad6k4LmzBTXdzYDG9xmzVilJ8p4SjM","part_id":"","time":"2026-03-06T19:22:16.74561388Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1355","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:16.75450605Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1355","time":"2026-03-06T19:22:16.754639239Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2283,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936043618117_43?ts=1767964196000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":714.097042,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.757828653Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8B6209860A2D35F228","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-09T13:09:56Z","event_id":"$w5iK6hkt3c1M83gxf9eBbIOril1gaWihqLQXtcil7cI","part_id":"","time":"2026-03-06T19:22:16.757963658Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","req_id":2284,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936063116665_2?ts=1766589834000&user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":710.750413,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Danköö🥰","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.7739856Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","message_id":"4917680834617@s.whatsapp.net:4917680834617@s.whatsapp.net:ACAF9A37CBA07336D31556F187D142A5","sender_id":{"user_id":"4917680834617"},"message_ts":"2025-12-24T15:23:54Z","event_id":"$HfwWjAXefNdDziFQvyqExRlS7kIZnKSCQRQtVYykahc","part_id":"","time":"2026-03-06T19:22:16.774141488Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","req_id":2286,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936076396043_2?ts=1771233246000&user_id=%40whatsapp_491605556877%3Amatrix.theocloud.dev","duration":704.339457,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Haha ne alles gut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.780866734Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","message_id":"491605556877@s.whatsapp.net:491605556877@s.whatsapp.net:3EB0859C9FBC26FDF3886E","sender_id":{"user_id":"491605556877"},"message_ts":"2026-02-16T09:14:06Z","event_id":"$2pMjHUjqE1dvPdv6WGBSlwwRIygkQhxudDjHLyGFnts","part_id":"","time":"2026-03-06T19:22:16.781008793Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":2267,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":994.318786,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:16.826176587Z","message":"Request completed"} +{"level":"debug","transaction_id":"1356","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:16.855523654Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1356","time":"2026-03-06T19:22:16.855646646Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2295,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936165141743_44?ts=1765789177000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":697.538852,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich glaub 12:45 Uhr reicht wie immer","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.862816647Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AAD6F62FE806B9E0C61","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T08:59:37Z","event_id":"$4FNLdG1fLiraAJDGLMaGnPDK2B3d4mmGIA3s7n2p1N8","part_id":"","time":"2026-03-06T19:22:16.862996281Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2322,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":81.020733,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<405792 bytes>","time":"2026-03-06T19:22:16.865602094Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_count":100,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:16.866136247Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_count":100,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:16.866224458Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":2323,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":68.064165,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:16.895017467Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:16.903198294Z","message":""} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2299,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936216133469_45?ts=1765225075000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":692.58641,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Muss glaube die 4. Staffel nochmal gucken, weil ich glaub ich nichtmal alles verstanden hab","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.908852999Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A134276F6BC6F466528","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-08T20:17:55Z","event_id":"$hI5ZSRaDOJ6DBwCUpWtESMAQovkx4BqBdnNCYf55kKk","part_id":"","time":"2026-03-06T19:22:16.909047439Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:16.928681131Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2327,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915787340921:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915787340921%3Amatrix.theocloud.dev","duration":32.622527,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:16.936172407Z","message":"Request completed"} +{"level":"debug","transaction_id":"1357","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:16.955731088Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1357","time":"2026-03-06T19:22:16.956105023Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2329,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491754848071:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491754848071%3Amatrix.theocloud.dev","duration":39.899037,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:16.968947818Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2330,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-59463872561404%3Amatrix.theocloud.dev","duration":35.040394,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-59463872561404","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:16.972402633Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2306,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936356045220_46?ts=1766572194000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":627.690568,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und er war nach mir noch da haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:16.983848094Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7BC2D7205EE5EDA83B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T10:29:54Z","event_id":"$F7FPYV3gYua_W7jXHhe36D_SKp2tjTZpZ7nvdY2a1VA","part_id":"","time":"2026-03-06T19:22:16.983987779Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2332,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59463872561404:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-59463872561404%3Amatrix.theocloud.dev","duration":40.400574,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:17.013147808Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2288,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-102147257532455:matrix.theocloud.dev?user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":934.402343,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qXVJUHNyOxuokCEzkiaQFcJo","com.beeper.exclude_from_timeline":true,"displayname":"FloJ (WA)","membership":"join"},"time":"2026-03-06T19:22:17.018054643Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2316,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":321.067422,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<53352 bytes>","time":"2026-03-06T19:22:17.036223115Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2317,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-99561704038426%3Amatrix.theocloud.dev","duration":334.188189,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41099 bytes>","time":"2026-03-06T19:22:17.051579321Z","message":"Request completed"} +{"level":"debug","transaction_id":"1358","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:17.081558879Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1358","time":"2026-03-06T19:22:17.081656519Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2336,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-266502737506505:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":50.515682,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:17.087023613Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2337,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-99561704038426:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-99561704038426%3Amatrix.theocloud.dev","duration":44.929841,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:17.096913619Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2338,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/kjnxeNcLTUeaTJpevrDMogrm?user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":45.894711,"status_code":200,"response_length":53352,"response_mime":"image/jpeg","time":"2026-03-06T19:22:17.133058498Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2339,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/FrQuRpXJaVqaTuVDwylopjgE?user_id=%40whatsapp_lid-99561704038426%3Amatrix.theocloud.dev","duration":42.626864,"status_code":200,"response_length":41099,"response_mime":"image/jpeg","time":"2026-03-06T19:22:17.139661171Z","message":"Request completed"} +{"level":"debug","transaction_id":"1359","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:17.191850481Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1359","time":"2026-03-06T19:22:17.192198644Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2340,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-266502737506505:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":65.209224,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kjnxeNcLTUeaTJpevrDMogrm"},"time":"2026-03-06T19:22:17.198530888Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:17.199758016Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2341,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-99561704038426:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-99561704038426%3Amatrix.theocloud.dev","duration":62.378171,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FrQuRpXJaVqaTuVDwylopjgE"},"time":"2026-03-06T19:22:17.202274011Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:17.203177001Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2311,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936533494086_47?ts=1772482268000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":669.885458,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo","m.mentions":{"user_ids":["@whatsapp_491736748726:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$mJEt_i0nep-6_U89MaTNvndDPbpOszSOmHtA62Bc-R8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.203519926Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A234ACFB3EBA5CB0B0E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:11:08Z","event_id":"$WMfE6rCpehr4rvLPnZ3E4vjfj7CV1-0fYE8IYO1IHpI","part_id":"","time":"2026-03-06T19:22:17.203652557Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2342,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-173714331201661%3Amatrix.theocloud.dev","duration":41.457636,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-173714331201661","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:17.24150829Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2343,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-28999669539033%3Amatrix.theocloud.dev","duration":39.469018,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-28999669539033","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:17.242923224Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2345,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-173714331201661:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-173714331201661%3Amatrix.theocloud.dev","duration":53.693502,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:17.295521041Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2346,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-28999669539033:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-28999669539033%3Amatrix.theocloud.dev","duration":53.438997,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:17.296795103Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2312,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936608100998_8?ts=1772625508000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":692.850274,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.301064487Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A7CBDB9FD3E2136F790","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T11:58:28Z","event_id":"$iv2nLjsgbICBr-1Xkip8AyUqTz5XhliqS20dlv1afsQ","part_id":"","time":"2026-03-06T19:22:17.301178399Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2334,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59463872561404:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-59463872561404%3Amatrix.theocloud.dev","duration":295.329032,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Pasi (WA)"},"time":"2026-03-06T19:22:17.308668208Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:17.3093447Z","message":""} +{"level":"debug","transaction_id":"1360","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:17.326460161Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1360","time":"2026-03-06T19:22:17.326582245Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2313,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936645193427_48?ts=1770364391000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":704.343717,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Top haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.349663Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A66FC8871D4C5F947A2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:53:11Z","event_id":"$w77B1C9EY0HONwdL5WqZFi3gewd_BQtpWpq7sz4_Rgg","part_id":"","time":"2026-03-06T19:22:17.349773141Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2314,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936674535675_49?ts=1771317920000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":710.234977,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dass es wahrscheinlich chillig werden soll, aber vllt in meinem Kontext nur, weil ich schon das vierte Semester in unserer Netzwerkabteilung war","m.mentions":{"user_ids":["@whatsapp_4915150515988:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$pP01b_rJANZ5SO1tAWZ3IPsm5oJrp2AhYlZhLuQO-kg"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.384893016Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5461021B4DBD18B8E8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T08:45:20Z","event_id":"$n-7Xt_CiclqZYV63qSazM3A9WBqgumNpObPI_a6Othc","part_id":"","time":"2026-03-06T19:22:17.385017893Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2315,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936713208353_50?ts=1765620973000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":723.260759,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Einkauf:\n- Zwiebeln\n- ⁠Knoblauch\n- ⁠Möhren\n- ⁠Zitronen\n- ⁠Haferflocken (wenn geht Maxipackung)\n- 2-3 Magerquark\n- ⁠2-3 Skyr Natur\n- ⁠15er Eierpackung\n- ⁠Parboiled Reis\n- ⁠Joghurt\n- ⁠Agavendicksaft\n- ⁠2 Dosen gehackte Tomaten\n- ⁠500g Tagliatelle\n- ⁠500g Wildlachs\n- ⁠Kreuzkümmel\n- ⁠Vanillezuckerpäckchen","format":"org.matrix.custom.html","formatted_body":"Einkauf:\u003cbr\u003e\u003cul\u003e\u003cli\u003eZwiebeln\u003c/li\u003e\u003cli\u003e⁠Knoblauch\u003c/li\u003e\u003cli\u003e⁠Möhren\u003c/li\u003e\u003cli\u003e⁠Zitronen\u003c/li\u003e\u003cli\u003e⁠Haferflocken (wenn geht Maxipackung)\u003c/li\u003e\u003cli\u003e2-3 Magerquark\u003c/li\u003e\u003cli\u003e⁠2-3 Skyr Natur\u003c/li\u003e\u003cli\u003e⁠15er Eierpackung\u003c/li\u003e\u003cli\u003e⁠Parboiled Reis\u003c/li\u003e\u003cli\u003e⁠Joghurt\u003c/li\u003e\u003cli\u003e⁠Agavendicksaft\u003c/li\u003e\u003cli\u003e⁠2 Dosen gehackte Tomaten\u003c/li\u003e\u003cli\u003e⁠500g Tagliatelle\u003c/li\u003e\u003cli\u003e⁠500g Wildlachs\u003c/li\u003e\u003cli\u003e⁠Kreuzkümmel\u003c/li\u003e\u003cli\u003e⁠Vanillezuckerpäckchen\u003c/li\u003e\u003c/ul\u003e","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.436625348Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4AB109BE85F9227732","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-13T10:16:13Z","event_id":"$G4WdoRttEPwuKDlXzrOC4oqIMFVlRYA_plGjCtfqXEI","part_id":"","time":"2026-03-06T19:22:17.436848145Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1361","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:17.448651757Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1361","time":"2026-03-06T19:22:17.448894948Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2309,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251745280225436:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1012.047322,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LXWwZVePUhXHkbHUxnFqIiaB","com.beeper.exclude_from_timeline":true,"displayname":"Chrissi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:17.457544696Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2318,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936746361680_3?ts=1770059552000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":717.433055,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich fühle mich gut (hab mir eine 1,25 Cola Zero geholt)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.463910324Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3AC8948774CE1E90ED40","sender_id":{"user_id":"4915234825973"},"message_ts":"2026-02-02T19:12:32Z","event_id":"$QiGqvFxDokBeVW4m88e5gYEP6rXOEmPVYUSP1VarDWI","part_id":"","time":"2026-03-06T19:22:17.464018719Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2319,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936758720468_51?ts=1767964230000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":709.628817,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Du meinest ja am Mittwoch du wolltest Donnerstag ins Gym gehen. Bist du wirklich dann gestern gegangen und gehst heute nicht?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.468470811Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD6BC33B413B6EE49F0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-09T13:10:30Z","event_id":"$mVkd60saCjNnLzEEQZ8NV1UKi-i5D0J-VGG1uPxfqWg","part_id":"","time":"2026-03-06T19:22:17.468580952Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","req_id":2320,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936774855625_3?ts=1767222572000&user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":715.714727,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Frohes Neues!🥳🥂🥳","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.49068622Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","message_id":"4917680834617@s.whatsapp.net:4917680834617@s.whatsapp.net:AC4EA4281C18EAC3C0F1CC9D3391EF7C","sender_id":{"user_id":"4917680834617"},"message_ts":"2025-12-31T23:09:32Z","event_id":"$G0tzquzhRcaJblguHwmDmHCULkdHi1SgAY02L6BsrAU","part_id":"","time":"2026-03-06T19:22:17.490802228Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","req_id":2321,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JmVDWCppZlZeFbcgKz:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824936781721812_52?ts=1771233257838&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":739.771736,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$2pMjHUjqE1dvPdv6WGBSlwwRIygkQhxudDjHLyGFnts","key":"❤️"}},"time":"2026-03-06T19:22:17.521593143Z","message":"Request completed"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","target_message_id":"491605556877@s.whatsapp.net:491605556877@s.whatsapp.net:3EB0859C9FBC26FDF3886E","target_part_id":"","reaction_sender_id":{"user_id":"4917641870516","is_from_me":true},"reaction_ts":"2026-02-16T09:14:17.838Z","event_id":"$8_P6ruUhdwQBBaKpcGjsYNVPqexucI65o2Hxm10eOZo","time":"2026-03-06T19:22:17.521770961Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:17.52228067Z","message":"Backfill finished"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","time":"2026-03-06T19:22:17.522374747Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"error","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:17.522524Z","message":"Failed to get membership"} +{"level":"error","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.name","time":"2026-03-06T19:22:17.522618217Z","message":"Failed to set room metadata"} +{"level":"error","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:17.522697209Z","message":"Failed to get membership"} +{"level":"error","portal_id":"491605556877@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491605556877@s.whatsapp.net","latest_message_ts":"2026-02-16T09:14:06Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.avatar","time":"2026-03-06T19:22:17.522782626Z","message":"Failed to set room metadata"} +{"level":"debug","transaction_id":"1362","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:17.549834398Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1362","time":"2026-03-06T19:22:17.550124034Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2347,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-173714331201661:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-173714331201661%3Amatrix.theocloud.dev","duration":255.153838,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491799302414 (WA)"},"time":"2026-03-06T19:22:17.550854933Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:17.551616911Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2348,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-28999669539033:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-28999669539033%3Amatrix.theocloud.dev","duration":255.189598,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917672815004 (WA)"},"time":"2026-03-06T19:22:17.552207008Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:17.552927011Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2324,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936864307150_1?ts=1765793533000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":727.012333,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Du hast absolut Recht!","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$4FNLdG1fLiraAJDGLMaGnPDK2B3d4mmGIA3s7n2p1N8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.591571752Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA9C68BC11D071E9B64","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T10:12:13Z","event_id":"$0B75U0VDu7vGC7B7cAJVc1A1RNWD6oSCgdw2u5I3xW4","part_id":"","time":"2026-03-06T19:22:17.591726802Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2328,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936909886523_2?ts=1765225076000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":698.004769,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hahahha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.608030139Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:ACFBDB2EB78D2707E50CF73611DE47A5","sender_id":{"user_id":"4915735701057"},"message_ts":"2025-12-08T20:17:56Z","event_id":"$oXdKtt0n_YqS2eKzSeROta0FB4ZrmOoRmq3-Og7NCY0","part_id":"","time":"2026-03-06T19:22:17.6082111Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1363","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:17.630239332Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1363","time":"2026-03-06T19:22:17.630428325Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:17.652488964Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2325,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936866586171_53?ts=1771428413000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":790.865152,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie lief sie so bis jetzt?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.657589959Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2E8B6D1F7EB414A7F0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-18T15:26:53Z","event_id":"$IqzXuZM83Af7w-M5nZejYqkwgzGo0Y1s-64Ayi1TQfk","part_id":"","time":"2026-03-06T19:22:17.657705758Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2333,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824936984775808_54?ts=1766572217000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":690.701579,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"war von 17:15 bis 18:15 Uhr ca. da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.675585573Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6DBAD988918CBBD464","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T10:30:17Z","event_id":"$VJ0L8261NoVlmltvT8n8xcRhgiB4_RNiLPBuWTa3mSM","part_id":"","time":"2026-03-06T19:22:17.675744952Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:17.700437106Z","message":""} +{"level":"debug","transaction_id":"1364","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:17.73129947Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1364","time":"2026-03-06T19:22:17.731442437Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2363,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-28999669539033:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-28999669539033%3Amatrix.theocloud.dev","duration":34.779813,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:17.735514028Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:17.736536239Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2364,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-12502750490865%3Amatrix.theocloud.dev","duration":36.097666,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-12502750490865","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:17.772901539Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2365,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12502750490865:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12502750490865%3Amatrix.theocloud.dev","duration":50.176039,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:17.823484758Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:17.84745202Z","message":""} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":2326,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1001.191118,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","com.beeper.exclude_from_timeline":true,"displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:17.896717316Z","message":"Request completed"} +{"level":"info","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:17.897321242Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"sticker","time":"2026-03-06T19:22:17.906116261Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","message_count":1,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:17.906246308Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","message_count":1,"batch_send":false,"mark_read":true,"mark_read_past_threshold":true,"time":"2026-03-06T19:22:17.906383129Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2367,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-173714331201661:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-173714331201661%3Amatrix.theocloud.dev","duration":70.952419,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:17.918767898Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:17.919928955Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2344,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937204417538_4?ts=1772482315000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":723.276193,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also ich nehm es ihr nicht übel weil so aus ihrer Perspektive hatte sie einen guten plan morgen und weil unser plan nicht zu ihrem plan passt möchte sie jetzt nicht ihren plan wegschmeißen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:17.927852483Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3ABC6D2757B1E8E67570","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:11:55Z","event_id":"$G--H1fHRmlO4FUwpBM-NgrxZQ6BfXD2EECNyWCSJ3gU","part_id":"","time":"2026-03-06T19:22:17.928037216Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2370,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-187501142626535%3Amatrix.theocloud.dev","duration":47.495076,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-187501142626535","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:17.967739438Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2372,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-187501142626535:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-187501142626535%3Amatrix.theocloud.dev","duration":44.721852,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:18.012842767Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2349,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937302094380_55?ts=1772638926000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":718.231002,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Fahre dann jetzt los mit dem Fahrrad :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.020468279Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE1C48FF440CFF09860","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T15:42:06Z","event_id":"$jonv8IbJmLZQL0p-VQ8nm2s4lUEJzsogMHkIpikJuS8","part_id":"","time":"2026-03-06T19:22:18.020622072Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1365","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:18.034420937Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1365","time":"2026-03-06T19:22:18.034530309Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2361,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-59463872561404%3Amatrix.theocloud.dev","duration":392.111125,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<27667 bytes>","time":"2026-03-06T19:22:18.053161975Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2331,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-138817721917594:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1088.093613,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MsWeuvpskahBdUZmTLSdrYCL","com.beeper.exclude_from_timeline":true,"displayname":"Paula (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:18.057863613Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2350,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937350547481_5?ts=1770364408000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":709.196912,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich würde vorschlagen, dass ich in den Kurs frage wer bei diesem kommitee mitmachen will und leite die namen + email adressen weiter. Aber in die Uni will ich dafür nicht fahren. IT Management davor ist ja auch online","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.059851392Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3EB05AE845C9709409BA37","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-06T07:53:28Z","event_id":"$sIrE3t0X3E7q3bEtGiqbC58d4A3anHv5LT6qvMCXmnI","part_id":"","time":"2026-03-06T19:22:18.059922212Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2335,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251745280225436:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1050.235364,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LXWwZVePUhXHkbHUxnFqIiaB","com.beeper.exclude_from_timeline":true,"displayname":"Chrissi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:18.069295106Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2356,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":604.092282,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<500341 bytes>","time":"2026-03-06T19:22:18.080499123Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2375,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59463872561404:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-59463872561404%3Amatrix.theocloud.dev","duration":53.722137,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:18.10724387Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2351,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937385751027_56?ts=1771318811000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":727.694482,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Finde aber die Liste nicht mehr wer in welcher Gruppe ist","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.113543288Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEF69EA10BF828EA5DC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T09:00:11Z","event_id":"$PeU-GLJdCK1b34vLNFockaWn6vF5O8SNJX-GY0fPVnE","part_id":"","time":"2026-03-06T19:22:18.113620533Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2379,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/NmIelWpzwZhHrfrTFHGrEsQH?user_id=%40whatsapp_lid-59463872561404%3Amatrix.theocloud.dev","duration":28.711014,"status_code":200,"response_length":27667,"response_mime":"image/jpeg","time":"2026-03-06T19:22:18.136100156Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2366,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12502750490865:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12502750490865%3Amatrix.theocloud.dev","duration":316.602479,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491738992038 (WA)"},"time":"2026-03-06T19:22:18.14029851Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:18.140845934Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2352,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937437594129_2?ts=1766408709000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":710.440383,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"https://www.leckerschmecker.me/cremige-gemuese-haehnchen-pfanne-a-t-gericht/63743511434331","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.148186629Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:4AF209159EBFE18C95D0","sender_id":{"user_id":"491628947581"},"message_ts":"2025-12-22T13:05:09Z","event_id":"$KCzlwgnN-dss5Q8S7GiJqXgsmdWD4pbTKEg4IUMuQII","part_id":"","time":"2026-03-06T19:22:18.148364028Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1366","content":{"pdu":2,"unstable_edu":3,"unstable_to_device":0},"time":"2026-03-06T19:22:18.153050231Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1366","time":"2026-03-06T19:22:18.153490935Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2354,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937464813803_4?ts=1770059555000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":711.325424,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":200480},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"zrrsZQwP7vQ9WHu/spq2DZ1jzGa4lo1yHsrgcV9mCBE=","length":200480,"type":"WhatsApp Image Keys","sha256":"inKQjvG3NhpGyWCBal2FHBw2/Mg90UUDbxi60d5uuds=","enc_sha256":"1dMvyRYuPOOBy/Mbe1Ba0zmAOnRP6xzqkIugTYmla/o=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:18.176364747Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3AF1C258CF4F210C7817","sender_id":{"user_id":"4915234825973"},"message_ts":"2026-02-02T19:12:35Z","event_id":"$8e_ZHmwBXTYletpq0Q6k8WS-9F6YXMXZYLZElIac0WA","part_id":"","time":"2026-03-06T19:22:18.17650513Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2355,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937469292574_2?ts=1767973647000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":712.715842,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Doch war gestern nicht 🌚","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.182143212Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A9E331109697719F121","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-09T15:47:27Z","event_id":"$Mm19cwdRYTMF8R0cfTZgWJvPoQ2eomr6P0TMJbKgSAE","part_id":"","time":"2026-03-06T19:22:18.182260966Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2381,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59463872561404:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-59463872561404%3Amatrix.theocloud.dev","duration":56.475736,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NmIelWpzwZhHrfrTFHGrEsQH"},"time":"2026-03-06T19:22:18.192946544Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","req_id":2357,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937491477532_57?ts=1767222711000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":706.386462,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Frohes Neues :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.197997672Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","message_id":"4917680834617@s.whatsapp.net:4917641870516@s.whatsapp.net:3A424E2B8B820E3C55A3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-31T23:11:51Z","event_id":"$UhiM11IbbBYzCR5wJdusxRo6D7R4KQKjLW5I9o4JxCI","part_id":"","time":"2026-03-06T19:22:18.198124995Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2385,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917670964733%3Amatrix.theocloud.dev","duration":19.994846,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917670964733","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:18.213602726Z","message":"Request completed"} +{"level":"debug","transaction_id":"1367","content":{"pdu":8,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:18.221973036Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1367","time":"2026-03-06T19:22:18.222434832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2373,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-187501142626535:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-187501142626535%3Amatrix.theocloud.dev","duration":226.059181,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+919766453850 (WA)"},"time":"2026-03-06T19:22:18.239130263Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:18.239864025Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2387,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670964733:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670964733%3Amatrix.theocloud.dev","duration":37.691604,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:18.251813538Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:18.294443685Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2358,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937592572521_2?ts=1765793540000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":721.177645,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"12:45 Uhr 🎁","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.313893063Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A43A43E1BEC6F2B42B0","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T10:12:20Z","event_id":"$R3Uwkf20X8B7-ybUpj7kqffc4eBNpCC3EP4x89T_z1s","part_id":"","time":"2026-03-06T19:22:18.314025065Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2359,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937609464977_3?ts=1765225077000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":721.025109,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geil","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.330641504Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:AC7C232855DF107CA79C9BE798D546CC","sender_id":{"user_id":"4915735701057"},"message_ts":"2025-12-08T20:17:57Z","event_id":"$jek-MeJyRpLfa7wUSSxsmAsNMQ4uUQ6XfXd7DATtCus","part_id":"","time":"2026-03-06T19:22:18.330762541Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1368","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:18.335293414Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1368","time":"2026-03-06T19:22:18.335426464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:18.392736535Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2353,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251745280225436:matrix.theocloud.dev?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":936.333899,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LXWwZVePUhXHkbHUxnFqIiaB","com.beeper.exclude_from_timeline":true,"displayname":"Chrissi (WA)","membership":"join"},"time":"2026-03-06T19:22:18.394502146Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:18.395111309Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2362,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937677087459_5?ts=1766572242000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":725.514567,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alte Zeiten","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$F7FPYV3gYua_W7jXHhe36D_SKp2tjTZpZ7nvdY2a1VA"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.402750021Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC0642786672FE960C699769F8ED014F","sender_id":{"user_id":"4917657607100"},"message_ts":"2025-12-24T10:30:42Z","event_id":"$i96UoKb5M36AnSf-oMcEXrd2JhCwkoXphM7nSQgF2t0","part_id":"","time":"2026-03-06T19:22:18.402876436Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","req_id":2369,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/join?user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":504.945402,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:22:18.411788721Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937658617338_1?ts=1771456035000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":757.16929,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"hab nur die in dezember bisher geschrieben","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$IqzXuZM83Af7w-M5nZejYqkwgzGo0Y1s-64Ayi1TQfk"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.41590543Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3ABE470796E0796AFD11","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-18T23:07:15Z","event_id":"$WJHVA9LGlLM4YODypA9pLYksrZ2Wao9g20JaGrrzTRo","part_id":"","time":"2026-03-06T19:22:18.416037641Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2391,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-187501142626535:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-187501142626535%3Amatrix.theocloud.dev","duration":28.112746,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:18.421174466Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:18.42196473Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2392,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917655091547%3Amatrix.theocloud.dev","duration":29.378216,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917655091547","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:18.424695561Z","message":"Request completed"} +{"level":"debug","transaction_id":"1369","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:18.433155128Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1369","time":"2026-03-06T19:22:18.433297955Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":1862,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s2230_957_8_391_441_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":11305.043176,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:18.435908587Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:18.436142","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:18.436152825Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:18.436142","time":"2026-03-06T19:22:18.436324079Z","message":"Finished handling device list changes"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2397,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-88291676282954%3Amatrix.theocloud.dev","duration":25.705844,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-88291676282954","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:18.447859078Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2398,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655091547:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917655091547%3Amatrix.theocloud.dev","duration":24.344549,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:18.449442191Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2388,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670964733:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670964733%3Amatrix.theocloud.dev","duration":216.510634,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Pasi (WA)"},"time":"2026-03-06T19:22:18.468558702Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2400,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88291676282954:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-88291676282954%3Amatrix.theocloud.dev","duration":20.822896,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:18.468989558Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:18.4694978Z","message":""} +{"level":"debug","transaction_id":"1370","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:18.495712374Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1370","time":"2026-03-06T19:22:18.495972118Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2371,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824937929532538_58?ts=1772482337000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":605.388064,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"allein der fakt, dass es um\ngewinnen und verlieren geht sagt eig viel aus darüber, dass wir nicht wirklich eine richtige freundesgruppe sind","format":"org.matrix.custom.html","formatted_body":"allein der fakt, dass es um\u003cbr\u003egewinnen und verlieren geht sagt eig viel aus darüber, dass wir nicht wirklich eine richtige freundesgruppe sind","m.mentions":{"user_ids":["@whatsapp_491736748726:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$mJEt_i0nep-6_U89MaTNvndDPbpOszSOmHtA62Bc-R8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.535114834Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A28C39F7E23D9AEA06B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:12:17Z","event_id":"$ilBu6A4kSMCYVbqDEQL1ofHmeuigwyGRswdQnTlNKLA","part_id":"","time":"2026-03-06T19:22:18.535303617Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2374,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824938021357510_9?ts=1772638950995&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":617.157105,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$jonv8IbJmLZQL0p-VQ8nm2s4lUEJzsogMHkIpikJuS8","key":"👍🏼"}},"time":"2026-03-06T19:22:18.638644662Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE1C48FF440CFF09860","target_part_id":"","reaction_sender_id":{"user_id":"4915903048642"},"reaction_ts":"2026-03-04T15:42:30.995Z","event_id":"$cA1nKa_q6OK5JbtV--Dq1Vq0crttKrVhlz6OE7bCTFw","time":"2026-03-06T19:22:18.638789724Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"1371","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:18.639704028Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1371","time":"2026-03-06T19:22:18.639830373Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938060349716_59?ts=1770364436000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":584.03807,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja ich hab dazwischen Krypto vorort","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.644471667Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE89179FABC17F98555","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:53:56Z","event_id":"$_CcbpMfTIwwIRcILkwu7PK1slAbRDvods0b8bKWZhm0","part_id":"","time":"2026-03-06T19:22:18.644585649Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2401,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655091547:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917655091547%3Amatrix.theocloud.dev","duration":199.395312,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Chrissi (WA)"},"time":"2026-03-06T19:22:18.649037252Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:18.649801884Z","message":""} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2380,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938114138273_60?ts=1771318821000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":567.564109,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Weder als Email noch in der Gruppe","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.681864207Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3635F95D58E4B0F158","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T09:00:21Z","event_id":"$EGKm9dVtuKdc6B1oTIoJofodCN9CG92aI4rNLbGqfgo","part_id":"","time":"2026-03-06T19:22:18.681998025Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2402,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88291676282954:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-88291676282954%3Amatrix.theocloud.dev","duration":216.071746,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491723891168 (WA)"},"time":"2026-03-06T19:22:18.685234233Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:18.685913379Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2394,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-12502750490865%3Amatrix.theocloud.dev","duration":287.475765,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<112404 bytes>","time":"2026-03-06T19:22:18.693375739Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2382,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938149095206_3?ts=1766408791000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":575.029263,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Theo \nwollen wir heute die cremige Gemüse-Hähnchen-Pfanne essen ?","format":"org.matrix.custom.html","formatted_body":"Hey Theo \u003cbr\u003ewollen wir heute die cremige Gemüse-Hähnchen-Pfanne essen ?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.724264852Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A91C221FD8E6CEBAA93","sender_id":{"user_id":"491628947581"},"message_ts":"2025-12-22T13:06:31Z","event_id":"$VXjf6mVJE6aeRWMb9f_CAOlmRaNRUwNtfJA9rb-w8-g","part_id":"","time":"2026-03-06T19:22:18.724410334Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2407,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12502750490865:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12502750490865%3Amatrix.theocloud.dev","duration":44.800913,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:18.738427874Z","message":"Request completed"} +{"level":"debug","transaction_id":"1372","content":{"pdu":4,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:18.754299097Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1372","time":"2026-03-06T19:22:18.754470979Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2383,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938177091735_61?ts=1770397755000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":584.811363,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1600,"mimetype":"image/jpeg","size":112636,"w":984},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/qXJkypPIoNXlIYoZwXfDayoc"},"time":"2026-03-06T19:22:18.762070928Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5D187DCC442260FAA3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T17:09:15Z","event_id":"$2Ejw4MvAsBjGap8VoEaYIcAOvjaRxMkyFZz4EvLU3no","part_id":"","time":"2026-03-06T19:22:18.762184143Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2409,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/PXvBGzNQqBSQGjotpdRfXhqw?user_id=%40whatsapp_lid-12502750490865%3Amatrix.theocloud.dev","duration":28.107577,"status_code":200,"response_length":112404,"response_mime":"image/jpeg","time":"2026-03-06T19:22:18.766658653Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2384,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938182998849_62?ts=1767973672000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":588.037933,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dacht ichs mir","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.771164803Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A82A05DC26E1F9A50EB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-09T15:47:52Z","event_id":"$6SgvER42ij4sRqPv4mzIu6my01giERl7xCHnFQ9DQlo","part_id":"","time":"2026-03-06T19:22:18.771302252Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","req_id":2386,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21fWHCoPezLmCifCgnUg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938198766007_4?ts=1767226065000&user_id=%40whatsapp_4917680834617%3Amatrix.theocloud.dev","duration":597.727841,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Danköö❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.796595468Z","message":"Request completed"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","message_id":"4917680834617@s.whatsapp.net:4917680834617@s.whatsapp.net:ACDDFDDA434D93F1D84A5146B7EC047B","sender_id":{"user_id":"4917680834617"},"message_ts":"2026-01-01T00:07:45Z","event_id":"$6eu6fwh9ljqiwJ40JR7KY3D_wKM7exB2Y1DncLA2LUw","part_id":"","time":"2026-03-06T19:22:18.796699463Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:18.797345573Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","time":"2026-03-06T19:22:18.797404101Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"error","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:18.797577589Z","message":"Failed to get membership"} +{"level":"error","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.name","time":"2026-03-06T19:22:18.797693527Z","message":"Failed to set room metadata"} +{"level":"error","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:18.797804227Z","message":"Failed to get membership"} +{"level":"error","portal_id":"4917680834617@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917680834617@s.whatsapp.net","latest_message_ts":"2026-01-01T00:07:45Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.avatar","time":"2026-03-06T19:22:18.797884336Z","message":"Failed to set room metadata"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2411,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12502750490865:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12502750490865%3Amatrix.theocloud.dev","duration":61.255947,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PXvBGzNQqBSQGjotpdRfXhqw"},"time":"2026-03-06T19:22:18.828190057Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","req_id":2368,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev?ts=1772824937897&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":930.479166,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:18.828155206Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:18.829303272Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:18.830791191Z","message":"Added portal to space"} +{"level":"debug","transaction_id":"1373","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:18.842724081Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1373","time":"2026-03-06T19:22:18.842870889Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2414,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-210453582090448%3Amatrix.theocloud.dev","duration":24.295589,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-210453582090448","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:18.853912174Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2376,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-138817721917594:matrix.theocloud.dev?user_id=%40whatsapp_lid-138817721917594%3Amatrix.theocloud.dev","duration":809.567358,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MsWeuvpskahBdUZmTLSdrYCL","com.beeper.exclude_from_timeline":true,"displayname":"Paula (WA)","membership":"join"},"time":"2026-03-06T19:22:18.868180937Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:18.869351772Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:18.87118967Z","message":""} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2378,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251745280225436:matrix.theocloud.dev?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":813.180435,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LXWwZVePUhXHkbHUxnFqIiaB","com.beeper.exclude_from_timeline":true,"displayname":"Chrissi (WA)","membership":"join"},"time":"2026-03-06T19:22:18.883222993Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2415,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-210453582090448:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-210453582090448%3Amatrix.theocloud.dev","duration":40.616666,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:18.895177185Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2389,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938314806111_63?ts=1765796486000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":581.673981,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sicher nicht 12:30 Uhr doch?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.896585064Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3CDF8CE60791512940","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T11:01:26Z","event_id":"$6-3b_IhObmDCUtJN-qa10VilcpZ67MJoHYVpEGbesM0","part_id":"","time":"2026-03-06T19:22:18.896717136Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2416,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915208878293%3Amatrix.theocloud.dev","duration":38.291828,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915208878293","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:18.908015999Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2390,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938331481077_4?ts=1765225084000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":585.221546,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie fandest dus","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.916859908Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:AC4B3592A859BDB02E859F55B6CFDD62","sender_id":{"user_id":"4915735701057"},"message_ts":"2025-12-08T20:18:04Z","event_id":"$bROffb3t2Q67_qbHToa9VjpPxDGo99_BlQv7xTp5B0c","part_id":"","time":"2026-03-06T19:22:18.917029834Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2421,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915208878293:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915208878293%3Amatrix.theocloud.dev","duration":23.557706,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:18.93187703Z","message":"Request completed"} +{"level":"debug","transaction_id":"1374","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:18.936832894Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1374","time":"2026-03-06T19:22:18.936938635Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2393,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938403634154_6?ts=1766572245000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":572.391602,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Crazy guy","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.976176476Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACFFD820BA97E17B26C3946BD3E32BBA","sender_id":{"user_id":"4917657607100"},"message_ts":"2025-12-24T10:30:45Z","event_id":"$-1n29kgr4K0tscaCvN6Crke8baLnJnU171lw3rY_4vg","part_id":"","time":"2026-03-06T19:22:18.976276769Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:18.991989101Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2396,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938417215739_2?ts=1771520110000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":578.356685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"wie läufts bei dir?","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$IqzXuZM83Af7w-M5nZejYqkwgzGo0Y1s-64Ayi1TQfk"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:18.995709595Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A681470A870FAC3CD4D","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-19T16:55:10Z","event_id":"$AF3yOzanFFAhvoePxEIcQ_FIjUeuFTYVtXDNoikPW08","part_id":"","time":"2026-03-06T19:22:18.99588476Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1375","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:19.019293283Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1375","time":"2026-03-06T19:22:19.019741251Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2419,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-210453582090448:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-210453582090448%3Amatrix.theocloud.dev","duration":193.037925,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Emre-Can (WA)"},"time":"2026-03-06T19:22:19.088412973Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:19.08937044Z","message":""} +{"level":"debug","transaction_id":"1376","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:19.102092268Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1376","time":"2026-03-06T19:22:19.10220199Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2423,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915208878293:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915208878293%3Amatrix.theocloud.dev","duration":191.625786,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Paula (WA)"},"time":"2026-03-06T19:22:19.123679586Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:19.124514271Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2403,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938536232309_64?ts=1772482343000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":609.419217,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ich mein empathie???","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.145792956Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A76793CBEAE074914CC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:12:23Z","event_id":"$Zn9Ow8A-tBi76vWWbINu6f4fkICa_YA2cyoy2sykenk","part_id":"","time":"2026-03-06T19:22:19.145962813Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2417,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917670964733%3Amatrix.theocloud.dev","duration":272.542523,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<27667 bytes>","time":"2026-03-06T19:22:19.155378101Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2428,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670964733:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917670964733%3Amatrix.theocloud.dev","duration":50.586153,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:19.206322753Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","req_id":2395,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/invite?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":801.778834,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@whatsapp_4915903048642:matrix.theocloud.dev"},"time":"2026-03-06T19:22:19.213792447Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2429,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/uQCGjYgeTrxWFcGfiLGAKshH?user_id=%40whatsapp_4917670964733%3Amatrix.theocloud.dev","duration":31.511896,"status_code":200,"response_length":27667,"response_mime":"image/jpeg","time":"2026-03-06T19:22:19.237965114Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2404,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938639510286_65?ts=1772647172000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":607.955604,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"↷ Forwarded\n\nQuelle: Leckerschmecker https://share.google/ypju5GJ3kTQSJs8QY","format":"org.matrix.custom.html","formatted_body":"\u003cp data-mx-forwarded-notice\u003e\u003cem\u003e↷ Forwarded\u003c/em\u003e\u003c/p\u003eQuelle: Leckerschmecker https://share.google/ypju5GJ3kTQSJs8QY","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.247634419Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7025E033B78F72F086","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T17:59:32Z","event_id":"$SNq8E9_wgJg9fTo9G3vChVDYctDO_f3kWzPEWqU4lYM","part_id":"","time":"2026-03-06T19:22:19.24781992Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2405,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938645322345_66?ts=1770364439000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":606.336242,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bei Grohmann","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.251818526Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABB8F75B0FFF37EF549","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:53:59Z","event_id":"$zZrbOfqEjIh524aZDc80I1jU8oIkfVV0Q9kpv-gOaAk","part_id":"","time":"2026-03-06T19:22:19.251986147Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1377","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:19.269240525Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1377","time":"2026-03-06T19:22:19.269359047Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2308,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2860.825313,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_lid-195790463058158:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363173737697025@g.us","displayname":"HWR Informatik 2️⃣0️⃣2️⃣3️⃣","avatar_url":"mxc://matrix.theocloud.dev/SwzsOYDhZvymlYQsWJLYqcii"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363173737697025@g.us","displayname":"HWR Informatik 2️⃣0️⃣2️⃣3️⃣","avatar_url":"mxc://matrix.theocloud.dev/SwzsOYDhZvymlYQsWJLYqcii"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2},"m.room.avatar":{"level":2},"m.room.name":{"level":2},"m.room.topic":{"level":2}},"member_actions":{"invite":2,"kick":2,"leave":2},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":""}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"HWR Informatik 2️⃣0️⃣2️⃣3️⃣"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/SwzsOYDhZvymlYQsWJLYqcii"}}],"preset":"private_chat","power_level_content_override":{"users":{"@whatsapp_lid-273069826400467:matrix.theocloud.dev":50,"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0},"state_default":99,"ban":99},"com.beeper.local_room_id":"!120363173737697025@g.us.:matrix.theocloud.dev"},"time":"2026-03-06T19:22:19.2864296Z","message":"Request completed"} +{"level":"info","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","room_id":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","time":"2026-03-06T19:22:19.287069285Z","message":"Matrix room created"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2406,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938682733952_4?ts=1771318954000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":631.903589,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich glaube noch wie im 1. Semester oder?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.314763885Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A6BDC5152DC0EC60DD4","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:02:34Z","event_id":"$koKZ2R6jEcgFUPc4sTCMbuyn97uge2Y3lk0BsRo3Crw","part_id":"","time":"2026-03-06T19:22:19.314964542Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2431,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670964733:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917670964733%3Amatrix.theocloud.dev","duration":83.249956,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uQCGjYgeTrxWFcGfiLGAKshH"},"time":"2026-03-06T19:22:19.321452743Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"59463872561404@lid","alternate_jid":"4917670964733@s.whatsapp.net","time":"2026-03-06T19:22:19.321860133Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2413,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":526.426141,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<420777 bytes>","time":"2026-03-06T19:22:19.328314461Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:19.332438434Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2408,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938725133270_67?ts=1766409950000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":624.111084,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sehr sehr gerne :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.34937461Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7BE4416EE5666BB09D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-22T13:25:50Z","event_id":"$ly7bYS_YCpt0LZmDDomxTRxu-6-ZgPLNX5rsJAJsyZs","part_id":"","time":"2026-03-06T19:22:19.349518555Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2434,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":75.315811,"status_code":200,"response_length":390,"response_mime":"application/json","time":"2026-03-06T19:22:19.363440132Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2436,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-62921489018884%3Amatrix.theocloud.dev","duration":43.000311,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-62921489018884","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:19.365321332Z","message":"Request completed"} +{"level":"debug","transaction_id":"1378","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:19.382692416Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1378","time":"2026-03-06T19:22:19.382995322Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2410,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938762867269_5?ts=1770397814000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":625.233379,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":200480},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"TDWfb7P/LvCzq5Tca1wDInqLKTbfexN1NoT5l3eqQUI=","length":200480,"type":"WhatsApp Image Keys","sha256":"inKQjvG3NhpGyWCBal2FHBw2/Mg90UUDbxi60d5uuds=","enc_sha256":"Pz87WjRMn0lDH/MDE1IuKWcr0Ne8ZJsuZECucXXp3IU=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:19.388307381Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A62F15F465D241E8D95","sender_id":{"user_id":"4915234825973"},"message_ts":"2026-02-06T17:10:14Z","event_id":"$YqY_70SW54ez145oVHJc5RBAB-Sygh3qE9aiTW4OTEs","part_id":"","time":"2026-03-06T19:22:19.388491624Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2412,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938772075964_68?ts=1767973680000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":619.137131,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber geil würd mich gleich losmachen ins gym","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.391323237Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4CBC7B04FE321AB6A5","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-09T15:48:00Z","event_id":"$GlBnjeIk1Mwv8HEs91_El9znWu3ua7LieN75FITyu4s","part_id":"","time":"2026-03-06T19:22:19.391451537Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2440,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-62921489018884:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-62921489018884%3Amatrix.theocloud.dev","duration":35.398405,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:19.401065526Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2439,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.47547,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:19.438321316Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:19.454592524Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2426,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-88291676282954%3Amatrix.theocloud.dev","duration":353.27285,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<16966 bytes>","time":"2026-03-06T19:22:19.454960872Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:19.459697571Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2445,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88291676282954:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-88291676282954%3Amatrix.theocloud.dev","duration":19.590948,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:19.474889648Z","message":"Request completed"} +{"level":"debug","transaction_id":"1379","content":{"pdu":16,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:19.478273223Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1379","time":"2026-03-06T19:22:19.478981493Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2447,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LfSqZpmxtuTvQRBlbMXorNkU?user_id=%40whatsapp_lid-88291676282954%3Amatrix.theocloud.dev","duration":27.378076,"status_code":200,"response_length":16966,"response_mime":"image/jpeg","time":"2026-03-06T19:22:19.502451478Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2444,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":65.264121,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:19.50423434Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2420,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938897553776_69?ts=1765796551000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":625.88801,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dass wir auf der sicheren Seite sind","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.523568898Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3710BAE32859711788","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T11:02:31Z","event_id":"$3fhY0tev39cQWVTuhhTTfIpkLIpgFcMJZD49ZKAdbcw","part_id":"","time":"2026-03-06T19:22:19.523732888Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2422,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938918051067_70?ts=1765225089000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":619.374875,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"200/10","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.537579524Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1E6E4D8A5AEF4BC1A9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-08T20:18:09Z","event_id":"$uv2nPkxRZRNFIYI6Rd5N02Gwqioj1NGq0Udy8elME2k","part_id":"","time":"2026-03-06T19:22:19.537747844Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2449,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88291676282954:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-88291676282954%3Amatrix.theocloud.dev","duration":63.891442,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LfSqZpmxtuTvQRBlbMXorNkU"},"time":"2026-03-06T19:22:19.567417442Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:19.568478834Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2454,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-132040297042065%3Amatrix.theocloud.dev","duration":34.507218,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-132040297042065","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:19.603266749Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2424,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938976902276_71?ts=1766572253000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":628.913923,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Isso","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.605932277Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABED1CD0D1A918D448E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T10:30:53Z","event_id":"$2gn0A45FaEzsQmfl62a6RAAeupUBesiJXEKoQ5FvRDI","part_id":"","time":"2026-03-06T19:22:19.606027193Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2437,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917655091547%3Amatrix.theocloud.dev","duration":270.725577,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15127 bytes>","time":"2026-03-06T19:22:19.611865093Z","message":"Request completed"} +{"level":"debug","transaction_id":"1380","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:19.626251261Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1380","time":"2026-03-06T19:22:19.626355256Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2425,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824938996755063_72?ts=1771530474000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":633.862593,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"kann mich nicht beschweren, hab wieder Uni, letztes Theoriesemester und ab Mai Bachlorarbeit","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.630749378Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A96DF83EA88F769D272","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-19T19:47:54Z","event_id":"$gTCaBnJljphT8f8APpGymG8fUeP573HOoHMrWHcY-wE","part_id":"","time":"2026-03-06T19:22:19.63085917Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2443,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-62921489018884:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-62921489018884%3Amatrix.theocloud.dev","duration":243.562896,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nate Jo (WA)"},"time":"2026-03-06T19:22:19.644797161Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:19.645382997Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2455,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-132040297042065:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-132040297042065%3Amatrix.theocloud.dev","duration":50.186515,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:19.653795351Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2457,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655091547:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917655091547%3Amatrix.theocloud.dev","duration":44.738613,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:19.656906193Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2460,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/aaoWWQlnJSElqWfSZvWEeAYv?user_id=%40whatsapp_4917655091547%3Amatrix.theocloud.dev","duration":33.040881,"status_code":200,"response_length":15127,"response_mime":"image/jpeg","time":"2026-03-06T19:22:19.690067273Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2452,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":167.769922,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<3022718 bytes>","time":"2026-03-06T19:22:19.696210873Z","message":"Request completed"} +{"level":"debug","transaction_id":"1381","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:19.707661713Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1381","time":"2026-03-06T19:22:19.707762355Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2446,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915208878293%3Amatrix.theocloud.dev","duration":254.259928,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40959 bytes>","time":"2026-03-06T19:22:19.719025529Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2461,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655091547:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917655091547%3Amatrix.theocloud.dev","duration":45.410426,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/aaoWWQlnJSElqWfSZvWEeAYv"},"time":"2026-03-06T19:22:19.735730388Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2418,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-27956059590853:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":865.152186,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AvlyffuDHEMFxceTihjFMwRW","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:19.749457664Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2427,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824939146816494_73?ts=1772482350000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":608.341273,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":134104,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/vKZuByNVBYOKmxoPlojSwdDB"},"time":"2026-03-06T19:22:19.755391458Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACEC95075B844F191BD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:12:30Z","event_id":"$Nj_qUGfby_rs1OULyFDpbINXx8rX1HgotYMDXXHePgM","part_id":"","time":"2026-03-06T19:22:19.755501739Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2462,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915208878293:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915208878293%3Amatrix.theocloud.dev","duration":36.453162,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:19.755972056Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2448,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-210453582090448%3Amatrix.theocloud.dev","duration":289.125577,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<66244 bytes>","time":"2026-03-06T19:22:19.766072287Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2465,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/iqIgLEpOBbtvBLfijnHFyWlg?user_id=%40whatsapp_4915208878293%3Amatrix.theocloud.dev","duration":27.720442,"status_code":200,"response_length":40959,"response_mime":"image/jpeg","time":"2026-03-06T19:22:19.783906705Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2467,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-210453582090448:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-210453582090448%3Amatrix.theocloud.dev","duration":25.721838,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:19.79210171Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:19.801962033Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2469,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VUSVYKoSoxjeAiwZKmjdoVxh?user_id=%40whatsapp_lid-210453582090448%3Amatrix.theocloud.dev","duration":30.701448,"status_code":200,"response_length":66244,"response_mime":"image/jpeg","time":"2026-03-06T19:22:19.822953946Z","message":"Request completed"} +{"level":"debug","transaction_id":"1382","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:19.832294643Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1382","time":"2026-03-06T19:22:19.83245521Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2468,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915208878293:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915208878293%3Amatrix.theocloud.dev","duration":56.693015,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iqIgLEpOBbtvBLfijnHFyWlg"},"time":"2026-03-06T19:22:19.840889565Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2459,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-132040297042065:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-132040297042065%3Amatrix.theocloud.dev","duration":194.162804,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917674993720 (WA)"},"time":"2026-03-06T19:22:19.848129618Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:19.84871287Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:22:19.860738371Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2432,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939248730313_74?ts=1772651846000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":614.106258,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Und was hat dein Bruder jetzt letztendlich gekocht?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.862971017Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A382CECEC84AFD0F050","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T19:17:26Z","event_id":"$6hlBRGEo0O0qrqxVmmHoctE2tJ64XgLryVoMlg6PX-I","part_id":"","time":"2026-03-06T19:22:19.863103507Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2433,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939252886693_75?ts=1770364444000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":616.253487,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"der sicher nicht online macht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.869280911Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA9BB8FFA461D260D28","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:54:04Z","event_id":"$L2uQ_EgAU-IQg5f_dtuJiJx8YVprygPGbJo4_EiZeTo","part_id":"","time":"2026-03-06T19:22:19.86947626Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2471,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-210453582090448:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-210453582090448%3Amatrix.theocloud.dev","duration":64.40101,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VUSVYKoSoxjeAiwZKmjdoVxh"},"time":"2026-03-06T19:22:19.887802506Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:19.888926895Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2435,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939315813614_76?ts=1771318969000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":594.835256,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ja war in der HWR Gruppe","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.910775144Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A41DB2349F247D1BF59","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T09:02:49Z","event_id":"$S4eY2cT1ytCVV8y-ssXSR1zg1y5RtuVrFTHjVarlhJs","part_id":"","time":"2026-03-06T19:22:19.910889825Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2475,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-166700683100354%3Amatrix.theocloud.dev","duration":35.842882,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-166700683100354","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:19.925052777Z","message":"Request completed"} +{"level":"debug","transaction_id":"1383","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:19.936716077Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1383","time":"2026-03-06T19:22:19.936964855Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2438,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939350318807_77?ts=1766577322000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":589.769042,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"https://die-frau-am-grill.de/gnocchi-gulasch-topf/","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"Gnocchi Gulasch Topf | Herbstlicher Onepot","og:description":"Der Gnocchi Gulasch Topf ist ein Schmorgericht für die Familie. Dazu Hausmannskost für den Winter. Das Onepot Rezept ist einfach zu kochen.","matched_url":"https://die-frau-am-grill.de/gnocchi-gulasch-topf/"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.940291229Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A919AF1A18E88961DEE","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T11:55:22Z","event_id":"$Y9EFC0dbR-aNQdcudmX0KMh7npW5HBTQ2QMaViLBlPw","part_id":"","time":"2026-03-06T19:22:19.940563335Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2477,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-166700683100354:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-166700683100354%3Amatrix.theocloud.dev","duration":25.734059,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:19.951140029Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2441,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939389486596_78?ts=1770400773000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":585.741102,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"https://g.co/gemini/share/4d224ca94847","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.975406006Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:4A3E4249FB1969117034","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T17:59:33Z","event_id":"$Bd4GQtQpx8O4u7msw5DF8EL056xiEFdtgEFj83kTtMM","part_id":"","time":"2026-03-06T19:22:19.975574954Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2442,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939392207579_79?ts=1767973683000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":586.434984,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"du so?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:19.978764857Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A49883055FDBEB43865","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-09T15:48:03Z","event_id":"$4QSKOPyL_5iPaZJ2pNn9DqC1-Vcx9JKBB-w-J5kOhas","part_id":"","time":"2026-03-06T19:22:19.978889595Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.008224021Z","message":""} +{"level":"debug","transaction_id":"1384","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:20.041664749Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1384","time":"2026-03-06T19:22:20.041781805Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2482,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.122615,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<172151 bytes>","time":"2026-03-06T19:22:20.052683405Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2470,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-62921489018884%3Amatrix.theocloud.dev","duration":278.905567,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41748 bytes>","time":"2026-03-06T19:22:20.094817672Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","req_id":2430,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/join?user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":891.772056,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:22:20.106017778Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2451,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939524646284_3?ts=1765797304000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":585.787687,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":13706},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"wEdHMYgSMeZpEc2GxjRGRpjm8Qufoc6BnbXGpt28jKg=","length":13706,"type":"WhatsApp Image Keys","sha256":"e+pVNtHfD9uFtSMZQMwlomICCgYd+QDleBj0VKjuNPI=","enc_sha256":"96lX6jcBsytrbtEYPF00kwiI7pJthe/XBSs/OCeZz9w=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:20.110663542Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A544C629AEBA9B6C72E","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T11:15:04Z","event_id":"$KupP-n5dlQVVdlnGQbTusKEDw88Gb0R98A922jSF77U","part_id":"","time":"2026-03-06T19:22:20.110773404Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1385","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:20.123721171Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1385","time":"2026-03-06T19:22:20.123811757Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2453,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939538655444_80?ts=1765225095000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":588.085984,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Musste gerade heulen am Ende","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.126905068Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF77B2454CB73EB2544","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-08T20:18:15Z","event_id":"$tMDkJdud8sg1X7-gX_mRwDp6LM53dc7DyC0My7udkSI","part_id":"","time":"2026-03-06T19:22:20.127111033Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2484,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-62921489018884:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-62921489018884%3Amatrix.theocloud.dev","duration":42.547873,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:20.137731099Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2488,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KaEibHlhaiLVpwVMsqKOOYvc?user_id=%40whatsapp_lid-62921489018884%3Amatrix.theocloud.dev","duration":31.66478,"status_code":200,"response_length":41748,"response_mime":"image/jpeg","time":"2026-03-06T19:22:20.169502808Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2479,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-166700683100354:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-166700683100354%3Amatrix.theocloud.dev","duration":233.643346,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"B (WA)"},"time":"2026-03-06T19:22:20.184967619Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.185902527Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:20.198944581Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2456,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939606600388_81?ts=1766572261000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":593.605195,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"als wir noch 2h+ da waren man","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.200315095Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A39C0CD70DFE0380424","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T10:31:01Z","event_id":"$GbJpHFYRLjpGsCsX4vHYYQ8L8MmpvMrFyYtTjoinSVM","part_id":"","time":"2026-03-06T19:22:20.200473078Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2458,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939631711594_3?ts=1771530872000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":591.03137,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"krank wie die zeit vergeht","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$gTCaBnJljphT8f8APpGymG8fUeP573HOoHMrWHcY-wE"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.222867842Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A14A90A96A576C1E457","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-19T19:54:32Z","event_id":"$govuOa1s54s4Pl-Q0KKW1aSepeR3Lp7zcv1cAYE3nJM","part_id":"","time":"2026-03-06T19:22:20.222982733Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1386","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:20.244746193Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1386","time":"2026-03-06T19:22:20.244906621Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2489,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-62921489018884:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-62921489018884%3Amatrix.theocloud.dev","duration":86.617398,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KaEibHlhaiLVpwVMsqKOOYvc"},"time":"2026-03-06T19:22:20.256403626Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2492,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491745380836%3Amatrix.theocloud.dev","duration":49.482924,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491745380836","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:20.306929085Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2493,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491745380836:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491745380836%3Amatrix.theocloud.dev","duration":27.422076,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:20.334728868Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2483,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-132040297042065%3Amatrix.theocloud.dev","duration":317.006167,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64397 bytes>","time":"2026-03-06T19:22:20.336786629Z","message":"Request completed"} +{"level":"debug","transaction_id":"1387","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:20.352584308Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1387","time":"2026-03-06T19:22:20.35284859Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2495,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-132040297042065:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-132040297042065%3Amatrix.theocloud.dev","duration":28.254316,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:20.36540608Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2466,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939756477085_82?ts=1772482387000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":635.537408,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"jo","m.mentions":{"user_ids":["@whatsapp_491736748726:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$G--H1fHRmlO4FUwpBM-NgrxZQ6BfXD2EECNyWCSJ3gU"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.392132108Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE829CF2CFA5CDEE3C0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:13:07Z","event_id":"$aDaUKb9Hv7A3zrwIzZv0OZzPlNlHIPuMw-XxSMmDqFg","part_id":"","time":"2026-03-06T19:22:20.39225978Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2450,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-46858126766286:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":892.158492,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CBaHFbcIsutovHAvcmuIhbcC","com.beeper.exclude_from_timeline":true,"displayname":"Julius (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:20.398766978Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2496,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/CGMeOSInUcXdBaRwfxBsCOZP?user_id=%40whatsapp_lid-132040297042065%3Amatrix.theocloud.dev","duration":40.443178,"status_code":200,"response_length":64397,"response_mime":"image/jpeg","time":"2026-03-06T19:22:20.406005564Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2499,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-132040297042065:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-132040297042065%3Amatrix.theocloud.dev","duration":51.889058,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CGMeOSInUcXdBaRwfxBsCOZP"},"time":"2026-03-06T19:22:20.458138163Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:20.458987444Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1388","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:20.472640827Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1388","time":"2026-03-06T19:22:20.472753832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939864049171_83?ts=1772652550000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":630.366222,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sahst heute so gut aus Maus, lieb dich ganz doll ❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.494552353Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE3EF9CE2880A2DAFA2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T19:29:10Z","event_id":"$1Z01DcoqukQmZ7pKFDHrneURcrymnzHUrbxfMpgaP9o","part_id":"","time":"2026-03-06T19:22:20.494689174Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2500,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-86861754155032%3Amatrix.theocloud.dev","duration":36.885416,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-86861754155032","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:20.496122616Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2474,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939870349916_6?ts=1770364446000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":630.862661,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ah ok","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.501371467Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3EB06E3B2E47DA98E84753","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-06T07:54:06Z","event_id":"$MyImpjsvRk2tKgcLdiJIh7glFYXqxm4-umOlGhqtYnA","part_id":"","time":"2026-03-06T19:22:20.501501932Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2502,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-86861754155032:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-86861754155032%3Amatrix.theocloud.dev","duration":29.923195,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:20.526270004Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2476,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939911493332_5?ts=1771318993000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":619.886957,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich hab das grad an dich weitergeleitet","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.531489033Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A0711FEA52552186AC5","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:03:13Z","event_id":"$fkxZlTeGJWKjdMucBSUBdL11QZ5_sNHJ6AA7UI1sXRw","part_id":"","time":"2026-03-06T19:22:20.531609232Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2494,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491745380836:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491745380836%3Amatrix.theocloud.dev","duration":208.076,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nate Jo (WA)"},"time":"2026-03-06T19:22:20.543032902Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.543661343Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.549496589Z","message":""} +{"level":"debug","transaction_id":"1389","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:20.567027682Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1389","time":"2026-03-06T19:22:20.567350283Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2478,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939941471842_84?ts=1767285710000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":627.192871,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"So Mama es ist so wie ich es mir gedacht hab und wie ich meine Ana kenne will sie heute lieber allein entspannen nach den Tagen, deswegen komm ich jetzt nach Hause direkt :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.568776251Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA4277A4F819136A184","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-01T16:41:50Z","event_id":"$0DQ2nwVQeWO1QQmcxvtKfgppV8NqGuVjYy3Bu86XNHc","part_id":"","time":"2026-03-06T19:22:20.568899243Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2506,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-166700683100354:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-166700683100354%3Amatrix.theocloud.dev","duration":34.556946,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:20.579413639Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:20.58009474Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2464,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-27956059590853:matrix.theocloud.dev?user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":840.800164,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AvlyffuDHEMFxceTihjFMwRW","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","membership":"join"},"time":"2026-03-06T19:22:20.591038944Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","req_id":2480,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939976455245_6?ts=1770401895000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":624.852389,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":117278},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"2aeYud70S1rdipHhOckLTrALQRyUs7rBsBfXoKMBKqw=","length":117278,"type":"WhatsApp Image Keys","sha256":"KQ6CLX71uKt/lpUPuqoW6VrZnochTkyY7/5pe6aBPxg=","enc_sha256":"Mzi7lxSLX3C07CMgJ06KiwDiuK4fvVGpCzwy91JIRbs=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:20.601524564Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A3D7AB0CA57C726BAE2","sender_id":{"user_id":"4915234825973"},"message_ts":"2026-02-06T18:18:15Z","event_id":"$meqRkzP4nPe9noiCI7hjQk3cfVWfEaOtJwLMVaqnAc0","part_id":"","time":"2026-03-06T19:22:20.601628629Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:20.60235855Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","time":"2026-03-06T19:22:20.602420989Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2481,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824939979797055_3?ts=1767976886000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":622.501919,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ah Sorry kam was dazwischen geh jetzt erst los","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.602425878Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3DA496BE69F2367A7D","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-09T16:41:26Z","event_id":"$gAb8jecKI98jjD4ABjxQRoniyofb57SJiZ5K0-jJM10","part_id":"","time":"2026-03-06T19:22:20.602665925Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.603029035Z","message":"706fbe63cb4b17537d25d5316370b430c94d8a28085ef535dfd99576f86465974331946e2cde2a7e1710068dc0a1c9b1f44f"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A3D7AB0CA57C726BAE2","time":"2026-03-06T19:22:20.603172631Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.603764473Z","message":"4f3df2b964c8d81a607a7d415089703be1564898ee95e21fd6ba0551e4c5eb576e5b891842a511eaf87dea754e2f3aa71db2"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A62F15F465D241E8D95","time":"2026-03-06T19:22:20.603879015Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.604475188Z","message":"1402852dae18747cc459921464effec75b79179690b7e7c0fa187d71639a94c4f3c6d760ec4b6308ec4ec9c30e4d63c87c46"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3AF1C258CF4F210C7817","time":"2026-03-06T19:22:20.604596713Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.60549684Z","message":"952c5aa3938838282042b9949c9078fb346c7158ad8934a0fb0de2f6eb0d7480e2767d94861becad4b239a42dfe49ed7abfc"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADC6BF256EED2391E6F","time":"2026-03-06T19:22:20.60561152Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.606070733Z","message":"0f3ac70e8d68e781608492c3d5c2e4602c589b2383a65b8a45753ed9fe379f31f35c5e19d1c2c5efcc869a6bc2fd481e3287"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915234825973@s.whatsapp.net","latest_message_ts":"2026-02-06T18:18:15Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A079456E92AD41E4263","time":"2026-03-06T19:22:20.606163902Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2509,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-13473413128380%3Amatrix.theocloud.dev","duration":28.985354,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-13473413128380","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:20.609292065Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2463,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266657507356684:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":895.6828,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BlaAgKqAVGSAjbgkWHdoWAAF","com.beeper.exclude_from_timeline":true,"displayname":"Maja (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:20.632516275Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2512,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-13473413128380:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-13473413128380%3Amatrix.theocloud.dev","duration":30.415513,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:20.640005874Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.647218898Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.64797061Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.648615533Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.650189916Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.650871506Z","message":""} +{"level":"debug","transaction_id":"1390","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:20.653254522Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1390","time":"2026-03-06T19:22:20.653665264Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.713254985Z","message":""} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2472,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-187849085329414:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":877.32715,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vodzizjGAdnOXIEIFkvNVJXl","com.beeper.exclude_from_timeline":true,"displayname":"Vitali (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:20.719367505Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2504,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-86861754155032:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-86861754155032%3Amatrix.theocloud.dev","duration":213.450428,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sero (WA)"},"time":"2026-03-06T19:22:20.739935965Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.740888892Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2486,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940111303087_4?ts=1765797309000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":630.61472,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dann 12:30!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.742061752Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A4BA0189E44E06FAFDA","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T11:15:09Z","event_id":"$DGqsR1Ok9slrLl3bxSyu_LgzXshdHdABDNU-5M6iSpI","part_id":"","time":"2026-03-06T19:22:20.74218216Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2487,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940128095179_85?ts=1765225111000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":620.459314,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":322,"h":450,"duration":5000,"size":54488},"filename":"video.mp4"},"extra":{"info":{"fi.mau.autoplay":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true}},"whatsapp_media":{"key":"35iJudL7WYurEC+h74utd14ZXyyf4KCgM0sxUwyb9Oc=","length":54488,"type":"WhatsApp Video Keys","sha256":"6kWLZql49e+qIUqZgR7Ixf8LoHSlFfxsFHpIJmi49Bg=","enc_sha256":"FEsF9Nx4MWHOmKRVFVCc15pU6KJhUJQvfRWOiDwRTXo=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:20.74893213Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A72433F0AB0CAA2D892","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-08T20:18:31Z","event_id":"$49NuLeUIt2Li5z0zohnOI51fSdBfNStlGkBb_YFBrAU","part_id":"","time":"2026-03-06T19:22:20.749148152Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1391","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:20.751562947Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1391","time":"2026-03-06T19:22:20.753356355Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2490,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940201415878_86?ts=1766572299000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":639.569957,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ich frag mich auch, ob das jemals so effektiv war so lang da zu sein haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.841168683Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1F62373766CCB6AE56","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T10:31:39Z","event_id":"$dbRGuUC2_CXM37AL-MEHHUTtE0TFMim9cUkF5SPLxUU","part_id":"","time":"2026-03-06T19:22:20.841367663Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","req_id":2485,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940106376977_10?ts=1725099902000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":737.859944,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":102754},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"W5vrxA5I/7Z04jbVTwghU0YfWIkrcKGUVdcM3SL/fc0=","length":102754,"type":"WhatsApp Image Keys","sha256":"B2/oT7VQaVFIF1rY769F+ULN1YIBUmcV6aI7R1PQ3d8=","enc_sha256":"4Xh20LJc1uQz8kQUhMgNt5zk73ZeDuQ7HcQS7UB8KRw=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:20.844463629Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","message_id":"120363326854732201@g.us:4915903048642@s.whatsapp.net:3A589B1209935D05E657","sender_id":{"user_id":"4915903048642"},"message_ts":"2024-08-31T10:25:02Z","event_id":"$C1JOrsYQdAf8P_qwjkCZQkJBbEVtXWmz08AKtufJje0","part_id":"","time":"2026-03-06T19:22:20.844624405Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:20.845474385Z","message":"Backfill finished"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","time":"2026-03-06T19:22:20.845573561Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.846369623Z","message":"c7e4f2d6fbf49cd90108242e85a01db8b4161445ecd2d8f713d60d5ab4a1ab3a3bdd23af234333c842b45efa726e77d1cddd"} +{"level":"debug","portal_id":"120363326854732201@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363326854732201@g.us","latest_message_ts":"2024-08-31T10:25:02Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363326854732201@g.us:4915903048642@s.whatsapp.net:3A589B1209935D05E657","time":"2026-03-06T19:22:20.846579429Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2491,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940223633033_4?ts=1771539914000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":633.114582,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"hast du für die bachelorarbeit schon neh themenwahl gemacht?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.856890653Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A7601FA0603162ED0FC","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-19T22:25:14Z","event_id":"$ymgV0RgbH6UMOs50XW9MSI141_f1evlY_XfFZXjRL8E","part_id":"","time":"2026-03-06T19:22:20.857059601Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1392","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:20.872347082Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1392","time":"2026-03-06T19:22:20.872521967Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2514,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-13473413128380:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-13473413128380%3Amatrix.theocloud.dev","duration":244.342474,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"TJ (WA)"},"time":"2026-03-06T19:22:20.884619266Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:20.885189039Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.890177658Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:20.915775386Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2521,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-86861754155032:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-86861754155032%3Amatrix.theocloud.dev","duration":21.271352,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:20.93742668Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:20.938143191Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2497,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940393622960_5?ts=1772482388000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":571.065718,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja.","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$ilBu6A4kSMCYVbqDEQL1ofHmeuigwyGRswdQnTlNKLA"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:20.964831715Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A627E4CFFB8287FB0F9","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:13:08Z","event_id":"$awARAZ-nfAvNnQtHKM-oT6_Cgvg-UOtGTvIMMr6qHB8","part_id":"","time":"2026-03-06T19:22:20.965000174Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2522,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-129064018960516%3Amatrix.theocloud.dev","duration":33.896379,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-129064018960516","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:20.972240366Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2524,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-129064018960516:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-129064018960516%3Amatrix.theocloud.dev","duration":29.965171,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:21.00252716Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2516,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491745380836%3Amatrix.theocloud.dev","duration":290.702893,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41748 bytes>","time":"2026-03-06T19:22:21.014708479Z","message":"Request completed"} +{"level":"debug","transaction_id":"1393","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.035486327Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1393","time":"2026-03-06T19:22:21.035605058Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2526,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491745380836:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491745380836%3Amatrix.theocloud.dev","duration":21.084594,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:21.036147453Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2501,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940496085669_11?ts=1772654221000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":562.563616,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Reis und Hähnchen 😂 aber habs aufgepeppt mit gemüse und mozzi","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$6hlBRGEo0O0qrqxVmmHoctE2tJ64XgLryVoMlg6PX-I"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.05880636Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A34A12CD0C57CE99A71","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T19:57:01Z","event_id":"$gVBpw-HaIEYrwE0YiYb8kjgE4dqdzUsy6ILys7OBK6k","part_id":"","time":"2026-03-06T19:22:21.058957219Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2507,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":509.262627,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<297262 bytes>","time":"2026-03-06T19:22:21.062246857Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.063425305Z","message":""} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2503,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940502276971_7?ts=1770364451000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":561.268741,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"n","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.063680019Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3EB0732DFC3B84A16FF2FF","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-06T07:54:11Z","event_id":"$qKteGTNbfzoaNXAr1MZREyuCU63ck_t0W5-eFpwBCJE","part_id":"","time":"2026-03-06T19:22:21.063835279Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:21.068157184Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2527,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/JwmJngUvlovljpoCATmCEdlJ?user_id=%40whatsapp_491745380836%3Amatrix.theocloud.dev","duration":35.780512,"status_code":200,"response_length":41748,"response_mime":"image/jpeg","time":"2026-03-06T19:22:21.072009052Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2529,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-13473413128380:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-13473413128380%3Amatrix.theocloud.dev","duration":30.165687,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:21.09391052Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:21.095218455Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2505,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940532434906_6?ts=1771318996000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":562.980784,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wo ist es hin?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.095527926Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3AC37FE87DA97B33CCAB","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:03:16Z","event_id":"$hlzWLpbEhSgMBj6esNI_pElo8Tvv0ypjZ8B-pFYUoEg","part_id":"","time":"2026-03-06T19:22:21.09565441Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2532,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-230210683330737%3Amatrix.theocloud.dev","duration":23.916486,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-230210683330737","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:21.119477168Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2531,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491745380836:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491745380836%3Amatrix.theocloud.dev","duration":51.940742,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JwmJngUvlovljpoCATmCEdlJ"},"time":"2026-03-06T19:22:21.124244877Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"62921489018884@lid","alternate_jid":"491745380836@s.whatsapp.net","time":"2026-03-06T19:22:21.124611898Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"74526322876491@lid","alternate_jid":"491625626441@s.whatsapp.net","time":"2026-03-06T19:22:21.124691518Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2508,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940569818507_4?ts=1767285950000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":555.438245,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.125398181Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A737D0346261928BFF7","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-01T16:45:50Z","event_id":"$4Ndj8mdILo4NsfdfzRRIkBv51eUSC-z6EGNLoKCLqQg","part_id":"","time":"2026-03-06T19:22:21.125472982Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1394","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.142071472Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1394","time":"2026-03-06T19:22:21.142157657Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2534,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-230210683330737:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-230210683330737%3Amatrix.theocloud.dev","duration":26.545836,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:21.146315503Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2535,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":29.145362,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-83674703904795","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:21.154271369Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2498,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-46858126766286:matrix.theocloud.dev?user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":759.462907,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CBaHFbcIsutovHAvcmuIhbcC","com.beeper.exclude_from_timeline":true,"displayname":"Julius (WA)","membership":"join"},"time":"2026-03-06T19:22:21.158865799Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2511,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940607114734_87?ts=1767976899000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":557.097625,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mensch haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.164365873Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A38166D8D8BA947A6A9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-09T16:41:39Z","event_id":"$sB8WoZ6ysSZb1fe0rYLa5DuAGObvHCXYRMGw-XzJ11w","part_id":"","time":"2026-03-06T19:22:21.164516662Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2538,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-83674703904795:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":31.459934,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:21.186054811Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2525,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-129064018960516:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-129064018960516%3Amatrix.theocloud.dev","duration":188.000765,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mahmoud (WA)"},"time":"2026-03-06T19:22:21.190706582Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.19153505Z","message":""} +{"level":"debug","transaction_id":"1395","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.210035343Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1395","time":"2026-03-06T19:22:21.210161199Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.25171836Z","message":"5f53ac2a6351af71135e6b50"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.252659972Z","message":""} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A079456E92AD41E4263","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A079456E92AD41E4263","time":"2026-03-06T19:22:21.252760894Z","message":"Handling remote event"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2517,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940749986748_88?ts=1765797437000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":533.271794,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles klar","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.283415338Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABDA140CF50C13FCB65","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T11:17:17Z","event_id":"$Rvy_O1ioUss99kAsXpLovRRtWX-ScfJl13Eqrn5HKOM","part_id":"","time":"2026-03-06T19:22:21.283537911Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2518,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940753601641_89?ts=1765225135000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":531.188401,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"muss das erstmal ein pasr Tage verarbeiten","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.284955149Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A375434BFD1961B6518","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-08T20:18:55Z","event_id":"$hnRWMxsUH2JYpGEIJ6PfDmWimOn-BMtCp5E1HPXSVc8","part_id":"","time":"2026-03-06T19:22:21.285124586Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1396","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.303053779Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1396","time":"2026-03-06T19:22:21.303464451Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2537,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-230210683330737:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-230210683330737%3Amatrix.theocloud.dev","duration":190.253735,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917683609440 (WA)"},"time":"2026-03-06T19:22:21.336802511Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.33756449Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2519,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940842387848_7?ts=1766572350000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":515.146553,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also es kann effektiv sein, aber das was ich gemacht hane, war definitiv nicht, weil es ohne Plan war und nur gespamme 😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.35768603Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC168AE33A2CCE784C90F6F02D802919","sender_id":{"user_id":"4917657607100"},"message_ts":"2025-12-24T10:32:30Z","event_id":"$voGWHSvI5WwhwW8XjEtq1OSnfwIPgsr0CdeuFm11lV0","part_id":"","time":"2026-03-06T19:22:21.357825924Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2520,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940858146555_90?ts=1771543983000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":506.1631,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"jo","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.364432997Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A502761C2BC762B80B8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-19T23:33:03Z","event_id":"$xpggGYbnyzEph2W0XaCBAQQUrGn_RT-WojpnSCiFn30","part_id":"","time":"2026-03-06T19:22:21.364547049Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.381482318Z","message":"dd454b19ab15e54096e1a40d"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.382148123Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2541,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-83674703904795:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":195.984707,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Zakaria (WA)"},"time":"2026-03-06T19:22:21.38227789Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.383113482Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2513,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266657507356684:matrix.theocloud.dev?user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":754.112295,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BlaAgKqAVGSAjbgkWHdoWAAF","com.beeper.exclude_from_timeline":true,"displayname":"Maja (WA)","membership":"join"},"time":"2026-03-06T19:22:21.387158114Z","message":"Request completed"} +{"level":"debug","transaction_id":"1397","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.393198557Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1397","time":"2026-03-06T19:22:21.393295708Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2510,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70231405916394:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":806.616943,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KtarwtREFgNNmUXKUiWDaInP","com.beeper.exclude_from_timeline":true,"displayname":"Colin (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:21.398697723Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.434774087Z","message":"53978361eed7197db70d0916"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.435573012Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.465442988Z","message":""} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2515,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-187849085329414:matrix.theocloud.dev?user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":752.717406,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vodzizjGAdnOXIEIFkvNVJXl","com.beeper.exclude_from_timeline":true,"displayname":"Vitali (WA)","membership":"join"},"time":"2026-03-06T19:22:21.472708184Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.488080034Z","message":""} +{"level":"debug","transaction_id":"1398","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.492510964Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1398","time":"2026-03-06T19:22:21.492619778Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2549,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-129064018960516:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-129064018960516%3Amatrix.theocloud.dev","duration":40.631473,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:21.50639308Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:21.507719314Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2523,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824940965945349_6?ts=1772482426000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":546.946688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Richtig","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$Zn9Ow8A-tBi76vWWbINu6f4fkICa_YA2cyoy2sykenk"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.513035842Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AA0356D3EC84C2C2039","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:13:46Z","event_id":"$zEJ86N_EZvWqfUqxHMIa3C3whkMuFlRCxTmGLRnRK-k","part_id":"","time":"2026-03-06T19:22:21.513203953Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2551,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-230210683330737:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-230210683330737%3Amatrix.theocloud.dev","duration":43.99207,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:21.53241936Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:21.533417265Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.535993674Z","message":"98f1668670e0a1514b82a4f2"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.536639505Z","message":""} +{"level":"debug","portal_id":"120363326854732201@g.us","portal_mxid":"!RLPmAJGDXGPlIucoNA:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A589B1209935D05E657","sender_id":"4915903048642@s.whatsapp.net","chat_id":"120363326854732201@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915903048642"},"remote_target_message_id":"120363326854732201@g.us:4915903048642@s.whatsapp.net:3A589B1209935D05E657","time":"2026-03-06T19:22:21.536746504Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.540465182Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2552,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":35.618688,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-256783310393511","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:21.543626171Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2554,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-91422824890466%3Amatrix.theocloud.dev","duration":29.793848,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-91422824890466","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:21.563485243Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.573504667Z","message":"502b50f2c3e666164a388566"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.57418046Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2555,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256783310393511:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":35.779325,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:21.579753519Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A079456E92AD41E4263","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A079456E92AD41E4263","req_id":2542,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":320.113516,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<117278 bytes>","time":"2026-03-06T19:22:21.58675094Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.58769814Z","message":"89bb63f821cd36fb2f9ef02f"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.588309888Z","message":""} +{"level":"debug","transaction_id":"1399","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.595420453Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1399","time":"2026-03-06T19:22:21.595918498Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2558,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-91422824890466:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-91422824890466%3Amatrix.theocloud.dev","duration":33.228268,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:21.597027802Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2528,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941060477405_12?ts=1772654242000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":564.288858,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Als weeenn sah heute miesee aus","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$1Z01DcoqukQmZ7pKFDHrneURcrymnzHUrbxfMpgaP9o"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.624915725Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3ADE0A46AB71E1164C6D","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T19:57:22Z","event_id":"$2ssxcTJhnNrhKUQsFLsUUyDEmiNGbL_yfmoJzddfxDg","part_id":"","time":"2026-03-06T19:22:21.625045213Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2530,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941064712357_8?ts=1770364452000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":561.118091,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"e","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.625985219Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3EB0DC0AA51C3A2643AFD1","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-06T07:54:12Z","event_id":"$yea7djHnKwrOeW-8vi_DXibIFYENrlpdZPFADuDDYWo","part_id":"","time":"2026-03-06T19:22:21.626170301Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2533,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941096504670_7?ts=1771319010000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":562.434547,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old file attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.file","body":"","info":{"mimetype":"application/pdf","size":67214},"filename":"HWR Gruppenteilung_231018_123755.pdf"},"extra":{"info":{}},"whatsapp_media":{"key":"hNzOtQaExx8x5YQ0kBQgIFBaEBDJdIHHUaAUAJqIASI=","length":67214,"type":"WhatsApp Document Keys","sha256":"lR78Vrdts2kb/KatKQ8IArORTi6ErAJM1N6Mf2BKIt8=","enc_sha256":"XN1s97PU6Tp/nlIolxEVV6XUo2YR4riRZuuly1urT0w=","mime_type":"application/pdf"},"type_description":"file attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:21.659219214Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A8AE9CD3D7FB5226E24","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:03:30Z","event_id":"$RhEUfAPcQhMK3P-3zQZafjtSVmc2NXZX9Pi74CItUyk","part_id":"","time":"2026-03-06T19:22:21.659473789Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1400","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.693972348Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1400","time":"2026-03-06T19:22:21.694087867Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2536,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941125969211_5?ts=1768042512000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":583.75465,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kann ich dir noch etwas für dein Mealprep mitbringen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.709831208Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A2C1CD6B1D61F5CF71A","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-10T10:55:12Z","event_id":"$P3GqwBcFCSl3mvhbqNwj1OvoiPI9jY2zvcw1L0vn0i8","part_id":"","time":"2026-03-06T19:22:21.709953502Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2540,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941165322362_91?ts=1767976906000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":576.145202,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"hab auch noch bisschen gecodet","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.741662143Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFD109682F12E6B9DE2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-09T16:41:46Z","event_id":"$qGa1HEZ-42xS_JWdwCViCsKjkKzDyNoVWAc55vMfbMw","part_id":"","time":"2026-03-06T19:22:21.741825225Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1401","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.779793125Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1401","time":"2026-03-06T19:22:21.779967242Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2559,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256783310393511:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":216.054843,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jenny (WA)"},"time":"2026-03-06T19:22:21.796005946Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.79690698Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2561,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-91422824890466:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-91422824890466%3Amatrix.theocloud.dev","duration":206.176641,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917663142096 (WA)"},"time":"2026-03-06T19:22:21.803447703Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:21.804252704Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2556,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":288.380151,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<29911 bytes>","time":"2026-03-06T19:22:21.836677648Z","message":"Request completed"} +{"level":"debug","transaction_id":"1402","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.847576035Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1402","time":"2026-03-06T19:22:21.84770238Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2543,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941284398995_5?ts=1765811669000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":581.441895,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old photo. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.image","body":"","info":{"mimetype":"image/jpeg","w":738,"h":1600,"size":111768},"filename":"image.jpg"},"extra":{"info":{}},"whatsapp_media":{"key":"rcebdYP2L0qiBixb05zmSG+FRBwSTyikr4OTzd5jJzE=","length":111768,"type":"WhatsApp Image Keys","sha256":"E7XCYYEeN738ISrpwIJ47DIz4uajmexBpgJoOi3tGG8=","enc_sha256":"M/2eqoMDNF23wA2YBDnrlhLuZNgXhjwvSOmgjq7GP8Y=","mime_type":"image/jpeg"},"type_description":"photo"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:21.866097909Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A2C6F27B9AFAB5105A6","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:14:29Z","event_id":"$gACF3FcxHyM4hS33klugvV5nJPi0_qcEmoVDG5cUrPE","part_id":"","time":"2026-03-06T19:22:21.866280407Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2544,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941286136599_92?ts=1765225150000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":581.209459,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ist nicht so das Ende was ich mur gewünscht hab","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.867472823Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABBA47523E53E6D27D9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-08T20:19:10Z","event_id":"$8UDH_-XaAZIgU6n3oqaZCrbzE4uFIcOfdHXAwMxHPTY","part_id":"","time":"2026-03-06T19:22:21.867615441Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363326854732201@g.us","portal_mxid":"!RLPmAJGDXGPlIucoNA:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A589B1209935D05E657","sender_id":"4915903048642@s.whatsapp.net","chat_id":"120363326854732201@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915903048642"},"remote_target_message_id":"120363326854732201@g.us:4915903048642@s.whatsapp.net:3A589B1209935D05E657","req_id":2557,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":324.693978,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<102754 bytes>","time":"2026-03-06T19:22:21.874396071Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2567,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-83674703904795:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":39.95128,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:21.876918772Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2571,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/uHMfWBOwjpDinqKTHuYIBuJO?user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":38.25565,"status_code":200,"response_length":29911,"response_mime":"image/jpeg","time":"2026-03-06T19:22:21.916735954Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2545,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941358895837_93?ts=1766572364000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":584.560978,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.943578689Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6838880A4EAD28078A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T10:32:44Z","event_id":"$iRMVBkEMKCp1qA37Tw7diHEG23uhpLrr7MRaJJG_Kuc","part_id":"","time":"2026-03-06T19:22:21.943703357Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2546,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941365323904_5?ts=1771568834000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":587.324214,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"über was?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:21.952813226Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AA05E4EC0A39465CA53","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-20T06:27:14Z","event_id":"$3kvNpE1JuiSwN-jyYGfwUjh6CCuQURX_mPk6p59uuJ4","part_id":"","time":"2026-03-06T19:22:21.953007666Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.96193378Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:21.964295774Z","message":""} +{"level":"debug","transaction_id":"1403","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:21.967399841Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1403","time":"2026-03-06T19:22:21.967525277Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2573,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-83674703904795:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":67.888861,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uHMfWBOwjpDinqKTHuYIBuJO"},"time":"2026-03-06T19:22:21.984849357Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2576,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-91422824890466:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-91422824890466%3Amatrix.theocloud.dev","duration":37.665693,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:21.999909153Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2577,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256783310393511:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":35.823954,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:22.0004681Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:22.000792937Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:22.001915161Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2539,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-33994833981513:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":855.480158,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lNvvfPFXLLfahVICDvskpsln","com.beeper.exclude_from_timeline":true,"displayname":"Laura ^^ (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:22.015302865Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2578,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915236735839%3Amatrix.theocloud.dev","duration":35.70613,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915236735839","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:22.021373479Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2579,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-100738508263616%3Amatrix.theocloud.dev","duration":39.699638,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-100738508263616","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:22.040707269Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2580,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-188257056890939%3Amatrix.theocloud.dev","duration":40.687486,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-188257056890939","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:22.042960169Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2582,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915236735839:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915236735839%3Amatrix.theocloud.dev","duration":31.092075,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:22.052821051Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2583,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-100738508263616:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-100738508263616%3Amatrix.theocloud.dev","duration":24.155836,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:22.065164125Z","message":"Request completed"} +{"level":"debug","transaction_id":"1404","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.065961513Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1404","time":"2026-03-06T19:22:22.066075845Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2584,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-188257056890939:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-188257056890939%3Amatrix.theocloud.dev","duration":25.116236,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:22.068469966Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2553,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941514034726_7?ts=1772482433000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":586.276024,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Was willste machen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.100431227Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AFE0E4A1184469A9B91","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:13:53Z","event_id":"$Jt5RokgPR6bIToPaOXALgI1FlCAUgCE0eIMr6CwQ8C0","part_id":"","time":"2026-03-06T19:22:22.100542555Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1405","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.140289266Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1405","time":"2026-03-06T19:22:22.14063722Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A079456E92AD41E4263","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A079456E92AD41E4263","req_id":2560,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941587084995_7?ts=1772824941000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":597.282666,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":117278,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":117278,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/LHePAQxFZXQbrKepEQhaJNZk"},"m.relates_to":{"event_id":"$KgIHygmpPHz7Y9nyFwFpFtLAMhvrrJ5EIeCHlgNhgMQ","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/LHePAQxFZXQbrKepEQhaJNZk"},"time":"2026-03-06T19:22:22.184640884Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A079456E92AD41E4263","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A079456E92AD41E4263","event_id":"$n6PIeLb7RARk62lQI5EdXaXL51mKMRPFl0793dRL0MQ","part_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A079456E92AD41E4263","time":"2026-03-06T19:22:22.184848665Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3ADC6BF256EED2391E6F","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADC6BF256EED2391E6F","time":"2026-03-06T19:22:22.185795306Z","message":"Handling remote event"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2562,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941625948901_13?ts=1772654252000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":559.965625,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber danke 😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.186055328Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A9271E0578D39DF1D8E","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T19:57:32Z","event_id":"$JU6ma0KZ661LgzFcAYzEmXANM4pUxBZizCuYmRe9GHw","part_id":"","time":"2026-03-06T19:22:22.186646682Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2563,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941627109050_94?ts=1770364456000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":565.81938,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"💀","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.193067765Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADC5BA348687D54C892","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:54:16Z","event_id":"$9YBuoGzJjupemr6t8zQg5eVnmQ-TVB4Ijfgsavl0h3M","part_id":"","time":"2026-03-06T19:22:22.193221279Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2548,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70231405916394:matrix.theocloud.dev?user_id=%40whatsapp_lid-70231405916394%3Amatrix.theocloud.dev","duration":800.549611,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KtarwtREFgNNmUXKUiWDaInP","com.beeper.exclude_from_timeline":true,"displayname":"Colin (WA)","membership":"join"},"time":"2026-03-06T19:22:22.199814523Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2547,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":826.072817,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:22.214308666Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2564,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941660464431_8?ts=1771319010000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":568.488401,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old file attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.file","body":"","info":{"mimetype":"application/pdf","size":67214},"filename":"HWR Gruppenteilung_231018_123755.pdf"},"extra":{"info":{}},"whatsapp_media":{"key":"hNzOtQaExx8x5YQ0kBQgIFBaEBDJdIHHUaAUAJqIASI=","length":67214,"type":"WhatsApp Document Keys","sha256":"lR78Vrdts2kb/KatKQ8IArORTi6ErAJM1N6Mf2BKIt8=","enc_sha256":"XN1s97PU6Tp/nlIolxEVV6XUo2YR4riRZuuly1urT0w=","mime_type":"application/pdf"},"type_description":"file attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:22.229203146Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A64B45F476999272958","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:03:30Z","event_id":"$eQt79VUs1TRRG63omaVEpjmEn71cCVIyz08HeyaSCow","part_id":"","time":"2026-03-06T19:22:22.229372513Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1406","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.244167607Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1406","time":"2026-03-06T19:22:22.24430366Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2585,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915236735839:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915236735839%3Amatrix.theocloud.dev","duration":218.277432,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Zakaria (WA)"},"time":"2026-03-06T19:22:22.271295787Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:22.272258213Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2586,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-100738508263616:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-100738508263616%3Amatrix.theocloud.dev","duration":218.988914,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nemanja (WA)"},"time":"2026-03-06T19:22:22.284323803Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:22.285319683Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2587,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-188257056890939:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-188257056890939%3Amatrix.theocloud.dev","duration":219.541087,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Martín (WA)"},"time":"2026-03-06T19:22:22.288162471Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:22.289024742Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2565,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941710760040_95?ts=1768042728000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":581.75835,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich bräuchte noch:\n- 1kg Rinderhack\n- ⁠BBQ Sauce\n- ⁠Light Ketchup\n- ⁠Weiße Bohnen (große Dose)\n- ⁠Paprika\n- ⁠1kg Kartoffeln","format":"org.matrix.custom.html","formatted_body":"Ich bräuchte noch:\u003cbr\u003e\u003cul\u003e\u003cli\u003e1kg Rinderhack\u003c/li\u003e\u003cli\u003e⁠BBQ Sauce\u003c/li\u003e\u003cli\u003e⁠Light Ketchup\u003c/li\u003e\u003cli\u003e⁠Weiße Bohnen (große Dose)\u003c/li\u003e\u003cli\u003e⁠Paprika\u003c/li\u003e\u003cli\u003e⁠1kg Kartoffeln\u003c/li\u003e\u003c/ul\u003e","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.292707522Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE0A5EAD04DDF3AEF28","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-10T10:58:48Z","event_id":"$tPjUwobpG2dD7KQkfb4R2xKlpTbSLrpPynHqsDI3nRw","part_id":"","time":"2026-03-06T19:22:22.292854051Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2550,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220641227747573:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":839.946692,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hcAkoMihfYoWRUINswywSzGJ","com.beeper.exclude_from_timeline":true,"displayname":"Anastasia (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:22.313680997Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2566,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941742825016_96?ts=1767976914000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":588.365492,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bin auch gleich da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.331317831Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF56DA47AADEC16A794","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-09T16:41:54Z","event_id":"$Udl4dzyjnsgokUJp3g-97d15sYyWWx6vQ3qzui5hkWg","part_id":"","time":"2026-03-06T19:22:22.331439705Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1407","content":{"pdu":8,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.349161258Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1407","time":"2026-03-06T19:22:22.349852975Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2572,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":525.738054,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<526254 bytes>","time":"2026-03-06T19:22:22.416026511Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:22.429999422Z","message":""} +{"level":"debug","transaction_id":"1408","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.435821189Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1408","time":"2026-03-06T19:22:22.435940899Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:22.438260079Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:22.449442096Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2568,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941867285925_6?ts=1765811674000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":592.750396,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wenn ich dich fasse!!!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.46019584Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A30FF285F197527B1C9","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:14:34Z","event_id":"$TDEi53BTd7lK4qSww9QCT9rFW4cY9YMxO1tF63z8GL0","part_id":"","time":"2026-03-06T19:22:22.460350541Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2569,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941868390480_97?ts=1765225190000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":600.385685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"warum musste denn Eren sterben man, Mikasa wird doch nie darüber hinwegen kommen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.468892033Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7470A65D0F7517F98F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-08T20:19:50Z","event_id":"$XDTNhb6Xbxn5lc3M7Vn8zFUjdB7bX5FZz0qFUIWAcng","part_id":"","time":"2026-03-06T19:22:22.46901286Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363326854732201@g.us","portal_mxid":"!RLPmAJGDXGPlIucoNA:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A589B1209935D05E657","sender_id":"4915903048642@s.whatsapp.net","chat_id":"120363326854732201@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915903048642"},"remote_target_message_id":"120363326854732201@g.us:4915903048642@s.whatsapp.net:3A589B1209935D05E657","req_id":2570,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RLPmAJGDXGPlIucoNA:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941874943425_14?ts=1772824941000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":632.413646,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":102754,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":102754,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AqowwlfNOeKOpGOQKSIISsUF"},"m.relates_to":{"event_id":"$C1JOrsYQdAf8P_qwjkCZQkJBbEVtXWmz08AKtufJje0","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AqowwlfNOeKOpGOQKSIISsUF"},"time":"2026-03-06T19:22:22.5077155Z","message":"Request completed"} +{"level":"debug","portal_id":"120363326854732201@g.us","portal_mxid":"!RLPmAJGDXGPlIucoNA:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A589B1209935D05E657","sender_id":"4915903048642@s.whatsapp.net","chat_id":"120363326854732201@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915903048642"},"remote_target_message_id":"120363326854732201@g.us:4915903048642@s.whatsapp.net:3A589B1209935D05E657","event_id":"$SEV5yZY9k524bQ6Z6ysDTcSsb2MUJWzuFjIAdcXGGVs","part_id":"120363326854732201@g.us:4915903048642@s.whatsapp.net:3A589B1209935D05E657","time":"2026-03-06T19:22:22.507948354Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2574,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941944508848_98?ts=1766572366000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":599.437577,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"same","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.544103779Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFC01388EA0B1BE1D66","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-24T10:32:46Z","event_id":"$DQGfT_jbsabYtfGLltsBohOD_ErSNmm3zp7oc2kPYMI","part_id":"","time":"2026-03-06T19:22:22.544249191Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2575,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824941953952422_6?ts=1771594224000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":597.004345,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Theo was ist der Unterschied zwischen dem Programm R und Python? Das sind ja so zwei Dinge die viel in Statistik genutzt werden. Denkst du ich sollte Python lernen, jedenfalls für das statistische?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.551084927Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3EB043868A37F9879ACC85","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-20T13:30:24Z","event_id":"$xRqLRK5O84NWMay1QQ22hM--xXRy2cTj3-NTeZa7sMQ","part_id":"","time":"2026-03-06T19:22:22.551206732Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1409","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.554802139Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1409","time":"2026-03-06T19:22:22.554913188Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3ADC6BF256EED2391E6F","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADC6BF256EED2391E6F","req_id":2592,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":355.799951,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<467422 bytes>","time":"2026-03-06T19:22:22.56452592Z","message":"Request completed"} +{"level":"debug","transaction_id":"1410","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.607370622Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1410","time":"2026-03-06T19:22:22.607564295Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2588,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942101384852_8?ts=1772482489000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":553.190372,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Soo genug gehatet! Ich hab paar yt videos die in meiner watchlist sind die bereit sind geschaut zu werden 🤩","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.654712953Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A74BD01C9758C10255D","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:14:49Z","event_id":"$ACOnML5yg7n_p9-Ut7rTN3IkmGV6WvriKUomqUJg8Q4","part_id":"","time":"2026-03-06T19:22:22.654895102Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2598,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915236735839%3Amatrix.theocloud.dev","duration":294.082208,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<29911 bytes>","time":"2026-03-06T19:22:22.731619071Z","message":"Request completed"} +{"level":"debug","transaction_id":"1411","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.74865617Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1411","time":"2026-03-06T19:22:22.748760724Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2602,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-188257056890939%3Amatrix.theocloud.dev","duration":278.164541,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<70961 bytes>","time":"2026-03-06T19:22:22.75883637Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2589,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942192003510_99?ts=1772654256000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":581.363951,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Supii","m.mentions":{"user_ids":["@whatsapp_4915903048642:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$gVBpw-HaIEYrwE0YiYb8kjgE4dqdzUsy6ILys7OBK6k"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.773508123Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2607,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915236735839:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915236735839%3Amatrix.theocloud.dev","duration":41.555485,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:22.77360681Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A18078883F50BCBC291","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T19:57:36Z","event_id":"$pLd_7Z3jWaQmLXHar-atfpkO-k7kHpQtfcxaXoPM2fA","part_id":"","time":"2026-03-06T19:22:22.773647458Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2590,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942194627970_100?ts=1770364466000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":588.132708,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber machen wir so","m.mentions":{"user_ids":["@whatsapp_491637362958:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$sIrE3t0X3E7q3bEtGiqbC58d4A3anHv5LT6qvMCXmnI"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.782878921Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3F76CA90EC3E4125B0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:54:26Z","event_id":"$ZlEG77liEfvp7p0dgNOiQ7V3Kou5Egcor4mzq9YWau0","part_id":"","time":"2026-03-06T19:22:22.782990809Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2600,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-100738508263616%3Amatrix.theocloud.dev","duration":322.711647,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64733 bytes>","time":"2026-03-06T19:22:22.785296509Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2581,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-33994833981513:matrix.theocloud.dev?user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":783.41613,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lNvvfPFXLLfahVICDvskpsln","com.beeper.exclude_from_timeline":true,"displayname":"Laura ^^ (WA)","membership":"join"},"time":"2026-03-06T19:22:22.79920782Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2608,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-188257056890939:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-188257056890939%3Amatrix.theocloud.dev","duration":42.452259,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:22.801563318Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2609,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/EhAmqbMvkYGyReekNzjiGjuc?user_id=%40whatsapp_4915236735839%3Amatrix.theocloud.dev","duration":37.585584,"status_code":200,"response_length":29911,"response_mime":"image/jpeg","time":"2026-03-06T19:22:22.811365463Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2594,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942230098872_101?ts=1771319017000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":583.214071,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"jetzt hahaha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.813435655Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE11F703C985257B9EC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T09:03:37Z","event_id":"$ms3c1UIzdBR8gFAJLLfVx567Ju6LtECIa37Q3g7GMCM","part_id":"","time":"2026-03-06T19:22:22.813569962Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2612,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-100738508263616:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-100738508263616%3Amatrix.theocloud.dev","duration":36.161641,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:22.821757354Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2614,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WHJzUFuDxcewXWsoOtBxblJf?user_id=%40whatsapp_lid-188257056890939%3Amatrix.theocloud.dev","duration":35.368583,"status_code":200,"response_length":70961,"response_mime":"image/jpeg","time":"2026-03-06T19:22:22.837052798Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2617,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/UfrLlxiCRoIcIlQeDeyHFFSX?user_id=%40whatsapp_lid-100738508263616%3Amatrix.theocloud.dev","duration":30.295804,"status_code":200,"response_length":64733,"response_mime":"image/jpeg","time":"2026-03-06T19:22:22.85220702Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2595,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942293649624_102?ts=1768042732000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":564.136043,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dankee :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.857910614Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8EA3EA2B6FAD86453A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-10T10:58:52Z","event_id":"$Mx3Bx9xOAtyShdsNClk0mLdZC70cFLIUfcuSGov3zZo","part_id":"","time":"2026-03-06T19:22:22.858016984Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1412","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.86995644Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1412","time":"2026-03-06T19:22:22.87005352Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2615,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915236735839:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915236735839%3Amatrix.theocloud.dev","duration":60.641404,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EhAmqbMvkYGyReekNzjiGjuc"},"time":"2026-03-06T19:22:22.872225613Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"83674703904795@lid","alternate_jid":"4915236735839@s.whatsapp.net","time":"2026-03-06T19:22:22.872931089Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2618,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-188257056890939:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-188257056890939%3Amatrix.theocloud.dev","duration":62.128415,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WHJzUFuDxcewXWsoOtBxblJf"},"time":"2026-03-06T19:22:22.899431038Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:22.900115841Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2597,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942332038882_4?ts=1767977011000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":572.942726,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geile Scheiße","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:22.905119197Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A4A2309F3BF595CB673","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-09T16:43:31Z","event_id":"$duejlX8fFR-ljzL-v5IyihAdhOboOCNs3l63vd7rxlQ","part_id":"","time":"2026-03-06T19:22:22.905282558Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2621,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-151466652258375%3Amatrix.theocloud.dev","duration":37.885766,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-151466652258375","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:22.911558579Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2619,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-100738508263616:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-100738508263616%3Amatrix.theocloud.dev","duration":65.924479,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UfrLlxiCRoIcIlQeDeyHFFSX"},"time":"2026-03-06T19:22:22.918444881Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:22.919646726Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2622,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-145066932846614%3Amatrix.theocloud.dev","duration":37.700963,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-145066932846614","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:22.93807543Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2624,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151466652258375:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-151466652258375%3Amatrix.theocloud.dev","duration":30.645014,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:22.942545262Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2625,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-84005869375515%3Amatrix.theocloud.dev","duration":27.118333,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-84005869375515","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:22.947067614Z","message":"Request completed"} +{"level":"debug","transaction_id":"1413","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:22.957314025Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1413","time":"2026-03-06T19:22:22.957708773Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2626,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-145066932846614:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-145066932846614%3Amatrix.theocloud.dev","duration":26.275826,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:22.964805649Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2628,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84005869375515:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-84005869375515%3Amatrix.theocloud.dev","duration":29.46077,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:22.976829265Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2593,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":817.196291,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:23.032112585Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2591,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266657507356684:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":843.828312,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BlaAgKqAVGSAjbgkWHdoWAAF","com.beeper.exclude_from_timeline":true,"displayname":"Maja (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:23.044525291Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2599,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942461136964_7?ts=1765811677000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":585.224618,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"🈲","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.046484086Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A342F3574AB26B0B408","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:14:37Z","event_id":"$IKYbm1u_lhUBMYo8WtrlaemqIYGfA1ajgAFejzfKJJo","part_id":"","time":"2026-03-06T19:22:23.0466061Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2601,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942470351526_5?ts=1765238331000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":580.09813,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hahah ja klassiker","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$tMDkJdud8sg1X7-gX_mRwDp6LM53dc7DyC0My7udkSI"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.050593461Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:ACCF8374E871B3A0DCAA5AB230620285","sender_id":{"user_id":"4915735701057"},"message_ts":"2025-12-08T23:58:51Z","event_id":"$NgqEbJHCnjP0ZAY2KANGI3VjkX41peBYtocrTkqIy6A","part_id":"","time":"2026-03-06T19:22:23.050776937Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1414","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:23.074665905Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1414","time":"2026-03-06T19:22:23.074787989Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2632,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.833693,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:23.111700294Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2596,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220641227747573:matrix.theocloud.dev?user_id=%40whatsapp_lid-220641227747573%3Amatrix.theocloud.dev","duration":813.586357,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hcAkoMihfYoWRUINswywSzGJ","com.beeper.exclude_from_timeline":true,"displayname":"Anastasia (WA)","membership":"join"},"time":"2026-03-06T19:22:23.127964729Z","message":"Request completed"} +{"level":"info","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:23.128527866Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","action":"forward backfill","message_count":1,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:23.129065093Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","action":"forward backfill","message_count":1,"batch_send":false,"mark_read":true,"mark_read_past_threshold":true,"time":"2026-03-06T19:22:23.129129487Z","message":"Sending backfill messages"} +{"level":"warn","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"120363422109419332@g.us:220641227747573@lid:3A682A2F419411351D4D","PartID":null},"time":"2026-03-06T19:22:23.129588141Z","message":"Reply target message not found in database"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2603,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942545120263_103?ts=1767219127000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":602.066718,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles Gutee Bro ❤️❤️ Auf das in 2026 Planche was wird und Calisthenics bei dir noch mehr durch die Decke geht 🤝","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.147349573Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA58FBABD68B4BB851F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-31T22:12:07Z","event_id":"$PWlMmfUr6UPLUYkYJKheCzB4vyDLkXKUfxfCIxdezSs","part_id":"","time":"2026-03-06T19:22:23.147505112Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2604,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942552013270_7?ts=1771594229000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":600.060849,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Keine Ahnung ob du das in der Uni hattest","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.152226515Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3EB02C749CCCCDF5B64B1D","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-20T13:30:29Z","event_id":"$_Wqf2UlXbMKVG4qPgNp12OJd1ertZjUlXcE_PQFFANU","part_id":"","time":"2026-03-06T19:22:23.152410968Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1415","content":{"pdu":7,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:23.17855989Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1415","time":"2026-03-06T19:22:23.179049554Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2627,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151466652258375:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-151466652258375%3Amatrix.theocloud.dev","duration":240.715987,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ahmad Azimi (WA)"},"time":"2026-03-06T19:22:23.183440603Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:23.183981601Z","message":""} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3ADC6BF256EED2391E6F","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADC6BF256EED2391E6F","req_id":2605,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942564958313_104?ts=1772824941000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":622.707814,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":467422,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":467422,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/KoqtPJuDocEneHwDDaSCVYvz"},"m.relates_to":{"event_id":"$TqkgC23rIkSTUWuAHBEdz5CG1ff3IDtPtnN_UoH0XSs","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/KoqtPJuDocEneHwDDaSCVYvz"},"time":"2026-03-06T19:22:23.187927546Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3ADC6BF256EED2391E6F","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADC6BF256EED2391E6F","event_id":"$ZNiTp1VrL39iS3JlSIlATlmVJXpp5vW1DakRCOrWkxE","part_id":"4915234825973@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADC6BF256EED2391E6F","time":"2026-03-06T19:22:23.188066881Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3D7AB0CA57C726BAE2","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A3D7AB0CA57C726BAE2","time":"2026-03-06T19:22:23.188594679Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2629,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-145066932846614:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-145066932846614%3Amatrix.theocloud.dev","duration":244.183093,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Daniil Bykov (WA)"},"time":"2026-03-06T19:22:23.209267274Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:23.210208817Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2630,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84005869375515:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-84005869375515%3Amatrix.theocloud.dev","duration":237.573646,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915222317608 (WA)"},"time":"2026-03-06T19:22:23.214703302Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:23.215639607Z","message":""} +{"level":"debug","transaction_id":"1416","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:23.237214633Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1416","time":"2026-03-06T19:22:23.237355086Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2606,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942656389236_105?ts=1772482498000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":606.696488,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo mach das","m.mentions":{"user_ids":["@whatsapp_491736748726:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$ACOnML5yg7n_p9-Ut7rTN3IkmGV6WvriKUomqUJg8Q4"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.263271853Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A908E26CB4E65A3A516","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:14:58Z","event_id":"$zzoHNCFea1w25-88BwCDU-f6QSK5ulFGHNi9gzTOfZk","part_id":"","time":"2026-03-06T19:22:23.263501145Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1417","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:23.337122793Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1417","time":"2026-03-06T19:22:23.337242992Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2610,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942775048842_106?ts=1772654264000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":589.212888,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Neee","m.mentions":{"user_ids":["@whatsapp_4915903048642:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$2ssxcTJhnNrhKUQsFLsUUyDEmiNGbL_yfmoJzddfxDg"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.364442201Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A453D776DA32BD5BF9C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T19:57:44Z","event_id":"$g7kFYqHFXnyE_9PNb7z86qukOCBeE7FxrskPTH7hwlQ","part_id":"","time":"2026-03-06T19:22:23.364598159Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:23.369756914Z","message":""} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2611,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942783711301_107?ts=1770364470000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":587.195286,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"reicht auch ehrlich","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.37104683Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8F9DC1E236C34A3E8F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T07:54:30Z","event_id":"$AeYUBoX6ffWLVC8vDwYgZqPSAg78_HbS1L1bspre9AE","part_id":"","time":"2026-03-06T19:22:23.371176457Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2631,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":399.530252,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<60147 bytes>","time":"2026-03-06T19:22:23.379387666Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2616,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942814476793_9?ts=1771319022000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":579.411232,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oh","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.394053342Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3AE807483E1546AB6FF6","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:03:42Z","event_id":"$Um7B1i9VtpYbu6PyNNGQ6bgmqaCN0hONvK10EnhzY_I","part_id":"","time":"2026-03-06T19:22:23.394203852Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2620,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942858635576_108?ts=1769416831000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":582.50182,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Mama hab bei Ana geschlafen und komm dann heute nach Hause :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.441262484Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6EA1B83A01ADC4B14F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-26T08:40:31Z","event_id":"$GaLi4ujhNgje8KRloAmMolrjOrbXgSVuU_I1Ywxg3mw","part_id":"","time":"2026-03-06T19:22:23.441434854Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1418","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:23.457680431Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1418","time":"2026-03-06T19:22:23.457790153Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:23.481490408Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2623,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824942906194558_109?ts=1767977115000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":582.588843,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.488931257Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6B0AC0C84D6B9A5C7C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-09T16:45:15Z","event_id":"$oSRw-JPk9I1I18qTpfleXAiY1OfzlX3kLJyhv2DzHME","part_id":"","time":"2026-03-06T19:22:23.489055297Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:23.501755264Z","message":""} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3D7AB0CA57C726BAE2","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A3D7AB0CA57C726BAE2","req_id":2641,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":313.963421,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<117278 bytes>","time":"2026-03-06T19:22:23.51583217Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2648,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84005869375515:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-84005869375515%3Amatrix.theocloud.dev","duration":34.60416,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:23.516476255Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:23.517465919Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"voice message","time":"2026-03-06T19:22:23.529651918Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","transaction_id":"1419","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:23.541448546Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1419","time":"2026-03-06T19:22:23.541584319Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2651,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-200806917791911%3Amatrix.theocloud.dev","duration":28.729383,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-200806917791911","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:23.546419425Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2652,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-200806917791911:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-200806917791911%3Amatrix.theocloud.dev","duration":18.588573,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:23.565448284Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2634,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943047484924_110?ts=1765811885000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":569.2714,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.616916403Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9C645D65564722F859","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:18:05Z","event_id":"$S8Us1A9LivK9_-JfI9KvN1NX9U4CDj8k1MpBVZzK1vo","part_id":"","time":"2026-03-06T19:22:23.617114825Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2635,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943052294887_6?ts=1765238344000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":567.370575,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich denke alsp meine empfehlung hat nicht enttäuscht?😭","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$uv2nPkxRZRNFIYI6Rd5N02Gwqioj1NGq0Udy8elME2k"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.619835389Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:AC8E7225C55404E6522D608760359C6C","sender_id":{"user_id":"4915735701057"},"message_ts":"2025-12-08T23:59:04Z","event_id":"$8bYSF-_VLrJyfrHK8Uy-g2EPypx1Zy_IuLJ24rCmVkQ","part_id":"","time":"2026-03-06T19:22:23.619984153Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2613,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-65244881764452:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":824.772914,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hTULxoVmZmnVBXhcluKJkmwT","com.beeper.exclude_from_timeline":true,"displayname":"Domi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:23.624842237Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2645,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-151466652258375%3Amatrix.theocloud.dev","duration":296.548616,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49071 bytes>","time":"2026-03-06T19:22:23.680200009Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2640,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943153441210_111?ts=1771603063000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":547.961217,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"Voice message.ogg","info":{"duration":179000,"mimetype":"audio/ogg; codecs=opus","size":405792},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":179000,"waveform":[20,28,50,34,59,35,42,52,44,28,47,49,33,32,54,56,36,28,33,45,53,49,47,30,76,53,49,46,61,37,41,54,33,41,49,45,37,44,43,27,61,16,45,23,24,55,62,32,31,35,56,35,65,41,44,33,45,39,50,42,55,37,32,34]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/IDpALBkPGcxNVGbinowdGAzD"},"time":"2026-03-06T19:22:23.701779924Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6EC44B5831DF9D580F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-20T15:57:43Z","event_id":"$7IvpmPjbf-jd58S-7P-wuEZFvRb7Pwwykd8iXdQ66Rc","part_id":"","time":"2026-03-06T19:22:23.701981209Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:23.705171252Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","transaction_id":"1420","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:23.716139062Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1420","time":"2026-03-06T19:22:23.716220359Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2658,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151466652258375:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-151466652258375%3Amatrix.theocloud.dev","duration":39.309709,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:23.719902021Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2639,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824943148278963_8?ts=1767254881650&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":588.57844,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$PWlMmfUr6UPLUYkYJKheCzB4vyDLkXKUfxfCIxdezSs","key":"❤️"}},"time":"2026-03-06T19:22:23.736999393Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA58FBABD68B4BB851F","target_part_id":"","reaction_sender_id":{"user_id":"4917657607100"},"reaction_ts":"2026-01-01T08:08:01.65Z","event_id":"$qQrr0jrzD0MQsVMFKXk5MY211s9jAzsO2dNuD2Kapck","time":"2026-03-06T19:22:23.737190481Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2660,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/tANcdERwLashaSrYAvcDCKdn?user_id=%40whatsapp_lid-151466652258375%3Amatrix.theocloud.dev","duration":40.599904,"status_code":200,"response_length":49071,"response_mime":"image/jpeg","time":"2026-03-06T19:22:23.760611228Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","action":"forward backfill","req_id":2637,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943129773572_1?ts=1764408958000&user_id=%40whatsapp_lid-187849085329414%3Amatrix.theocloud.dev","duration":667.712526,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich habe dazu mal so ein Video gesehen und die meinten dass dich das lohnt, wenn man hungrig ist.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.797607483Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","action":"forward backfill","message_id":"120363422109419332@g.us:187849085329414@lid:3ADD4973D75D85C202CB","sender_id":{"user_id":"lid-187849085329414","sender_login":"491783743461"},"message_ts":"2025-11-29T09:35:58Z","event_id":"$x9TjONoHEBnFgVrQfuVtWts3NXqWnBgtVJKn_xUF-bI","part_id":"","time":"2026-03-06T19:22:23.797744723Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:23.798617122Z","message":"Backfill finished"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","time":"2026-03-06T19:22:23.79870673Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","req_id":2638,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21tBlZXyMrGKIRODvGsg:matrix.theocloud.dev?ts=1772824943128&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":670.495249,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:23.800833704Z","message":"Request completed"} +{"level":"debug","portal_id":"120363422109419332@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363422109419332@g.us","latest_message_ts":"2025-11-29T09:35:58Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:23.80107906Z","message":"Added portal to space"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2653,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-200806917791911:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-200806917791911%3Amatrix.theocloud.dev","duration":260.082533,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915254158741 (WA)"},"time":"2026-03-06T19:22:23.8258303Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:23.826632508Z","message":""} +{"level":"debug","transaction_id":"1421","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:23.848062751Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1421","time":"2026-03-06T19:22:23.848512465Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2662,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151466652258375:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-151466652258375%3Amatrix.theocloud.dev","duration":91.227961,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tANcdERwLashaSrYAvcDCKdn"},"time":"2026-03-06T19:22:23.852126101Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2633,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266657507356684:matrix.theocloud.dev?user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":824.595375,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BlaAgKqAVGSAjbgkWHdoWAAF","com.beeper.exclude_from_timeline":true,"displayname":"Maja (WA)","membership":"join"},"time":"2026-03-06T19:22:23.86968087Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2663,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917630375706%3Amatrix.theocloud.dev","duration":48.14412,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917630375706","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:23.901388533Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2642,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943264431234_112?ts=1772482503000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":640.40087,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber machen wir morgen mit?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:23.904961661Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A91FFD9A1AC2B45A758","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:15:03Z","event_id":"$QxAWDxpWxE_mzGj5vE_4q9d8QLy3CE09AKF6CHLnHdk","part_id":"","time":"2026-03-06T19:22:23.905092894Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:23.918947493Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2665,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630375706:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917630375706%3Amatrix.theocloud.dev","duration":38.504009,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:23.940295602Z","message":"Request completed"} +{"level":"debug","transaction_id":"1422","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:23.976253373Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1422","time":"2026-03-06T19:22:23.976424556Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:23.980236824Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2636,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":872.012995,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","com.beeper.exclude_from_timeline":true,"displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:23.98416461Z","message":"Request completed"} +{"level":"info","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:23.984799336Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2657,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-145066932846614%3Amatrix.theocloud.dev","duration":376.540642,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<42258 bytes>","time":"2026-03-06T19:22:24.014296214Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2643,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943365473492_15?ts=1772654264000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":666.357377,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gibt jetzt einfach macbook neo für 799","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.031984382Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A1B24876E916A6842F0","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T19:57:44Z","event_id":"$xOTv9BRmiVAYAMITEGp2HblBs9Fzauabm0iI30D4bjk","part_id":"","time":"2026-03-06T19:22:24.032169324Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2644,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943371938854_9?ts=1770364476000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":665.708123,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ja denke auch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.03778324Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3EB033180F84CD301B3D41","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-06T07:54:36Z","event_id":"$lBMD05IXA_MaP7wtd8rRNxR-ZWUIqBIMwE5LWVhPPsI","part_id":"","time":"2026-03-06T19:22:24.037914893Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2669,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-145066932846614:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-145066932846614%3Amatrix.theocloud.dev","duration":36.845187,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:24.051595026Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2646,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943395034136_10?ts=1771319023000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":667.671458,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Upsi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.062852612Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3AFEE7079EA06D95EAE2","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:03:43Z","event_id":"$4q-FuBffR_8SmWbXMIzUtxuXFvxIo4MUZmpJILnXt4Q","part_id":"","time":"2026-03-06T19:22:24.062983357Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"sticker","time":"2026-03-06T19:22:24.068121857Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2673,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XRkYTeIlPqDtSdsTprpoVzSC?user_id=%40whatsapp_lid-145066932846614%3Amatrix.theocloud.dev","duration":30.582995,"status_code":200,"response_length":42258,"response_mime":"image/jpeg","time":"2026-03-06T19:22:24.082365337Z","message":"Request completed"} +{"level":"debug","transaction_id":"1423","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:24.08644957Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1423","time":"2026-03-06T19:22:24.087061108Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2647,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943442290002_6?ts=1769429096000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":681.811851,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok, ich bin heute Abend bei Opa.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.1242759Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A815F3F29FBEDDDCCCB","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-26T12:04:56Z","event_id":"$sLlHrRU3qrWlDd6dPylVeegvTRkZVGyYpwGjAzmPeKM","part_id":"","time":"2026-03-06T19:22:24.124459515Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2675,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-145066932846614:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-145066932846614%3Amatrix.theocloud.dev","duration":69.279489,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XRkYTeIlPqDtSdsTprpoVzSC"},"time":"2026-03-06T19:22:24.151936278Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","source_jid":"239363409617131@lid","alt_jid":"4917641523941@s.whatsapp.net","source_push_name":"A.","alt_push_name":"Artur","time":"2026-03-06T19:22:24.152640706Z","message":"Conflicting push names between JIDs"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:24.152708453Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2649,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943489888724_113?ts=1768577653000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":679.208204,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sooo","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.169221875Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A606EAF3B010B327DFF","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-16T15:34:13Z","event_id":"$j4Im2K7ze1IfJHCDWzEN3Glp6eTRqc2Xum0pZcRfP48","part_id":"","time":"2026-03-06T19:22:24.169349197Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2678,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":38.635662,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-239363409617131","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:24.191534155Z","message":"Request completed"} +{"level":"debug","transaction_id":"1424","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:24.193205898Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1424","time":"2026-03-06T19:22:24.193294109Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2667,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630375706:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917630375706%3Amatrix.theocloud.dev","duration":255.268728,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ahmad Azimi (WA)"},"time":"2026-03-06T19:22:24.195849565Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:24.196702479Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2680,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-239363409617131:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":38.470764,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:24.23035846Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3D7AB0CA57C726BAE2","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A3D7AB0CA57C726BAE2","req_id":2650,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943516232506_8?ts=1772824941000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":721.365169,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":117278,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":117278,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/tlPgezWUAEzAHCBgLrNiGttP"},"m.relates_to":{"event_id":"$meqRkzP4nPe9noiCI7hjQk3cfVWfEaOtJwLMVaqnAc0","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/tlPgezWUAEzAHCBgLrNiGttP"},"time":"2026-03-06T19:22:24.23793627Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3D7AB0CA57C726BAE2","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A3D7AB0CA57C726BAE2","event_id":"$hMvaxwoYdMPo8bI-1fmcG5WBphpT__zOMtjapEoKtYc","part_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A3D7AB0CA57C726BAE2","time":"2026-03-06T19:22:24.23811779Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF1C258CF4F210C7817","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3AF1C258CF4F210C7817","time":"2026-03-06T19:22:24.239052418Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1425","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:24.307238877Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1425","time":"2026-03-06T19:22:24.307619307Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2654,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943617972906_114?ts=1765811925000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":712.142925,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"du kriegst mich niemals","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.330273884Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A37DCEF9D049490B48B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:18:45Z","event_id":"$7sovcknIC3Im5ev-YMi0vl51wkuY7l8A6eZbmX10mfE","part_id":"","time":"2026-03-06T19:22:24.330459315Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2655,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943621132009_7?ts=1765238353000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":710.898197,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja haben viele gesagt","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$8UDH_-XaAZIgU6n3oqaZCrbzE4uFIcOfdHXAwMxHPTY"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.332140347Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:AC72AD2CA128030C785EA1EC60C6D6CE","sender_id":{"user_id":"4915735701057"},"message_ts":"2025-12-08T23:59:13Z","event_id":"$C26avNkTdiby1S2NAI0HDJiEJXgX_I9SNDUDzsnMyYM","part_id":"","time":"2026-03-06T19:22:24.332243784Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2670,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":320.33757,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<554158 bytes>","time":"2026-03-06T19:22:24.335313139Z","message":"Request completed"} +{"level":"debug","transaction_id":"1426","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:24.399915086Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1426","time":"2026-03-06T19:22:24.400050091Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2659,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943703064392_8?ts=1771628429000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":706.416702,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"warte, aber was genau macht die extension, glaub habs nicht geschnallt","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$7IvpmPjbf-jd58S-7P-wuEZFvRb7Pwwykd8iXdQ66Rc"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.409607578Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A0B60AF61D25EF2B01D","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-20T23:00:29Z","event_id":"$jZ8f9_kQixoR124IAMVen954A5DtNugatraoa2m2JJY","part_id":"","time":"2026-03-06T19:22:24.409741745Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2661,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943737909088_115?ts=1767222772000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":703.730012,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Und natürlich frohes Neues 🥳","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.441797502Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A59334040A1C2900AE6","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-31T23:12:52Z","event_id":"$FmKTVyyfv8W4bx1MB1LcEszt-AqP5W4cvq9eqKnHQJ8","part_id":"","time":"2026-03-06T19:22:24.441970082Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2676,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-200806917791911%3Amatrix.theocloud.dev","duration":332.428932,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47272 bytes>","time":"2026-03-06T19:22:24.451673609Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2681,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-239363409617131:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":237.988858,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Artur (WA)"},"time":"2026-03-06T19:22:24.468509073Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:24.469270563Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2688,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-200806917791911:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-200806917791911%3Amatrix.theocloud.dev","duration":29.554079,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:24.481609306Z","message":"Request completed"} +{"level":"debug","transaction_id":"1427","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:24.497421442Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1427","time":"2026-03-06T19:22:24.497543457Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2689,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/dZmFBkdQzbhKwcgpLuVJxzma?user_id=%40whatsapp_lid-200806917791911%3Amatrix.theocloud.dev","duration":20.534656,"status_code":200,"response_length":47272,"response_mime":"image/jpeg","time":"2026-03-06T19:22:24.502354188Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:24.511242587Z","message":""} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF1C258CF4F210C7817","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3AF1C258CF4F210C7817","req_id":2682,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":299.394476,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<200480 bytes>","time":"2026-03-06T19:22:24.55041296Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2656,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-65244881764452:matrix.theocloud.dev?user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":936.839135,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hTULxoVmZmnVBXhcluKJkmwT","com.beeper.exclude_from_timeline":true,"displayname":"Domi (WA)","membership":"join"},"time":"2026-03-06T19:22:24.562359958Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2666,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824943905718052_9?ts=1772482538000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":659.801428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kommt drauf an wie wir das morgen klären","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.565619145Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A428F79D636A579CB3A","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:15:38Z","event_id":"$zVYrW-xo2P89d4QgTYYd3GmxOpAmuMHlwlSYgtfTOOQ","part_id":"","time":"2026-03-06T19:22:24.565736899Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2690,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-200806917791911:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-200806917791911%3Amatrix.theocloud.dev","duration":75.370218,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dZmFBkdQzbhKwcgpLuVJxzma"},"time":"2026-03-06T19:22:24.577920313Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:24.57884691Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1428","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:24.59944212Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1428","time":"2026-03-06T19:22:24.599546604Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2695,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-17910198173840%3Amatrix.theocloud.dev","duration":39.72073,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-17910198173840","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:24.618843517Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:24.63051408Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2696,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-17910198173840:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-17910198173840%3Amatrix.theocloud.dev","duration":32.986335,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:24.652236613Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2671,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944033181966_116?ts=1772654440000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":635.032867,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"Voice message.ogg","info":{"duration":97000,"mimetype":"audio/ogg; codecs=opus","size":211840},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":97000,"waveform":[4,35,44,41,37,42,20,80,32,61,51,13,37,38,54,61,51,28,64,73,68,24,31,71,35,8,25,51,51,50,26,53,40,65,37,23,74,66,44,74,70,3,71,81,65,35,86,45,41,15,25,43,62,45,62,35,65,44,34,37,36,14,57,18]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/pTvULiyaKYSRAwImrYNAjJLo"},"time":"2026-03-06T19:22:24.668554825Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD1FF50882D00468EA9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T20:00:40Z","event_id":"$V5xhOwVnQXiNZD2TwoiYoF2NFG5gq_kX3o43vSGfM3I","part_id":"","time":"2026-03-06T19:22:24.668685081Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2672,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944038822143_117?ts=1771243634000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":635.504372,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"moin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.674448949Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB6F9D5B34705DAE6E0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T12:07:14Z","event_id":"$1cybZqwvA5KmIBAVi8LvaH45JICd5Ld_yZ6o6Npz4l8","part_id":"","time":"2026-03-06T19:22:24.674549382Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1429","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:24.695590883Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1429","time":"2026-03-06T19:22:24.69594198Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2674,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944063937890_118?ts=1771319037000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":633.669966,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"alles gut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.697732455Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A979B7B29F8B0184BDD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T09:03:57Z","event_id":"$flyCJJjkVd3PM3C2zOWd23oicvg-NMVQ0uxUBkQ202I","part_id":"","time":"2026-03-06T19:22:24.697817453Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2677,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944125374238_119?ts=1769429413000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":626.156272,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Okee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.751703719Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB2834603DB08E9F464","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-26T12:10:13Z","event_id":"$Vns_AqMfHxFts2fMcemo8OJDIprhyxGHOKLM26T7UuE","part_id":"","time":"2026-03-06T19:22:24.751863169Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","req_id":2668,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev?ts=1772824943984&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":788.064687,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:24.777132499Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:24.777646328Z","message":"Added portal to space"} +{"level":"debug","transaction_id":"1430","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:24.778308711Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1430","time":"2026-03-06T19:22:24.77849072Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2664,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127753970032737:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":917.787298,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sYSbpNQTvisKpJOIimOumfcj","com.beeper.exclude_from_timeline":true,"displayname":"Josh (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:24.788478016Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2679,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944169945161_120?ts=1768577656000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":620.259005,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wochenendee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.790313609Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE124273B97FF35473B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-16T15:34:16Z","event_id":"$m4PXGuUE7s1o_wTIb574h31SX6tHyfSgQgX-nA-rRA4","part_id":"","time":"2026-03-06T19:22:24.790457135Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2685,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":470.838657,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<270371 bytes>","time":"2026-03-06T19:22:24.820843104Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2691,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917630375706%3Amatrix.theocloud.dev","duration":324.114566,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49071 bytes>","time":"2026-03-06T19:22:24.845536376Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-17910198173840:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-17910198173840%3Amatrix.theocloud.dev","duration":212.210099,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917630462874 (WA)"},"time":"2026-03-06T19:22:24.86465575Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:24.865564257Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2706,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630375706:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917630375706%3Amatrix.theocloud.dev","duration":22.86117,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:24.868818764Z","message":"Request completed"} +{"level":"debug","transaction_id":"1431","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:24.880134808Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1431","time":"2026-03-06T19:22:24.880282734Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2707,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KxQTuMalbtTyNcszXJACtzVr?user_id=%40whatsapp_4917630375706%3Amatrix.theocloud.dev","duration":21.777499,"status_code":200,"response_length":49071,"response_mime":"image/jpeg","time":"2026-03-06T19:22:24.890721211Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2683,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944331571413_8?ts=1765811982000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":595.331903,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":13706},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"wEdHMYgSMeZpEc2GxjRGRpjm8Qufoc6BnbXGpt28jKg=","length":13706,"type":"WhatsApp Image Keys","sha256":"e+pVNtHfD9uFtSMZQMwlomICCgYd+QDleBj0VKjuNPI=","enc_sha256":"96lX6jcBsytrbtEYPF00kwiI7pJthe/XBSs/OCeZz9w=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:24.927145179Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A4245D0317426999C63","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:19:42Z","event_id":"$NHViEQXB_5_lPvpyNOnHLhOXCHiMwNA7onrxSFNZXQU","part_id":"","time":"2026-03-06T19:22:24.92727732Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2684,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944333090481_8?ts=1765238359000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":597.697318,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jap😭","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$XDTNhb6Xbxn5lc3M7Vn8zFUjdB7bX5FZz0qFUIWAcng"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:24.930888791Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:AC3FDA8A8F3F2BD4003EF0C15927EEED","sender_id":{"user_id":"4915735701057"},"message_ts":"2025-12-08T23:59:19Z","event_id":"$O-u-YkqMhCnlLyiWLAt4R69fIbouzOQlOp6hQ8IpqnI","part_id":"","time":"2026-03-06T19:22:24.930977561Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2697,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":297.32128,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45393 bytes>","time":"2026-03-06T19:22:24.936453679Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2708,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630375706:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917630375706%3Amatrix.theocloud.dev","duration":75.608101,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KxQTuMalbtTyNcszXJACtzVr"},"time":"2026-03-06T19:22:24.966663227Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"151466652258375@lid","alternate_jid":"4917630375706@s.whatsapp.net","time":"2026-03-06T19:22:24.967257305Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"154361158209573@lid","alternate_jid":"4917670136222@s.whatsapp.net","time":"2026-03-06T19:22:24.967398665Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2711,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-239363409617131:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":35.381922,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:24.972207441Z","message":"Request completed"} +{"level":"debug","transaction_id":"1432","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:24.9816976Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1432","time":"2026-03-06T19:22:24.981946308Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2712,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-267847112642661%3Amatrix.theocloud.dev","duration":33.773317,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-267847112642661","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:25.001801889Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2713,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XyldaycAVTHtGdCrZPqAFuuq?user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":33.510431,"status_code":200,"response_length":45393,"response_mime":"image/jpeg","time":"2026-03-06T19:22:25.00590882Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2686,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944410983469_9?ts=1771628454000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":599.653738,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ja will python dann für uni statistik nehmen, falls die uns das erlauben","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$7IvpmPjbf-jd58S-7P-wuEZFvRb7Pwwykd8iXdQ66Rc"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.010794353Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AC715DC270AF5D463D9","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-20T23:00:54Z","event_id":"$3rujJWnqjZAEkl1IdED8ehP0hRLdGLy6chrcpQn6z1w","part_id":"","time":"2026-03-06T19:22:25.010972031Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:25.022686385Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2687,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944443414349_9?ts=1767254894000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":584.066913,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dankeschön bro","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$PWlMmfUr6UPLUYkYJKheCzB4vyDLkXKUfxfCIxdezSs"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.027651049Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC820A1E0FFCBC44E01D3751FFBB5ADE","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-01-01T08:08:14Z","event_id":"$cRLW_zf4bAChcz1RvOCBC2xsHucx2KlWZ3L8r5qxFGo","part_id":"","time":"2026-03-06T19:22:25.027805749Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2715,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-267847112642661:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-267847112642661%3Amatrix.theocloud.dev","duration":26.544299,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:25.028760911Z","message":"Request completed"} +{"level":"debug","transaction_id":"1433","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:25.072197456Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1433","time":"2026-03-06T19:22:25.07231535Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2716,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-239363409617131:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":70.712442,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XyldaycAVTHtGdCrZPqAFuuq"},"time":"2026-03-06T19:22:25.076860751Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:25.077585852Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2721,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-4462622052463%3Amatrix.theocloud.dev","duration":26.192155,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-4462622052463","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:25.103974124Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2722,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-4462622052463:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-4462622052463%3Amatrix.theocloud.dev","duration":45.717172,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:22:25.149992805Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2694,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944566532402_10?ts=1772482570000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":606.224982,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also wenn das ein stures 15 uhr und unsere meinung ist egal ist wird dann würd ich sagen nein","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.172884287Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AECC0657FD27D35A8C5","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:16:10Z","event_id":"$ly-SQ6reOoNELfMyUEN9hjgziD6F6_SK2KXxnCVoF4E","part_id":"","time":"2026-03-06T19:22:25.173029978Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1434","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:25.18420075Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1434","time":"2026-03-06T19:22:25.18439561Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF1C258CF4F210C7817","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3AF1C258CF4F210C7817","req_id":2692,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944550814832_9?ts=1772824941000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":645.692883,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":200480,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":200480,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/iszQLHnfQOzqGGfVAvDeJYbh"},"m.relates_to":{"event_id":"$8e_ZHmwBXTYletpq0Q6k8WS-9F6YXMXZYLZElIac0WA","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/iszQLHnfQOzqGGfVAvDeJYbh"},"time":"2026-03-06T19:22:25.196812297Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF1C258CF4F210C7817","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3AF1C258CF4F210C7817","event_id":"$9-UrJwcg4gl7XUEMllSqxtG4emIjki08EfdD62VFOB8","part_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3AF1C258CF4F210C7817","time":"2026-03-06T19:22:25.196963925Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A62F15F465D241E8D95","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A62F15F465D241E8D95","time":"2026-03-06T19:22:25.197588873Z","message":"Handling remote event"} +{"level":"warn","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A62F15F465D241E8D95","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A62F15F465D241E8D95","error":"failed to decrypt notification: cipher: message authentication failed","time":"2026-03-06T19:22:25.198384306Z","message":"Failed to decrypt media retry notification"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2719,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-267847112642661:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-267847112642661%3Amatrix.theocloud.dev","duration":259.718445,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Bes (WA)"},"time":"2026-03-06T19:22:25.288624488Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915735701057@s.whatsapp.net","alternate_jid":"267847112642661@lid","time":"2026-03-06T19:22:25.289369076Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2699,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944669282581_16?ts=1772654547000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":638.283463,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hm ja","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.307681493Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A4D4708DB5A302D957D","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T20:02:27Z","event_id":"$0a7i-LjvsPGP-FlWz_ALXHQHPQktmfT7zaO5l3qWuNs","part_id":"","time":"2026-03-06T19:22:25.307825787Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2714,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":337.645377,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<351304 bytes>","time":"2026-03-06T19:22:25.311732341Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2700,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944675075503_121?ts=1771243650000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":638.074286,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"hast du als wahlpflichtfach komplexitätstheorie?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.313278089Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2593210CCABBAAF252","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T12:07:30Z","event_id":"$oAsNPqBPVxyXrqn_U1GWLS6hRklQATbNPMml0Hz5t6A","part_id":"","time":"2026-03-06T19:22:25.313480841Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1435","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:25.317197005Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1435","time":"2026-03-06T19:22:25.317412469Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2726,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-130898087411771%3Amatrix.theocloud.dev","duration":42.127772,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-130898087411771","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:25.332075491Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2701,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944698385200_122?ts=1771319049000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":646.339831,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ja dann gucken wir mal, ob wir wieder 2er Gruppen machen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.344843484Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4931D13E3347FD222D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T09:04:09Z","event_id":"$Kv0XhHZJaPJE_mP1kLd_DFIAduxgfALGWmU0zFsq93g","part_id":"","time":"2026-03-06T19:22:25.344952857Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2730,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130898087411771:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-130898087411771%3Amatrix.theocloud.dev","duration":31.733366,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:25.364085082Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2705,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":543.526515,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<537800 bytes>","time":"2026-03-06T19:22:25.3767407Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2720,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-17910198173840%3Amatrix.theocloud.dev","duration":376.295495,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64847 bytes>","time":"2026-03-06T19:22:25.406784094Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2702,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944752741505_7?ts=1769514092000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":656.609918,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Theo,\nkannst du bitte den Lachs aus dem Tiefkühler nehmen?","format":"org.matrix.custom.html","formatted_body":"Hey Theo,\u003cbr\u003ekannst du bitte den Lachs aus dem Tiefkühler nehmen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.409482727Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3ACCCE66A34F57303F2D","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-27T11:41:32Z","event_id":"$y8ygIlp8HqsnP91aBnoXAe3kQiDy0cd_xjoYGMIhlAQ","part_id":"","time":"2026-03-06T19:22:25.409608163Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1436","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:25.412642737Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1436","time":"2026-03-06T19:22:25.412720332Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2723,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-4462622052463:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-4462622052463%3Amatrix.theocloud.dev","duration":269.6843,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915756437140 (WA)"},"time":"2026-03-06T19:22:25.419849685Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:25.420810295Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2733,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-17910198173840:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-17910198173840%3Amatrix.theocloud.dev","duration":33.368162,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:25.440609233Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2704,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944791272822_123?ts=1768577665000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":653.666209,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"auf ins Gym","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.445050709Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A56BFAA0C507D337A0C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-16T15:34:25Z","event_id":"$_BWUprG7PePCbAGbJZnJjUMHflfBG5JYd_hRiPV8ldE","part_id":"","time":"2026-03-06T19:22:25.445163923Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2693,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266657507356684:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":889.261295,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BlaAgKqAVGSAjbgkWHdoWAAF","com.beeper.exclude_from_timeline":true,"displayname":"Maja (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:25.452551832Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2735,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/eIphljQncIFFqZLRJYwxJlQz?user_id=%40whatsapp_lid-17910198173840%3Amatrix.theocloud.dev","duration":31.560366,"status_code":200,"response_length":64847,"response_mime":"image/jpeg","time":"2026-03-06T19:22:25.472300414Z","message":"Request completed"} +{"level":"debug","transaction_id":"1437","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:25.500244351Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1437","time":"2026-03-06T19:22:25.500365248Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2738,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-17910198173840:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-17910198173840%3Amatrix.theocloud.dev","duration":59.361756,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/eIphljQncIFFqZLRJYwxJlQz"},"time":"2026-03-06T19:22:25.531994689Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:25.533274687Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2729,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":212.833441,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<139366 bytes>","time":"2026-03-06T19:22:25.538161825Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2740,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-13413753335991%3Amatrix.theocloud.dev","duration":27.689222,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-13413753335991","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:25.561293076Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2709,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944927852401_124?ts=1765812200000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":636.748681,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ne also als ich es gelesen hab war ich schon in der S41 leider","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.564716321Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEC26DBC5B70314F0BE","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:23:20Z","event_id":"$tg_7Fv3RVMq3sNH5oEmxEzsTNZDeNNxsE5n5UQ5HYB8","part_id":"","time":"2026-03-06T19:22:25.56483652Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2710,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824944931786124_125?ts=1765269647000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":635.842478,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Absolut nicht","m.mentions":{"user_ids":["@whatsapp_4915735701057:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$8bYSF-_VLrJyfrHK8Uy-g2EPypx1Zy_IuLJ24rCmVkQ"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.567723098Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7BC49EFAB20555F03F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-09T08:40:47Z","event_id":"$SPfKDuCjyWgHJruDbNPZmrgT4JheWMaggyJvF2Pxctg","part_id":"","time":"2026-03-06T19:22:25.567843087Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2732,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130898087411771:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-130898087411771%3Amatrix.theocloud.dev","duration":208.335952,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Claudia Leuthardt (WA)"},"time":"2026-03-06T19:22:25.57264858Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491628947581@s.whatsapp.net","alternate_jid":"130898087411771@lid","time":"2026-03-06T19:22:25.573284144Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917621868423@s.whatsapp.net","time":"2026-03-06T19:22:25.57368874Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:25.580733584Z","message":""} +{"level":"debug","transaction_id":"1438","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:25.597185684Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1438","time":"2026-03-06T19:22:25.597457021Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2742,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-13413753335991:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-13413753335991%3Amatrix.theocloud.dev","duration":41.576158,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:25.603189809Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2745,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917621868423%3Amatrix.theocloud.dev","duration":42.240986,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917621868423","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:25.616213844Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2748,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621868423:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621868423%3Amatrix.theocloud.dev","duration":31.716184,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:25.648253119Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2703,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127753970032737:matrix.theocloud.dev?user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":872.192209,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sYSbpNQTvisKpJOIimOumfcj","com.beeper.exclude_from_timeline":true,"displayname":"Josh (WA)","membership":"join"},"time":"2026-03-06T19:22:25.661369416Z","message":"Request completed"} +{"level":"info","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:22:25.662096054Z","message":"Fetching messages for forward backfill"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2717,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945012444375_126?ts=1771665031000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":649.637711,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"top","m.mentions":{"user_ids":["@whatsapp_4917620338641:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$3rujJWnqjZAEkl1IdED8ehP0hRLdGLy6chrcpQn6z1w"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.662225472Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A01495B95FA24DFA14A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T09:10:31Z","event_id":"$SgCn979z7uNlyMDWb_S_1hCOStHBQ78BRPVloHRG58w","part_id":"","time":"2026-03-06T19:22:25.662413487Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","action":"forward backfill","message_count":1,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:25.662977742Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","action":"forward backfill","message_count":1,"batch_send":false,"mark_read":true,"mark_read_past_threshold":true,"time":"2026-03-06T19:22:25.663079642Z","message":"Sending backfill messages"} +{"level":"warn","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"120363417948931600@g.us:70231405916394@lid:402711A2A097F2B9D2298976B27B23CF","PartID":null},"time":"2026-03-06T19:22:25.663759765Z","message":"Reply target message not found in database"} +{"level":"debug","transaction_id":"1439","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:25.697360642Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1439","time":"2026-03-06T19:22:25.697513736Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2718,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824945028625138_127?ts=1767261567843&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":681.815553,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$cRLW_zf4bAChcz1RvOCBC2xsHucx2KlWZ3L8r5qxFGo","key":"❤️"}},"time":"2026-03-06T19:22:25.710580724Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC820A1E0FFCBC44E01D3751FFBB5ADE","target_part_id":"","reaction_sender_id":{"user_id":"4917641870516","is_from_me":true},"reaction_ts":"2026-01-01T09:59:27.843Z","event_id":"$lD8QevUoO2nqyc3dpWdTdKWMfCvfZF8K5RRd3BAsrGA","time":"2026-03-06T19:22:25.710711469Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"1440","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:25.783054167Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1440","time":"2026-03-06T19:22:25.783451499Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2724,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945173896580_11?ts=1772482627000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":632.656206,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also mein traum wäre halt das einfach zu verschieben und das jetzt nicht noch weiter zum überquillen zu bringen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.806728649Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AB614330563CEB3E0DD","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:17:07Z","event_id":"$N1HFQ7xnWMlrziak4LohkJu3YkjCm2mgskfemrrL3O8","part_id":"","time":"2026-03-06T19:22:25.806906118Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2747,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-13413753335991:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-13413753335991%3Amatrix.theocloud.dev","duration":219.479696,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Liam (WA)"},"time":"2026-03-06T19:22:25.822855145Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:25.823790961Z","message":""} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A62F15F465D241E8D95","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A62F15F465D241E8D95","req_id":2725,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xjzNIvMEOLkmIIZSft:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945198734006_10?ts=1772824941000&user_id=%40whatsapp_4915234825973%3Amatrix.theocloud.dev","duration":663.526741,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"* Failed to bridge media after re-requesting it from your phone: failed to decrypt notification: cipher: message authentication failed\n\n","m.mentions":{},"m.new_content":{"body":"Failed to bridge media after re-requesting it from your phone: failed to decrypt notification: cipher: message authentication failed\n\n","m.mentions":{},"msgtype":"m.notice"},"m.relates_to":{"event_id":"$YqY_70SW54ez145oVHJc5RBAB-Sygh3qE9aiTW4OTEs","rel_type":"m.replace"},"msgtype":"m.notice"},"time":"2026-03-06T19:22:25.862531456Z","message":"Request completed"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A62F15F465D241E8D95","sender_id":"","chat_id":"4915234825973@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915234825973"},"remote_target_message_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A62F15F465D241E8D95","event_id":"$o26XGX27kuU6e52OPRJcv-LYpf3SkYqcKy6SG5eqcH4","part_id":"4915234825973@s.whatsapp.net:4915234825973@s.whatsapp.net:3A62F15F465D241E8D95","time":"2026-03-06T19:22:25.862718912Z","message":"Sent message part edit to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2749,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621868423:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621868423%3Amatrix.theocloud.dev","duration":217.76011,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917621868423 (WA)"},"time":"2026-03-06T19:22:25.866236655Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:25.867117993Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2741,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":316.545208,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<56954 bytes>","time":"2026-03-06T19:22:25.870150333Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2739,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":353.625064,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<98609 bytes>","time":"2026-03-06T19:22:25.881994244Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"voice message","time":"2026-03-06T19:22:25.887719768Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"voice message","time":"2026-03-06T19:22:25.893694001Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","transaction_id":"1441","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:25.897309522Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1441","time":"2026-03-06T19:22:25.897451442Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"voice message","time":"2026-03-06T19:22:25.899656919Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_count":100,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:25.90085178Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_count":100,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:25.900951933Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2746,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-4462622052463%3Amatrix.theocloud.dev","duration":328.080905,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40797 bytes>","time":"2026-03-06T19:22:25.915962281Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2727,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945308736530_128?ts=1772658461000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":614.561976,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gutee Nacht ❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.923442591Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2579286AFAAB54924C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T21:07:41Z","event_id":"$bX5d-z8D6ZstLCmtBO2ekIR3vCZP_ytcmMBaD5W65Qs","part_id":"","time":"2026-03-06T19:22:25.923581297Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945314352612_10?ts=1771243658000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":611.698515,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:25.926171326Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3A110BC6339AFB923F3F","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T12:07:38Z","event_id":"$Yi0RZZoQNPvBQAd_D2YTioWMyeDyu4dkC5RkkeSzhwM","part_id":"","time":"2026-03-06T19:22:25.926301581Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2757,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-4462622052463:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-4462622052463%3Amatrix.theocloud.dev","duration":33.172395,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:25.949487588Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2731,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945345559437_11?ts=1771319110000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":613.589144,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Meinst du sie gleichen das aus?","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1543,"mimetype":"image/jpeg","size":153287,"w":1168},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/HdHsbHEVgXnrsyhMBwuaObyg"},"time":"2026-03-06T19:22:25.959347562Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A9257F7BA7C705434D3","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:05:10Z","event_id":"$5CR6W_P2Tggbcm8ncmBBPtWVZkjX3U1MgN1RT0hWMVg","part_id":"","time":"2026-03-06T19:22:25.959441849Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:25.986503469Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2760,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/fzFzEHxxDDIHweOqMltfFiNC?user_id=%40whatsapp_lid-4462622052463%3Amatrix.theocloud.dev","duration":44.775909,"status_code":200,"response_length":40797,"response_mime":"image/jpeg","time":"2026-03-06T19:22:25.994423366Z","message":"Request completed"} +{"level":"debug","transaction_id":"1442","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:26.009686542Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1442","time":"2026-03-06T19:22:26.009860868Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2762,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-13413753335991:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-13413753335991%3Amatrix.theocloud.dev","duration":46.730793,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:26.033651988Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:26.034425979Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2734,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945410402968_129?ts=1769514106000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":635.73115,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Klar mach ich :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.046273592Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABF122F7D1D8873EE22","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-27T11:41:46Z","event_id":"$7EOWULJggi7ILY3uWyz9XGjInS9XKN1Go7vXz3CH4Ek","part_id":"","time":"2026-03-06T19:22:26.046442889Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2764,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-101641122517221%3Amatrix.theocloud.dev","duration":34.818576,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-101641122517221","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:26.069488304Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2763,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-4462622052463:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-4462622052463%3Amatrix.theocloud.dev","duration":84.135695,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fzFzEHxxDDIHweOqMltfFiNC"},"time":"2026-03-06T19:22:26.078906385Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:26.080109906Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2736,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945445889304_5?ts=1768577674000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":644.420428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Muss vorbereiten vielleicht komm ich abends","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.090413378Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AD6A55484A67626BB80","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-16T15:34:34Z","event_id":"$Ixj8JpNj0Nm6LG77kFwrO1GNK44UL8Y3g3mWBMXS9kg","part_id":"","time":"2026-03-06T19:22:26.0905055Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2766,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101641122517221:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101641122517221%3Amatrix.theocloud.dev","duration":47.503386,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:26.117502865Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2767,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-199870648455306%3Amatrix.theocloud.dev","duration":44.848405,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-199870648455306","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:26.125313878Z","message":"Request completed"} +{"level":"debug","transaction_id":"1443","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:26.132689704Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1443","time":"2026-03-06T19:22:26.132843008Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2770,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-199870648455306:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-199870648455306%3Amatrix.theocloud.dev","duration":29.153185,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:26.154949603Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2755,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":303.582703,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<8918 bytes>","time":"2026-03-06T19:22:26.191717824Z","message":"Request completed"} +{"level":"debug","transaction_id":"1444","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:26.220927581Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1444","time":"2026-03-06T19:22:26.221023963Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2743,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945565622035_9?ts=1765812220000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":657.455428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oh ich dachte heute GYM!!!?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.223195148Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A26C3150077EC8A1165","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:23:40Z","event_id":"$S4vchRf66TLEfp4TyPw0ycK3Tv8D0hgc899yexMB_4w","part_id":"","time":"2026-03-06T19:22:26.223290552Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2744,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945568563160_9?ts=1767225304000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":657.577652,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Frohes neues man","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.226264783Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:ACCC9BDFA6CF96E9479FE11927D732E6","sender_id":{"user_id":"4915735701057"},"message_ts":"2025-12-31T23:55:04Z","event_id":"$PbF5T8SrzGCihLYHrHSJ-cZwbbJan8wSaWXaHkD2Sp4","part_id":"","time":"2026-03-06T19:22:26.226441064Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:26.295553979Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2752,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945667066724_130?ts=1771665141000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":647.595734,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"Voice message.ogg","info":{"duration":105000,"mimetype":"audio/ogg; codecs=opus","size":225792},"m.mentions":{"user_ids":["@whatsapp_4917620338641:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$jZ8f9_kQixoR124IAMVen954A5DtNugatraoa2m2JJY"}},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":105000,"waveform":[5,37,34,9,17,35,27,26,36,24,19,27,20,30,25,14,6,12,22,28,26,16,10,18,15,8,66,1,31,19,25,6,18,26,28,12,28,23,7,26,16,20,26,27,28,33,37,19,20,21,37,28,19,31,31,31,24,20,28,25,9,26,26,1]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/fVgEtKBVowbHpWbvRNAPjbXx"},"time":"2026-03-06T19:22:26.315061746Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADAFB01297F0FED9939","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T09:12:21Z","event_id":"$pUg-Y27iBWrdyngfYBa_A64S0FlnCeHM2qyZ7Uc0GNQ","part_id":"","time":"2026-03-06T19:22:26.315257164Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2737,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266657507356684:matrix.theocloud.dev?user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":865.358149,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BlaAgKqAVGSAjbgkWHdoWAAF","com.beeper.exclude_from_timeline":true,"displayname":"Maja (WA)","membership":"join"},"time":"2026-03-06T19:22:26.318676639Z","message":"Request completed"} +{"level":"debug","transaction_id":"1445","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:26.323507974Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1445","time":"2026-03-06T19:22:26.323680135Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2769,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101641122517221:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101641122517221%3Amatrix.theocloud.dev","duration":227.760397,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Seiar (WA)"},"time":"2026-03-06T19:22:26.345488154Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:26.346386185Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2753,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945711476520_10?ts=1767254901000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":657.581004,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Frohes Neues!!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.369169691Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACE2956914A37EE456F5265FF473B7C5","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-01-01T08:08:21Z","event_id":"$8_YGgzSzAJlYOK7O4aWa6h7QFFM9LPJN2P1yUu06omU","part_id":"","time":"2026-03-06T19:22:26.369279762Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-199870648455306:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-199870648455306%3Amatrix.theocloud.dev","duration":233.875431,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Anja (WA)"},"time":"2026-03-06T19:22:26.388992726Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:26.389711681Z","message":""} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","action":"forward backfill","req_id":2750,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945664032778_1?ts=1753297394000&user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":752.808899,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Herzlichen Glückwunsch Colin🙌","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.417003781Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","action":"forward backfill","message_id":"120363417948931600@g.us:127753970032737@lid:3A2F24922436078DDD3F","sender_id":{"user_id":"lid-127753970032737","sender_login":"491753774472"},"message_ts":"2025-07-23T19:03:14Z","event_id":"$fv2i6T4jBACoiixjskGz8A51QLdsRCOpj9691EoeRvA","part_id":"","time":"2026-03-06T19:22:26.417113363Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:26.41787597Z","message":"Backfill finished"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","time":"2026-03-06T19:22:26.417950003Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","transaction_id":"1446","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:26.428125314Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1446","time":"2026-03-06T19:22:26.428390435Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2754,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945807869173_131?ts=1772482645000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":670.557687,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo aber verschieben werden sie es nicht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.478593573Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABEAEAA7ED6A04549DB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:17:25Z","event_id":"$Rg1yrIpbfqDNIM3byvJcELRt7cGQ6iFNK_ziAucbCjw","part_id":"","time":"2026-03-06T19:22:26.478759238Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","req_id":2751,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21qUotrLYuNWPxuSMPyh:matrix.theocloud.dev?ts=1772824945662&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":825.228982,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:26.491173272Z","message":"Request completed"} +{"level":"debug","portal_id":"120363417948931600@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363417948931600@g.us","latest_message_ts":"2025-07-23T19:03:14Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:26.491658256Z","message":"Added portal to space"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:26.510049316Z","message":""} +{"level":"debug","transaction_id":"1447","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:26.525591791Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1447","time":"2026-03-06T19:22:26.525703538Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:26.557250774Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2758,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945924384273_17?ts=1772658474000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":658.648543,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gute Nacht ❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.583233961Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AD512C230329260F652","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-04T21:07:54Z","event_id":"$SM9MmkKV3ECtIzPA-FMsp_u4IAQYR7SiBlEN6FrHcfU","part_id":"","time":"2026-03-06T19:22:26.583411849Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2759,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945927186343_133?ts=1771243661000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":656.883211,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"geil","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.584249327Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD23651039F94FFD649","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T12:07:41Z","event_id":"$ViWTFZhb2GtMcuzeYVhU1RLy1agBb2g4Huomz76CLeg","part_id":"","time":"2026-03-06T19:22:26.584399279Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2761,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945960058695_134?ts=1771320371000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":660.80541,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich glaub nicht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.620988633Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1820B834EC7F0C25FD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T09:26:11Z","event_id":"$6FWogIX1Aj6W__zsr-L0DC9u9viIQuhvv1S59JFCDDc","part_id":"","time":"2026-03-06T19:22:26.621125035Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2775,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917621868423%3Amatrix.theocloud.dev","duration":321.428155,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<73035 bytes>","time":"2026-03-06T19:22:26.628571402Z","message":"Request completed"} +{"level":"debug","transaction_id":"1448","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:26.64401959Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1448","time":"2026-03-06T19:22:26.644139858Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2772,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":439.222626,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<239012 bytes>","time":"2026-03-06T19:22:26.646510442Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2784,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621868423:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917621868423%3Amatrix.theocloud.dev","duration":35.26815,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:26.664104882Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2756,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824945901315811_132?ts=1770042178000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":769.124178,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Das war seine Nachricht: Hey Theo\n\nI am reaching out to present an exciting opportunity to join a Highly innovative Berlin based product company. \n\nA well-established company, backed by industry-leading stakeholders. Saas/Platform in the Clean/Green Tech Domain, contributing to sustainability and a cleaner future. \n\nOpportunity to join a well versed/high performing team as a software Engineer (all levels from Junior to Tech Lead considered).\n\nFocus on the Backend OR Frontend OR as a Fullstack Developer, several roles in different squads available. \n\nTech Stack: Kotlin, Spring Boot/Ktor, Docker, Kubernetes, Typescript/React, AWS + More\n(No previous Kotlin experience required, if you know Java, they are willing to teach) \n\nYou DO NOT need experience with all mentioned technology – they are willing to teach \n\nThis is an opportunity to work on greenfield development, with long-term backing and an impressive global userbase providing a solid foundation for growth and innovation.\n\nKey details:\n\nSalary: Up to €90,000 per year + a competitive benefits package (including free sports membership)\n\nOptions for working holidays in other countries \n\n1 day per week meet up in Berlin, the rest Fully Remote – More office optional if you wish \n\nSustainability Focus: Be part of a project that contributes to a more sustainable future\n\nStable Company: Significant investment and strong backing provide long-term security and exciting growth potential\n\nTeam Meetups: Twice a year, the team gets together in Berlin to collaborate in person\n\nCurrent Team: They have some of the most experienced \u0026 innovative engineers who have amazing feedback from the people they worked with, Great opportunity to learn\n\nIf you are curious to learn more, kindly reply with your contact number and full availability to speak both tomorrow and Thursday please.\n\nBest\nGeorge Penny\n\nund das seine zweite Nachricht (die ich heute erst gesehen hatte und die erste Nachricht dann auch erst): \nHey Theo,\n\nThanks for connecting, I sent a message regarding a job role...\n\nI wondered if its interesting for you or not please?\n\nBest\nGeorge","format":"org.matrix.custom.html","formatted_body":"Das war seine Nachricht: Hey Theo\u003cbr\u003e\u003cbr\u003eI am reaching out to present an exciting opportunity to join a Highly innovative Berlin based product company. \u003cbr\u003e\u003cbr\u003eA well-established company, backed by industry-leading stakeholders. Saas/Platform in the Clean/Green Tech Domain, contributing to sustainability and a cleaner future. \u003cbr\u003e\u003cbr\u003eOpportunity to join a well versed/high performing team as a software Engineer (all levels from Junior to Tech Lead considered).\u003cbr\u003e\u003cbr\u003eFocus on the Backend OR Frontend OR as a Fullstack Developer, several roles in different squads available. \u003cbr\u003e\u003cbr\u003eTech Stack: Kotlin, Spring Boot/Ktor, Docker, Kubernetes, Typescript/React, AWS + More\u003cbr\u003e(No previous Kotlin experience required, if you know Java, they are willing to teach) \u003cbr\u003e\u003cbr\u003eYou DO NOT need experience with all mentioned technology – they are willing to teach \u003cbr\u003e\u003cbr\u003eThis is an opportunity to work on greenfield development, with long-term backing and an impressive global userbase providing a solid foundation for growth and innovation.\u003cbr\u003e\u003cbr\u003eKey details:\u003cbr\u003e\u003cbr\u003eSalary: Up to €90,000 per year + a competitive benefits package (including free sports membership)\u003cbr\u003e\u003cbr\u003eOptions for working holidays in other countries \u003cbr\u003e\u003cbr\u003e1 day per week meet up in Berlin, the rest Fully Remote – More office optional if you wish \u003cbr\u003e\u003cbr\u003eSustainability Focus: Be part of a project that contributes to a more sustainable future\u003cbr\u003e\u003cbr\u003eStable Company: Significant investment and strong backing provide long-term security and exciting growth potential\u003cbr\u003e\u003cbr\u003eTeam Meetups: Twice a year, the team gets together in Berlin to collaborate in person\u003cbr\u003e\u003cbr\u003eCurrent Team: They have some of the most experienced \u0026amp; innovative engineers who have amazing feedback from the people they worked with, Great opportunity to learn\u003cbr\u003e\u003cbr\u003eIf you are curious to learn more, kindly reply with your contact number and full availability to speak both tomorrow and Thursday please.\u003cbr\u003e\u003cbr\u003eBest\u003cbr\u003eGeorge Penny\u003cbr\u003e\u003cbr\u003eund das seine zweite Nachricht (die ich heute erst gesehen hatte und die erste Nachricht dann auch erst): \u003cbr\u003eHey Theo,\u003cbr\u003e\u003cbr\u003eThanks for connecting, I sent a message regarding a job role...\u003cbr\u003e\u003cbr\u003eI wondered if its interesting for you or not please?\u003cbr\u003e\u003cbr\u003eBest\u003cbr\u003eGeorge","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.671038188Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF9E46D05934749319B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-02T14:22:58Z","event_id":"$yQdQoMPnugy4MFnAHLWPeJ_i4rv34XLsSsHB-qWPTrU","part_id":"","time":"2026-03-06T19:22:26.671575134Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2765,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946047394559_135?ts=1769530137000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":641.248195,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mama gehst du heute noch einkaufen nach der Arbeit?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.688801366Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A07F57E9C848D08A935","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-27T16:08:57Z","event_id":"$OD09vRPYz_DcTS3Gg6WumVvACTBz2ylfaxLf0ncbjuE","part_id":"","time":"2026-03-06T19:22:26.688957533Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2785,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LiZTBqWbykOKplKobUHAxAfW?user_id=%40whatsapp_4917621868423%3Amatrix.theocloud.dev","duration":29.92536,"status_code":200,"response_length":73035,"response_mime":"image/jpeg","time":"2026-03-06T19:22:26.694147856Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2768,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946091092593_136?ts=1768577685000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":632.324455,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"vorbereiten?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.72354975Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD2BC3966DB33FDE8C1","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-16T15:34:45Z","event_id":"$h4qrsqsuBKXyHvBM0VxHoD8__km2euxMOkh1aHQhxY8","part_id":"","time":"2026-03-06T19:22:26.723707314Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1449","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:26.738142161Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1449","time":"2026-03-06T19:22:26.738303916Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2789,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621868423:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917621868423%3Amatrix.theocloud.dev","duration":63.894305,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LiZTBqWbykOKplKobUHAxAfW"},"time":"2026-03-06T19:22:26.758268101Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917631044300@s.whatsapp.net","time":"2026-03-06T19:22:26.759051242Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2792,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917631044300%3Amatrix.theocloud.dev","duration":23.699067,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917631044300","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:26.783021576Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2793,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631044300:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631044300%3Amatrix.theocloud.dev","duration":26.208288,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:26.809628454Z","message":"Request completed"} +{"level":"debug","transaction_id":"1450","content":{"pdu":1,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:26.81930167Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1450","time":"2026-03-06T19:22:26.819450923Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2773,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946223912776_10?ts=1765812224000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":621.930888,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":123384},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"Z6eyz/y3Z8mEdRhtIGL80evlN0ncP4E57VnjAgkAqQQ=","length":123384,"type":"WhatsApp Image Keys","sha256":"IccywjU/CVBKy8K6CwqPzYHN18B7KD7jf1ISGg3HDX0=","enc_sha256":"e9fwezhlexcFU6Ok8j4GMhM1TzuNL5hQMjF5JICKH2k=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:26.846025533Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A60839E8F41DE22F400","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:23:44Z","event_id":"$gGLSSqlGPU2LSLmcgFuBOx21QDTT4UkedONpnm8aWtQ","part_id":"","time":"2026-03-06T19:22:26.846170665Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2774,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946227347756_137?ts=1767225807000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":621.778562,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Frohes neues mein bester","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.849244002Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A505B6EE4391DD1B9C2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-01T00:03:27Z","event_id":"$g5upsZR09B_gri9Bwnbznm-fHKILgyyK2d8RUeqsuxU","part_id":"","time":"2026-03-06T19:22:26.849382918Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2791,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":167.902343,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<183984 bytes>","time":"2026-03-06T19:22:26.906676157Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2782,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-199870648455306%3Amatrix.theocloud.dev","duration":319.315779,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45274 bytes>","time":"2026-03-06T19:22:26.915196697Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2776,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946316734816_10?ts=1771675124000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":607.523139,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"dann brauchst du ja rein theoretisch nur die api schnittstelle von der ki und halt die extension die dann das richtige feld auswählt oder","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$pUg-Y27iBWrdyngfYBa_A64S0FlnCeHM2qyZ7Uc0GNQ"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.924440592Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3ACFB9954E2B1B3DB2CE","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-21T11:58:44Z","event_id":"$d9QWVuZsohXbQAyaP1b9VmJRIpWkl6vh7zbZX41NcOk","part_id":"","time":"2026-03-06T19:22:26.924558975Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1451","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:26.944618914Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1451","time":"2026-03-06T19:22:26.944735061Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2797,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-199870648455306:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-199870648455306%3Amatrix.theocloud.dev","duration":37.156194,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:26.952747848Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2799,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/crKSWuMnVganZAFfyMcaNcwQ?user_id=%40whatsapp_lid-199870648455306%3Amatrix.theocloud.dev","duration":29.51846,"status_code":200,"response_length":45274,"response_mime":"image/jpeg","time":"2026-03-06T19:22:26.982434977Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2788,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-101641122517221%3Amatrix.theocloud.dev","duration":292.326304,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<54430 bytes>","time":"2026-03-06T19:22:26.984807726Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2778,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946370044046_138?ts=1770365754000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":616.309568,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moin Alexx! Wann gehst du aktuell eig immer trainieren? Weil ich geh immer Montag,Mittwoch,Freitag, Samstag, Sonntag und hab dich schon wieder voll lang nicht gesehen haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:26.986468155Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD0F6F1F9AA1E7297F3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T08:15:54Z","event_id":"$MNisuxkojDaoTMBSZkMN5s6qRqjjCSflKjpJQF5N5DA","part_id":"","time":"2026-03-06T19:22:26.986585071Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2801,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101641122517221:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101641122517221%3Amatrix.theocloud.dev","duration":27.094167,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:27.012295594Z","message":"Request completed"} +{"level":"debug","transaction_id":"1452","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.021850985Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1452","time":"2026-03-06T19:22:27.021978378Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2794,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631044300:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631044300%3Amatrix.theocloud.dev","duration":213.293421,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917631044300 (WA)"},"time":"2026-03-06T19:22:27.023108145Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:27.023907489Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2800,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-199870648455306:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-199870648455306%3Amatrix.theocloud.dev","duration":43.737356,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/crKSWuMnVganZAFfyMcaNcwQ"},"time":"2026-03-06T19:22:27.026440736Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:27.027207114Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2803,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/tjJOoYadWQpBLfLsPbEvCKBA?user_id=%40whatsapp_lid-101641122517221%3Amatrix.theocloud.dev","duration":14.715684,"status_code":200,"response_length":54430,"response_mime":"image/jpeg","time":"2026-03-06T19:22:27.027197057Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2779,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946479453889_139?ts=1772482650000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":574.569979,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"weil es ihnen ja gut passt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.054190861Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABA7C1CFBD6B32B614D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:17:30Z","event_id":"$6crLtx9kRqyzUi3Wq_bSPnPJSL0750sxmV2U1NQp-AQ","part_id":"","time":"2026-03-06T19:22:27.05439047Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2805,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-77859284607025%3Amatrix.theocloud.dev","duration":36.404482,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-77859284607025","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:27.06388454Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2804,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101641122517221:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101641122517221%3Amatrix.theocloud.dev","duration":78.574928,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tjJOoYadWQpBLfLsPbEvCKBA"},"time":"2026-03-06T19:22:27.106056382Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:27.107294754Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2807,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-77859284607025:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-77859284607025%3Amatrix.theocloud.dev","duration":45.553183,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:27.109736578Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2809,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-118292240982236%3Amatrix.theocloud.dev","duration":33.952532,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-118292240982236","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:27.141567653Z","message":"Request completed"} +{"level":"debug","transaction_id":"1453","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.151264545Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1453","time":"2026-03-06T19:22:27.151398712Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2781,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946585114183_141?ts=1771243662000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":586.752974,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"danke","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.171996645Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE95F7454A5A59B63F9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T12:07:42Z","event_id":"$RAbWISE84MNqsCHg25JvlDXkSsKmGtDATHiUWwAAZKw","part_id":"","time":"2026-03-06T19:22:27.172121104Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2811,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-118292240982236:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-118292240982236%3Amatrix.theocloud.dev","duration":38.237212,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:27.180257721Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:27.182016488Z","message":""} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2783,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946621980113_142?ts=1771320421000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":572.509144,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber falls wir zu zweit arbeiten müssen, wollen wir dann zsm machen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.19460806Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC82FBC24586D483D8E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T09:27:01Z","event_id":"$kRL6ZJGTh2wJQbWI0NBU9V3WzlKJ2GfPP_u_EbfYdw4","part_id":"","time":"2026-03-06T19:22:27.194752563Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2780,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824946584175574_140?ts=1772658478420&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":612.220516,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$SM9MmkKV3ECtIzPA-FMsp_u4IAQYR7SiBlEN6FrHcfU","key":"❤️"}},"time":"2026-03-06T19:22:27.196525857Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AD512C230329260F652","target_part_id":"","reaction_sender_id":{"user_id":"4917641870516","is_from_me":true},"reaction_ts":"2026-03-04T21:07:58.42Z","event_id":"$kPQIaJbo8HSY7hoxXT27RID4ZZPWOxbcuiyWMzFovJk","time":"2026-03-06T19:22:27.1966661Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2777,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-1975802458312:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":898.017552,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/twjsBbkWYkNNKRnmtNYXgTYG","com.beeper.exclude_from_timeline":true,"displayname":"Melvin (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:27.217689163Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2814,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631044300:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917631044300%3Amatrix.theocloud.dev","duration":35.686225,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:27.218058279Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2818,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917680818036%3Amatrix.theocloud.dev","duration":26.980254,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917680818036","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:27.248220405Z","message":"Request completed"} +{"level":"debug","transaction_id":"1454","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.261977993Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1454","time":"2026-03-06T19:22:27.262093162Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2787,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946689796408_143?ts=1769530160000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":574.60965,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Falls ja ich würd jetzt vllt einkaufen gehen und das mitbringen, was du holen wolltest","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.264547697Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEEC4EBB68276B6795C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-27T16:09:20Z","event_id":"$7YS81JPxKmDnmvz7-Rzoul_hxAsEi7vXeaQk_VCx-lc","part_id":"","time":"2026-03-06T19:22:27.264694994Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2786,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946672233816_1?ts=1770049165000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":604.160236,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old voice message. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.audio","body":"","info":{"mimetype":"audio/ogg; codecs=opus","duration":159000,"size":351187},"filename":"Voice message.ogg","org.matrix.msc1767.audio":{"duration":159000,"waveform":[23,44,41,27,35,48,26,37,28,34,28,38,28,9,46,28,39,26,28,39,28,27,24,31,38,27,31,27,38,21,36,34,19,11,0,18,20,48,30,34,35,25,36,47,25,47,43,26,39,33,28,43,22,26,35,36,18,20,27,27,24,45,39,10]},"org.matrix.msc3245.voice":{}},"extra":{"info":{}},"whatsapp_media":{"key":"vOD0+/GSE3nptca4bxHwHURErQdoV+GSmhVHUjUGbV4=","length":351187,"type":"WhatsApp Audio Keys","sha256":"y6O9ZpPuIIwnnBXvGpfrTfNtzu1oDpcKk+PxHka8dBs=","enc_sha256":"j7nEzeQKUI7IEt+/rd/BdDddT7fJrPm0QWMixeNvyp8=","mime_type":"audio/ogg; codecs=opus"},"type_description":"voice message"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:27.277590939Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A4A7C6BC0666B1B228B","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-02T16:19:25Z","event_id":"$iaF7yXUOdt0cKajLdRSSjf1zAzwGmGlpX2B-XT2Bgu4","part_id":"","time":"2026-03-06T19:22:27.277799627Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2819,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680818036:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917680818036%3Amatrix.theocloud.dev","duration":34.512317,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:27.283140042Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2790,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946724553871_6?ts=1768577695000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":571.371415,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mamas Geburtstag","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.296082222Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3ADB4C405D9C4D039F96","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-16T15:34:55Z","event_id":"$X985P9wCoesw_wZ25sDxuFsIynAOgzFUdLc-tjVz_k0","part_id":"","time":"2026-03-06T19:22:27.296256199Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2810,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-77859284607025:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-77859284607025%3Amatrix.theocloud.dev","duration":207.605542,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sven (WA)"},"time":"2026-03-06T19:22:27.317540961Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:27.318399182Z","message":""} +{"level":"debug","transaction_id":"1455","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.335650696Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1455","time":"2026-03-06T19:22:27.336066536Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2813,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-118292240982236:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-118292240982236%3Amatrix.theocloud.dev","duration":176.548389,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917641816167 (WA)"},"time":"2026-03-06T19:22:27.357075352Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:27.357935738Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2795,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946847108157_144?ts=1765812747000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":535.820265,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Nee hab mich umentschieden und gehe morgen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.383136133Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5DF92BBA596080BAD7","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:32:27Z","event_id":"$Vxjo6k68nPvRNTviSrgAJ6ju9ruXM1LUUfykZwerwtk","part_id":"","time":"2026-03-06T19:22:27.383301939Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1456","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.396253268Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1456","time":"2026-03-06T19:22:27.396368228Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2796,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824946850094610_10?ts=1767226014082&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":564.319308,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$g5upsZR09B_gri9Bwnbznm-fHKILgyyK2d8RUeqsuxU","key":"❤️"}},"time":"2026-03-06T19:22:27.414535583Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A505B6EE4391DD1B9C2","target_part_id":"","reaction_sender_id":{"user_id":"4915735701057"},"reaction_ts":"2026-01-01T00:06:54.082Z","event_id":"$Ivku5i_gSNMOpJqvPcDA5izbG7SEQ0km4pMTTh7RloY","time":"2026-03-06T19:22:27.414673801Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2808,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":360.356596,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<74393 bytes>","time":"2026-03-06T19:22:27.442662996Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2822,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680818036:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917680818036%3Amatrix.theocloud.dev","duration":167.273693,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Felix (WA)"},"time":"2026-03-06T19:22:27.450605382Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"59622887026730@lid","alternate_jid":"4917680818036@s.whatsapp.net","time":"2026-03-06T19:22:27.451074512Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2798,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946925214653_145?ts=1771686287000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":528.59474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja aber so leicht ist es nicht wie es sich anhört","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.453920582Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1FC71945314171CC13","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T15:04:47Z","event_id":"$i8mBBVEZ_zE5NDxpM8--NJdbbCXiGnEXZ_YtOZNAOgM","part_id":"","time":"2026-03-06T19:22:27.454028697Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2826,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491732976885%3Amatrix.theocloud.dev","duration":24.766396,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491732976885","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:27.476427792Z","message":"Request completed"} +{"level":"debug","transaction_id":"1457","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.478081795Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1457","time":"2026-03-06T19:22:27.478208419Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:27.483483182Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2802,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824946987401875_11?ts=1770366303000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":508.50875,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old voice message. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.audio","body":"","info":{"mimetype":"audio/ogg; codecs=opus","duration":150000,"size":336885},"filename":"Voice message.ogg","org.matrix.msc1767.audio":{"duration":150000,"waveform":[0,3,88,86,44,11,77,61,97,54,0,56,13,98,12,70,11,72,87,50,93,3,64,65,39,1,82,0,25,0,1,90,81,55,92,11,42,28,92,41,30,80,35,65,68,63,65,73,71,0,72,80,62,99,48,51,39,61,79,45,28,72,80,0]},"org.matrix.msc3245.voice":{}},"extra":{"info":{}},"whatsapp_media":{"key":"b48TXYqR2P7gIaSnn0KxuSNnk1Q24P5CcidMk2BjFHU=","length":336885,"type":"WhatsApp Audio Keys","sha256":"3sNpEX2OcCsCrk8ceiHs9Na6eRKDAoXWBYxkEQEr2gk=","enc_sha256":"fO/8njr8KvPPueYtZv/QE7ZkONglbT9Oj0VTxh9okGY=","mime_type":"audio/ogg; codecs=opus"},"type_description":"voice message"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:27.49615151Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC7732AC5C010CA3E6BDC09B7A72EA2","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T08:25:03Z","event_id":"$xg4Pf4u-Qx2c_dT3BLkZS9aTk2QaGBQlQly9w_A0SLs","part_id":"","time":"2026-03-06T19:22:27.496380942Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2828,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491732976885:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491732976885%3Amatrix.theocloud.dev","duration":29.217789,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:27.505981033Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2829,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-77859284607025:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-77859284607025%3Amatrix.theocloud.dev","duration":31.47013,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:27.515230795Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:27.516277311Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:27.519502484Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2832,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-112798826770575%3Amatrix.theocloud.dev","duration":13.660996,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-112798826770575","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:27.530262654Z","message":"Request completed"} +{"level":"debug","transaction_id":"1458","content":{"pdu":1,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:27.543730257Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1458","time":"2026-03-06T19:22:27.543855694Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2834,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-112798826770575:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-112798826770575%3Amatrix.theocloud.dev","duration":18.333579,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:27.548957038Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2806,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947055352057_146?ts=1772482659000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":508.552749,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und ich glaub da merkst du die drei sind halt der kern","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.564032758Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A52A8E92E6E943FFC97","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:17:39Z","event_id":"$RThPXDYnAl010q-3E-2-oJLTr1DUhl93Bir5dAw16lY","part_id":"","time":"2026-03-06T19:22:27.564140874Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2835,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.759436,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41144 bytes>","time":"2026-03-06T19:22:27.594112819Z","message":"Request completed"} +{"level":"debug","transaction_id":"1459","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.630056762Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1459","time":"2026-03-06T19:22:27.630160687Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2812,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947177999513_147?ts=1771243666000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":471.293399,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"der erste hahaha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.64942226Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFB6C9150D7D994DA52","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T12:07:46Z","event_id":"$WtFdkowdXTe4F2AVl8LYg-BQEBJnKMRP5BvweGSpzZs","part_id":"","time":"2026-03-06T19:22:27.649535195Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2815,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947196386033_12?ts=1771321407000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":466.196385,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aiaiai","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.662714768Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2816,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947197252984_148?ts=1772696241000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":465.4504,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Morgenn ❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.662822395Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A5A431CD55D1D26F097","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:43:27Z","event_id":"$i9jYKjCJcLgl_4MFvHlyi59vtuIYbwfllVeB7XAPdyo","part_id":"","time":"2026-03-06T19:22:27.662852357Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A141C2357FC627EB8F9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T07:37:21Z","event_id":"$ay8qI7KDJthwbcdG90ced7o4Fg5NSth3q6X32-Ow094","part_id":"","time":"2026-03-06T19:22:27.6629794Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2831,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491732976885:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491732976885%3Amatrix.theocloud.dev","duration":176.001314,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mirko (WA)"},"time":"2026-03-06T19:22:27.682128178Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"88180091007092@lid","alternate_jid":"491732976885@s.whatsapp.net","time":"2026-03-06T19:22:27.682660655Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2842,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-198749678780508%3Amatrix.theocloud.dev","duration":38.296997,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-198749678780508","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:27.721612562Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2820,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947265557126_8?ts=1769530721000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":469.393062,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bring bitte Kartoffeln, Paprika, eine Pkg. Wildlachs und fettarme Milch mit.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.735094553Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A19B0764655ACC80706","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-27T16:18:41Z","event_id":"$yOCUgmOnz6AEcjaHogso_VXdTmDhf0_cDKEjEwcSitg","part_id":"","time":"2026-03-06T19:22:27.735235215Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1460","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.749875818Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1460","time":"2026-03-06T19:22:27.74999888Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2843,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198749678780508:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198749678780508%3Amatrix.theocloud.dev","duration":38.677218,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:27.760659943Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2821,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947278747037_149?ts=1770049906000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":481.65002,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old voice message. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.audio","body":"","info":{"mimetype":"audio/ogg; codecs=opus","duration":39000,"size":87721},"filename":"Voice message.ogg","org.matrix.msc1767.audio":{"duration":39000,"waveform":[8,11,77,92,67,49,65,60,74,22,47,53,15,31,85,74,67,57,82,65,92,45,73,66,22,11,32,76,81,76,88,95,34,82,15,53,62,56,72,49,67,52,21,21,73,33,42,39,21,72,69,87,94,77,57,56,32,69,80,72,46,45,26,54]},"org.matrix.msc3245.voice":{}},"extra":{"info":{}},"whatsapp_media":{"key":"8vl4fDb+9K8GXBPnG/Jrh4QH/OhWRT1LDL44HZ2WEE4=","length":87721,"type":"WhatsApp Audio Keys","sha256":"FRVh4G4kcE0+B8bIFRLHajzlr/xD2f5yRdjXAW+utak=","enc_sha256":"7YpbvMadxFkFdja6BteFad5cBy+wNe97VOrDpnmQgOA=","mime_type":"audio/ogg; codecs=opus"},"type_description":"voice message"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:27.76071463Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A91857455F96CE9042F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-02T16:31:46Z","event_id":"$8zbz63qv27yJ67Mpd6hu9LEnKZTvSWsFS97CFeC2ZmA","part_id":"","time":"2026-03-06T19:22:27.760964525Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2836,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-112798826770575:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-112798826770575%3Amatrix.theocloud.dev","duration":215.451196,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917643655863 (WA)"},"time":"2026-03-06T19:22:27.764591291Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:27.765187115Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2838,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":166.257838,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<37836 bytes>","time":"2026-03-06T19:22:27.76811525Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2823,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947297201723_150?ts=1768577700000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":488.895451,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ahhhh","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.786291964Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AECDA2D37B94DFB0F25","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-16T15:35:00Z","event_id":"$YxRDDjR8hgpIyQc0-4s7jRwNJ94H-szC3Jz2oG61zc8","part_id":"","time":"2026-03-06T19:22:27.786436956Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2833,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-118292240982236%3Amatrix.theocloud.dev","duration":290.321484,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<76558 bytes>","time":"2026-03-06T19:22:27.81902512Z","message":"Request completed"} +{"level":"debug","transaction_id":"1461","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.83109106Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1461","time":"2026-03-06T19:22:27.831208116Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2848,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-118292240982236:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-118292240982236%3Amatrix.theocloud.dev","duration":16.68684,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:27.83603065Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2849,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/sJBFLGLbEkaqHVimBAKphrdL?user_id=%40whatsapp_lid-118292240982236%3Amatrix.theocloud.dev","duration":18.045271,"status_code":200,"response_length":76558,"response_mime":"image/jpeg","time":"2026-03-06T19:22:27.854244241Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2824,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947384216871_151?ts=1765812754000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":495.010625,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab noch zu doll Muskelkater","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.879403918Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A844F18C1159BF28F26","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:32:34Z","event_id":"$1AAXMTFaTymtrGmTz_1Cz8iK8ZZVQR1TOC6xT_r1JJk","part_id":"","time":"2026-03-06T19:22:27.879557641Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2817,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-1975802458312:matrix.theocloud.dev?user_id=%40whatsapp_lid-1975802458312%3Amatrix.theocloud.dev","duration":664.613416,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/twjsBbkWYkNNKRnmtNYXgTYG","com.beeper.exclude_from_timeline":true,"displayname":"Melvin (WA)","membership":"join"},"time":"2026-03-06T19:22:27.883103041Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2850,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-118292240982236:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-118292240982236%3Amatrix.theocloud.dev","duration":60.388576,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sJBFLGLbEkaqHVimBAKphrdL"},"time":"2026-03-06T19:22:27.914900242Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:27.916084626Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2825,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947415303428_152?ts=1767225828000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":503.120562,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"nächste woche ist es wieder soweit","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.918581415Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A48CD4BA33EAA99285F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-01T00:03:48Z","event_id":"$HNuc-gwYsEOEvmKm1a9HJAZCZEQjzduH407MontOG_I","part_id":"","time":"2026-03-06T19:22:27.918728294Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:27.928098045Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2853,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-110608343158788%3Amatrix.theocloud.dev","duration":29.876261,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-110608343158788","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:27.946301229Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2845,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198749678780508:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198749678780508%3Amatrix.theocloud.dev","duration":186.018154,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Gianni_ (WA)"},"time":"2026-03-06T19:22:27.946842925Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:27.947440634Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2827,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947454712662_153?ts=1771686306000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":504.054143,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"entweder man macht es deterministisch und die ki kann nur bestimmte pattern ausführen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:27.958923112Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA89F5F982B9044303E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T15:05:06Z","event_id":"$IPjTtHrVlq3eaCSId1NyEBrmliihh3hqxM6ZrKkikWU","part_id":"","time":"2026-03-06T19:22:27.959103655Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1462","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:27.975625387Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1462","time":"2026-03-06T19:22:27.975726379Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2857,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-110608343158788:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-110608343158788%3Amatrix.theocloud.dev","duration":32.577129,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:27.979351539Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2830,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947497110234_154?ts=1770367794000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":513.856078,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja okay nach 19 Uhr ist der Grund dann","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.011111584Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF0FFBE746760194D99","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T08:49:54Z","event_id":"$Ra8BRU5EUm2Z3ifpidiO9INFVCAHx0mQ7vCd7Lhk_Kg","part_id":"","time":"2026-03-06T19:22:28.011265586Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1463","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.046302698Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1463","time":"2026-03-06T19:22:28.046612029Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2837,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947564936377_12?ts=1772482669000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":510.799294,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Lass uns erstmal abwarten was passiert","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.075885622Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A43D195406A8310F4B7","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:17:49Z","event_id":"$XyXzMCqo8p4fEPUHVQf1VL4POGEdV_J6tmP8X9ppmgM","part_id":"","time":"2026-03-06T19:22:28.07604151Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:28.104522044Z","message":""} +{"level":"debug","transaction_id":"1464","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.113622205Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1464","time":"2026-03-06T19:22:28.113729971Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-110608343158788:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-110608343158788%3Amatrix.theocloud.dev","duration":167.415892,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491756930361 (WA)"},"time":"2026-03-06T19:22:28.146950627Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:28.147886233Z","message":""} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2839,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947650311421_11?ts=1771243668000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":522.290572,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Warum? Haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.172751316Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3AFAA6341C15053C7E84","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T12:07:48Z","event_id":"$dBjhSawRYDZ96hQlg9dCSs5mQUBfA92-2fxIkCG52og","part_id":"","time":"2026-03-06T19:22:28.17291335Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2840,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947663788173_13?ts=1771321411000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":526.822423,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab ich nicht gesehen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.190756008Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A9AB6791C63F5A23F66","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-17T09:43:31Z","event_id":"$s4BA84ljjw3KuogqzhItgX6SYVxSgHTnxmde3BRRhm4","part_id":"","time":"2026-03-06T19:22:28.19089234Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2841,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947666075785_18?ts=1772697056000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":525.655989,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Morgen : )","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.191847782Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3BFE00BFC49B629AF084","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T07:50:56Z","event_id":"$rnVBFsXbDVFH7y90ohGTeKLHA1_GrRya_LnqiSodFFM","part_id":"","time":"2026-03-06T19:22:28.19199033Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2855,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":255.846672,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<930878 bytes>","time":"2026-03-06T19:22:28.195268723Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_count":100,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:22:28.195564016Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_count":100,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:22:28.195650341Z","message":"Sending backfill messages"} +{"level":"debug","transaction_id":"1465","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.222283409Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1465","time":"2026-03-06T19:22:28.222395087Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2856,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-112798826770575%3Amatrix.theocloud.dev","duration":304.319958,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34930 bytes>","time":"2026-03-06T19:22:28.244113429Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2844,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947736042172_155?ts=1769530735000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":520.128956,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Okee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.256287066Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0002AE7A4D97F67211","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-27T16:18:55Z","event_id":"$yPFFGitmP1vIRmYwZLnVom48yuiFdSf4vxiZVY0GPzE","part_id":"","time":"2026-03-06T19:22:28.256412991Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2867,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-112798826770575:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-112798826770575%3Amatrix.theocloud.dev","duration":24.095841,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:28.268654654Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2869,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/jWAgxYDjikATfKSDigCcIWQW?user_id=%40whatsapp_lid-112798826770575%3Amatrix.theocloud.dev","duration":27.035988,"status_code":200,"response_length":34930,"response_mime":"image/jpeg","time":"2026-03-06T19:22:28.295806371Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2847,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947787306142_156?ts=1768577702000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":509.464889,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"true","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.296932786Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF1F69E02492AD20854","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-16T15:35:02Z","event_id":"$RREPOHoh723MEEqEx7k2GWVTgdZ7euMZWK01PRT-M0g","part_id":"","time":"2026-03-06T19:22:28.297109486Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2846,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824947761768269_2?ts=1770049973692&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":544.389974,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$8zbz63qv27yJ67Mpd6hu9LEnKZTvSWsFS97CFeC2ZmA","key":"🙏"}},"time":"2026-03-06T19:22:28.306277533Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A91857455F96CE9042F","target_part_id":"","reaction_sender_id":{"user_id":"491783743461"},"reaction_ts":"2026-02-02T16:32:53.692Z","event_id":"$NtenJfRsdV5jX356DTSWMrbLKf2aRPfGK0s_TL9Gack","time":"2026-03-06T19:22:28.306411211Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:28.307010108Z","message":""} +{"level":"debug","transaction_id":"1466","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.30900578Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1466","time":"2026-03-06T19:22:28.309137781Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2870,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-112798826770575:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-112798826770575%3Amatrix.theocloud.dev","duration":50.744624,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jWAgxYDjikATfKSDigCcIWQW"},"time":"2026-03-06T19:22:28.346837278Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:28.347890009Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2873,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-127505180680381%3Amatrix.theocloud.dev","duration":21.575724,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-127505180680381","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:28.369749503Z","message":"Request completed"} +{"level":"debug","transaction_id":"1467","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.37341985Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1467","time":"2026-03-06T19:22:28.373538023Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2851,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947880504631_157?ts=1765812764000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":510.374863,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"macht heute also null Sinn","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.391034754Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB53C2446C25C4A5851","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:32:44Z","event_id":"$bO8inBg0C84dRta1qnF64Mdq05Cr3IKfetGz5XZVxGc","part_id":"","time":"2026-03-06T19:22:28.391219486Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2875,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127505180680381:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-127505180680381%3Amatrix.theocloud.dev","duration":29.93032,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:28.400077294Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2862,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-198749678780508%3Amatrix.theocloud.dev","duration":285.507679,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<76292 bytes>","time":"2026-03-06T19:22:28.400227036Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2854,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947919563606_158?ts=1767225839000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":500.015797,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"dann gehts wieder arbeiten","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.419708472Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A92D27168CBB2328897","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-01T00:03:59Z","event_id":"$w-1MmO43im4yTb1nEL3pUBliGyjIyqqt1t6LmKPtla4","part_id":"","time":"2026-03-06T19:22:28.419849204Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2878,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198749678780508:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-198749678780508%3Amatrix.theocloud.dev","duration":28.738531,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:28.429240676Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2880,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/GAxoRJyqwaRZaIEofreBGNQq?user_id=%40whatsapp_lid-198749678780508%3Amatrix.theocloud.dev","duration":23.257385,"status_code":200,"response_length":76292,"response_mime":"image/jpeg","time":"2026-03-06T19:22:28.452652831Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2858,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824947959973469_159?ts=1771686324000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":496.112945,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"oder halt alles, aber wie das geht weiß ich noch nicht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.456228683Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0C24C257C521E23335","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T15:05:24Z","event_id":"$FDqm4HUTNvZMtmb1pAKZrOYX65fcDkAQz9IuKwXZJMM","part_id":"","time":"2026-03-06T19:22:28.456388062Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1468","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.466636708Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1468","time":"2026-03-06T19:22:28.466726315Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2860,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948012222075_160?ts=1770367849000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":485.086396,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Die 30-40 Seiten schaffst du noch easy","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.497456468Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AAFD6F16A49CD9792FE","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T08:50:49Z","event_id":"$zd7ZvuI-6XKcoS4Q0QMBMIGlTkGUVZNl3nknH0nRfNs","part_id":"","time":"2026-03-06T19:22:28.497599714Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2881,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198749678780508:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-198749678780508%3Amatrix.theocloud.dev","duration":56.950314,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GAxoRJyqwaRZaIEofreBGNQq"},"time":"2026-03-06T19:22:28.509833485Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2884,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917629056660%3Amatrix.theocloud.dev","duration":25.702002,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917629056660","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:28.536585704Z","message":"Request completed"} +{"level":"debug","transaction_id":"1469","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.538113293Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1469","time":"2026-03-06T19:22:28.538219523Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2885,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917629056660:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917629056660%3Amatrix.theocloud.dev","duration":23.531586,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:28.560452113Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2861,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948076914188_161?ts=1772482673000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":506.629645,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.583695739Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A413602D4E94D037836","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:17:53Z","event_id":"$Gp6rVgMntcYBwUDw0jabQ0sopCGbc95f772M_zT_JEg","part_id":"","time":"2026-03-06T19:22:28.583842757Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2877,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127505180680381:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-127505180680381%3Amatrix.theocloud.dev","duration":188.053146,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Margarita Pantzali (WA)"},"time":"2026-03-06T19:22:28.588354494Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:28.589153349Z","message":""} +{"level":"debug","transaction_id":"1470","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.622140662Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1470","time":"2026-03-06T19:22:28.622216161Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2874,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-110608343158788%3Amatrix.theocloud.dev","duration":303.844402,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<92374 bytes>","time":"2026-03-06T19:22:28.661483825Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2852,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-130794756513956:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":781.393707,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Josi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:28.665630426Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2863,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948173788892_12?ts=1771243672000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":529.27158,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ah wir zusammen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.703208607Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3A890909364C894E520C","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T12:07:52Z","event_id":"$JFchfp9c89B26rahZDr4Ojc8keuGvOxHZ4o3c7emaNY","part_id":"","time":"2026-03-06T19:22:28.703396552Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2888,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-110608343158788:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-110608343158788%3Amatrix.theocloud.dev","duration":49.082659,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:28.710855491Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2864,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948191788206_14?ts=1771489104000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":534.955269,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich bin zu spät 😔","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.726891261Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A5C71CD83AE91DFCC4D","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-19T08:18:24Z","event_id":"$58evsyumNc9h6Ek0G3S_yw_8nHifHoTFf0-IeluWr_s","part_id":"","time":"2026-03-06T19:22:28.727028641Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2865,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948192795191_19?ts=1772732393000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":535.643495,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Helloo","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.72855155Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AFF9FECCA5D08E764D4","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T17:39:53Z","event_id":"$pyEZzXR8YBdLotQnQIxAuKSa5A_krTATQqagfqvPsZg","part_id":"","time":"2026-03-06T19:22:28.728683692Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1471","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.737733845Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1471","time":"2026-03-06T19:22:28.738117209Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2891,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/nCEmcylWFePFNVPzAgtHTexF?user_id=%40whatsapp_lid-110608343158788%3Amatrix.theocloud.dev","duration":29.206405,"status_code":200,"response_length":92374,"response_mime":"image/jpeg","time":"2026-03-06T19:22:28.74021485Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:28.754798252Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2868,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948256943373_9?ts=1769792100000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":537.484605,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Theo,\nbist du heute zum Abendessen zu Hause?","format":"org.matrix.custom.html","formatted_body":"Hey Theo,\u003cbr\u003ebist du heute zum Abendessen zu Hause?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.794547338Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A15689CB8BE2D399BD9","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-30T16:55:00Z","event_id":"$QH7zRuje5-hv4alzYya7WIWmylKUvnNtovcxRpkrw-c","part_id":"","time":"2026-03-06T19:22:28.794698546Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917629056660:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917629056660%3Amatrix.theocloud.dev","duration":240.064428,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Gianni_ (WA)"},"time":"2026-03-06T19:22:28.800672429Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:28.80126518Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2894,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-110608343158788:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-110608343158788%3Amatrix.theocloud.dev","duration":62.725636,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nCEmcylWFePFNVPzAgtHTexF"},"time":"2026-03-06T19:22:28.803244718Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:28.804174457Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2866,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948195989844_1?ts=1772188855000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":624.920622,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Was machen wir am Dienstag","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.821055319Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3A9D71AB0C6CBAB7AD7E","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-02-27T10:40:55Z","event_id":"$AQZY8-aoB3bKTdAcKFuc5rPOn5FkLHIXafhRXpL4cF8","part_id":"","time":"2026-03-06T19:22:28.821166578Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2871,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948298093144_162?ts=1768577712000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":528.130288,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ja dann sehen wir uns bestimmt noch später","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.826413264Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5C4E36A0EE61B7F7F3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-16T15:35:12Z","event_id":"$_sjCZVoBKivhWA4GkAfl5vXGY-RGJj0mHfQFYIsIbTY","part_id":"","time":"2026-03-06T19:22:28.826551831Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1472","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.831130826Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1472","time":"2026-03-06T19:22:28.831290625Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2897,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-43542495891687%3Amatrix.theocloud.dev","duration":35.281071,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-43542495891687","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:28.839729239Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2872,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948307053899_163?ts=1770104402000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":535.603685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old voice message. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.audio","body":"","info":{"mimetype":"audio/ogg; codecs=opus","duration":75000,"size":170365},"filename":"Voice message.ogg","org.matrix.msc1767.audio":{"duration":75000,"waveform":[24,88,74,27,79,89,74,60,51,87,94,61,64,90,79,45,67,73,62,97,78,20,83,57,61,55,86,85,76,66,76,36,49,86,88,60,68,67,54,88,70,86,36,84,50,85,43,60,88,38,95,79,35,61,87,87,28,39,53,86,71,85,56,53]},"org.matrix.msc3245.voice":{}},"extra":{"info":{}},"whatsapp_media":{"key":"ldntynpvtv0XeotyJZw3AYUnKbRPYdjPYwRgd/c1uFg=","length":170365,"type":"WhatsApp Audio Keys","sha256":"SbJ7QqVtSTlqDranvmqdO2RGhY6By2eh2OyeCL1/5Lg=","enc_sha256":"4npzv+dl1PqZDnXXvEoVkCqglIbA1cXYGYnGMW9RyIo=","mime_type":"audio/ogg; codecs=opus"},"type_description":"voice message"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:28.842933111Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1E9954A5C58F88516F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T07:40:02Z","event_id":"$DdZWc88hw_QtFncOR9hi-3htRC_P62S7D1COZMBjiEM","part_id":"","time":"2026-03-06T19:22:28.843168689Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2900,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-43542495891687:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-43542495891687%3Amatrix.theocloud.dev","duration":39.346655,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:28.87943656Z","message":"Request completed"} +{"level":"debug","transaction_id":"1473","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:28.926291531Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1473","time":"2026-03-06T19:22:28.926429679Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2876,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948392129111_164?ts=1765812786000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":566.834884,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber wie liefs so bei dir in der Klausur?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.959116182Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A45097F4D974D781BA8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:33:06Z","event_id":"$i1LNPwRtv-KuT8DlOJDkcPlr-txCqB3z9L0ujg08lBc","part_id":"","time":"2026-03-06T19:22:28.959306013Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:28.965579868Z","message":""} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2879,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948421207006_11?ts=1767226018000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":568.3198,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gänsehaut","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$HNuc-gwYsEOEvmKm1a9HJAZCZEQjzduH407MontOG_I"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:28.989694636Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:ACF6FB06D9FD76EF83F55E455EC3CEB1","sender_id":{"user_id":"4915735701057"},"message_ts":"2026-01-01T00:06:58Z","event_id":"$UkSFr-YJuC5fOtW0YICm0Z_x9FNy_Qoz6Pf4sRX6Ai0","part_id":"","time":"2026-03-06T19:22:28.989880836Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2882,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948457115748_11?ts=1771689426000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":580.111608,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"mhm","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.037412369Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3EB05298F64EA436EE7745","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-21T15:57:06Z","event_id":"$avxDTAmH1WOQyob-UN0WOWABr15od4Q5an2ZRCyi_vI","part_id":"","time":"2026-03-06T19:22:29.037563088Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1474","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:29.046225757Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1474","time":"2026-03-06T19:22:29.046362159Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2895,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-127505180680381%3Amatrix.theocloud.dev","duration":312.858866,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24979 bytes>","time":"2026-03-06T19:22:29.078434678Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2883,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948498492996_165?ts=1770367938000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":585.543377,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Heute geh ich wahrscheinlich 16/17 Uhr und morgen so Frühnachmittag auch, also morgen könnte die Wahrscheinlichkeit groß sein, dass wir uns sehen :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.084189187Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A73418D06585F680D70","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T08:52:18Z","event_id":"$1zjpid1BgZI9Yv6ygvipXL33mBTlAwu3E0_bLtCPmFA","part_id":"","time":"2026-03-06T19:22:29.08437406Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-43542495891687:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-43542495891687%3Amatrix.theocloud.dev","duration":207.676222,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915734484578 (WA)"},"time":"2026-03-06T19:22:29.087349687Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:29.088288506Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2907,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127505180680381:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-127505180680381%3Amatrix.theocloud.dev","duration":28.375212,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:29.107162734Z","message":"Request completed"} +{"level":"debug","transaction_id":"1475","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:29.128179022Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1475","time":"2026-03-06T19:22:29.128285392Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2909,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/TmwMKWAePfUzkYDsWXddFsMS?user_id=%40whatsapp_lid-127505180680381%3Amatrix.theocloud.dev","duration":27.53103,"status_code":200,"response_length":24979,"response_mime":"image/jpeg","time":"2026-03-06T19:22:29.134862223Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2887,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948584754128_166?ts=1772482680000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":580.951741,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"viel Spaß beim\nYt gucken","format":"org.matrix.custom.html","formatted_body":"viel Spaß beim\u003cbr\u003eYt gucken","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.165847229Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7D68424EBE911F45A4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:18:00Z","event_id":"$DV8WD4-0NSBAdFe10GVbFmXqmgHG0cFLd0xIp7tqex8","part_id":"","time":"2026-03-06T19:22:29.165983701Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2910,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127505180680381:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-127505180680381%3Amatrix.theocloud.dev","duration":62.510032,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TmwMKWAePfUzkYDsWXddFsMS"},"time":"2026-03-06T19:22:29.197633884Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:29.198474016Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1476","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:29.205675307Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1476","time":"2026-03-06T19:22:29.205741587Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2912,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-32156537630722%3Amatrix.theocloud.dev","duration":31.225193,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-32156537630722","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:29.229934089Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:29.255772633Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2913,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-32156537630722:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-32156537630722%3Amatrix.theocloud.dev","duration":39.208088,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:29.269528475Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2890,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948704254983_167?ts=1771243677000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":565.140023,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"weil niemand das hat","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.269546564Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABF7535AF20B35B2D4C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T12:07:57Z","event_id":"$_AnxLwMqpXrBLSgI-Gi8LxrZ0mQHOuyVzWbWZBHZcJg","part_id":"","time":"2026-03-06T19:22:29.269665296Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2904,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917629056660%3Amatrix.theocloud.dev","duration":314.67609,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<76292 bytes>","time":"2026-03-06T19:22:29.289469473Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2892,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948728064122_15?ts=1771489110000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":563.734169,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber ich verspreche ich werde da sein!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.291938464Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A05464529271E2B61D8","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-19T08:18:30Z","event_id":"$HQ2eA3Q9hfgyhTq4HqMjlADT-bAuJfEPTx1toiRmwDg","part_id":"","time":"2026-03-06T19:22:29.292077869Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2893,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948729483036_168?ts=1772733080000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":567.230122,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hellooo Maus","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.296856403Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF94BC1EBD2A2D83244","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T17:51:20Z","event_id":"$6o2WsLOoRFShiSg3tOL_u4NDG7IKSdGtUuVjkcHElEU","part_id":"","time":"2026-03-06T19:22:29.297045396Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2914,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-43542495891687:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-43542495891687%3Amatrix.theocloud.dev","duration":45.145165,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:29.301257021Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:29.302392236Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1477","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:29.32030355Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1477","time":"2026-03-06T19:22:29.320420815Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2917,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917629056660:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917629056660%3Amatrix.theocloud.dev","duration":36.459867,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:29.326288538Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2920,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-67362887889042%3Amatrix.theocloud.dev","duration":36.234695,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-67362887889042","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:29.338923413Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2921,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BzkUHsdYKFIVTTcQGFfpoOVq?user_id=%40whatsapp_4917629056660%3Amatrix.theocloud.dev","duration":27.092351,"status_code":200,"response_length":76292,"response_mime":"image/jpeg","time":"2026-03-06T19:22:29.353512891Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2922,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67362887889042:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-67362887889042%3Amatrix.theocloud.dev","duration":25.80928,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:29.36508756Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2896,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948795701550_169?ts=1769792632000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":574.984842,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Mama, nein tatsächlich geh ich spontan zu Ana nach dem Training :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.370832641Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA4C0C0F3E6DCF0A0F8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-30T17:03:52Z","event_id":"$ZchB6nwiOwa9vYmu9tJrdpbHvtB1XaOD-WOsTwcYA3U","part_id":"","time":"2026-03-06T19:22:29.370985456Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2899,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948827267923_7?ts=1768592149000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":573.786489,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich glaube wird nichts bin immer noch am putzen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.401194305Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A5749B6508FA9765723","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-16T19:35:49Z","event_id":"$xwoSHtXV6ZX96bnKHdD-YMlzWYIaGs2KHk9nxsLP56Q","part_id":"","time":"2026-03-06T19:22:29.401296485Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1478","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:29.40776094Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1478","time":"2026-03-06T19:22:29.407907748Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2901,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948844074542_3?ts=1770114243000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":569.004462,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moin broski, ahh verstehe. Ja, es wäre ja auf für das Unternehmen unpraktisch, die Stelle so lange unbesetzt zu lassen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.413208841Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A0BFCCAE23A1F29463B","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-03T10:24:03Z","event_id":"$l5XC5O00scsg9ILTMewThFVX5lYTO24XqfpjORv0whM","part_id":"","time":"2026-03-06T19:22:29.413354811Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2923,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917629056660:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917629056660%3Amatrix.theocloud.dev","duration":66.903876,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BzkUHsdYKFIVTTcQGFfpoOVq"},"time":"2026-03-06T19:22:29.420622941Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"198749678780508@lid","alternate_jid":"4917629056660@s.whatsapp.net","time":"2026-03-06T19:22:29.421145081Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2898,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948821781818_1?ts=1772192132000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":609.940028,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Omg was für ein guter Sticker!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.43184358Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AC84C5839C44A4615BC","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-02-27T11:35:32Z","event_id":"$-jfuf0hPpfCJ2uStFMa4O2RlIM_DrBUgRVDPYRPvRoc","part_id":"","time":"2026-03-06T19:22:29.431976141Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2928,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":24.546951,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-206734241087531","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:29.446349178Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2930,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-206734241087531:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":32.669111,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:29.479363729Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2915,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-32156537630722:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-32156537630722%3Amatrix.theocloud.dev","duration":224.757462,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Aaron (WA)"},"time":"2026-03-06T19:22:29.494440357Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:29.49519165Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2889,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-130794756513956:matrix.theocloud.dev?user_id=%40whatsapp_lid-130794756513956%3Amatrix.theocloud.dev","duration":836.680449,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Josi (WA)","membership":"join"},"time":"2026-03-06T19:22:29.502865632Z","message":"Request completed"} +{"level":"debug","transaction_id":"1479","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:29.505016353Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1479","time":"2026-03-06T19:22:29.505141789Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2903,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948960243644_11?ts=1765812840000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":571.969613,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Not great not terrible","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.532357552Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A82A07DD8150466DE2C","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:34:00Z","event_id":"$L1XqMgN1O2EeEIczcStbSYdTO8LeIuaXuw6Xig6F_gY","part_id":"","time":"2026-03-06T19:22:29.532483547Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2905,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824948990797096_12?ts=1767226026000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":570.747933,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dann sehen wir uns ja","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.561715723Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:AC56E8D996F17B460075A9777B90AF19","sender_id":{"user_id":"4915735701057"},"message_ts":"2026-01-01T00:07:06Z","event_id":"$t2pTKKWIfA1lavBmuHGNf5uOLxpQh_eBD442YBMVwW4","part_id":"","time":"2026-03-06T19:22:29.561941803Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2924,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67362887889042:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-67362887889042%3Amatrix.theocloud.dev","duration":216.886942,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915151533302 (WA)"},"time":"2026-03-06T19:22:29.58213542Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:29.582890274Z","message":""} +{"level":"debug","transaction_id":"1480","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:29.588695279Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1480","time":"2026-03-06T19:22:29.588946432Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2906,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949038399169_12?ts=1771689441000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":575.519972,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"am Donnerstag hab ich meine zweite Klausur und danach bisschen Zeit, wenn du willst können wir dann mal was zocken","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.614063366Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3EB0FEBBD9C9EF725B50B3","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-21T15:57:21Z","event_id":"$WdWwh1Zwcqpr5jgWqFIJ8vqFKSrPWfVSE9B5MJpranE","part_id":"","time":"2026-03-06T19:22:29.614188313Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:29.666045943Z","message":""} +{"level":"debug","transaction_id":"1481","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:29.673697995Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1481","time":"2026-03-06T19:22:29.673857235Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2908,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824949085131987_12?ts=1770374975297&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":591.590454,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$1zjpid1BgZI9Yv6ygvipXL33mBTlAwu3E0_bLtCPmFA","key":"👍🏻"}},"time":"2026-03-06T19:22:29.676876025Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A73418D06585F680D70","target_part_id":"","reaction_sender_id":{"user_id":"4917657607100"},"reaction_ts":"2026-02-06T10:49:35.297Z","event_id":"$easCNnoTcvR5ceVGJM39bZ3xsAwEjpTkx5UPvxKFB_I","time":"2026-03-06T19:22:29.677023392Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2931,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-206734241087531:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":206.289785,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Julio Cela (WA)"},"time":"2026-03-06T19:22:29.685862761Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:29.686666366Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2936,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-32156537630722:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-32156537630722%3Amatrix.theocloud.dev","duration":30.459373,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:29.696799981Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:29.697702901Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2938,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-95765573664918%3Amatrix.theocloud.dev","duration":30.955813,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-95765573664918","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:29.728929003Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2911,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949166817337_13?ts=1772482685000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":566.099306,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Und glaub mir ich bin profi im face to Face diskutieren","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.733062404Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A591D7036975C09E553","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:18:05Z","event_id":"$mtmst3v1_tQAlw38zSExLP5ytQjpTMeil_qfU4lzYmM","part_id":"","time":"2026-03-06T19:22:29.733210749Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:29.736478666Z","message":""} +{"level":"debug","transaction_id":"1482","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:29.754310918Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1482","time":"2026-03-06T19:22:29.754430907Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2939,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95765573664918:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-95765573664918%3Amatrix.theocloud.dev","duration":28.773523,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:29.758019749Z","message":"Request completed"} +{"level":"warn","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","started_at":"2026-03-06T19:21:59.794631012Z","time":"2026-03-06T19:22:29.794661834Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2916,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949271399967_170?ts=1771243679000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":539.708799,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"jo","m.mentions":{"user_ids":["@whatsapp_491637362958:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$JFchfp9c89B26rahZDr4Ojc8keuGvOxHZ4o3c7emaNY"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.811238463Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5C8053D14F1CD0C6CC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T12:07:59Z","event_id":"$oZIt_qK8WWp5gl0_HJiyEIZAzH37A3OtXrKwo5jBw0g","part_id":"","time":"2026-03-06T19:22:29.811320108Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2918,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949292817149_16?ts=1771489124000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":533.424607,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Es sind so 4 S1en ausgefallen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.826401346Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A6FACAC0CA44A4D1A15","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-19T08:18:44Z","event_id":"$IJfVB9DdXhPc2YH3KvcR67ZSsJcG9Z2SVHy_vJfVOqI","part_id":"","time":"2026-03-06T19:22:29.82655444Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2919,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949297912418_171?ts=1772733091000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":534.464558,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie gehts dir wie war dein Tag so","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.832482227Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2FDF661BD2BD235921","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T17:51:31Z","event_id":"$soXxBU38wmpeGRKqahF6I4vxTbwdvPgbaY62Q0rKP-g","part_id":"","time":"2026-03-06T19:22:29.832601099Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:29.848279138Z","message":""} +{"level":"debug","transaction_id":"1483","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:29.900525369Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1483","time":"2026-03-06T19:22:29.90060932Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2925,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949371773345_172?ts=1769792647000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":533.435922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Fragst du wegen was wichtigem oder einfach wegen Essen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.905359567Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8C52189E53DF5E587C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-30T17:04:07Z","event_id":"$XzF_qC2NddANMT0L97qRfPHN5hxgBBLVO4I5pjvHmMU","part_id":"","time":"2026-03-06T19:22:29.905501906Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2926,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949401880365_173?ts=1768593529000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":532.310693,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bin auch lange zu Hause haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.934307905Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9CC9A88CE07ECBC05C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-16T19:58:49Z","event_id":"$vn_w5SKS0c0r3q7szoahH3HW0OoerydlDedVuO29-Cw","part_id":"","time":"2026-03-06T19:22:29.934420491Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2927,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949414150803_4?ts=1770114282000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":529.273955,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber solche recruiter kriegen immer mal wieder solche Anfragen, und es ist gar nicht unwahrscheinlich, dass er sich nochmal bei dir in Zukunft melden wird","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.943559344Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A5F828D34DDEC2FD5F4","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-03T10:24:42Z","event_id":"$AT2c3ti8rM8G6R0hc9KcgjTPaq_CgeiQ3KgJ5DEjm_s","part_id":"","time":"2026-03-06T19:22:29.943663269Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2941,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95765573664918:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-95765573664918%3Amatrix.theocloud.dev","duration":190.444124,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Raha (WA)"},"time":"2026-03-06T19:22:29.948640923Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:29.949484617Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2929,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949432829822_2?ts=1772192139000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":530.596626,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wollen wir Wizard spielen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:29.963567739Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A1E5D961B50BA3A2592","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-02-27T11:35:39Z","event_id":"$onkRKbf0xKxWDT36b5JEyobDqX0n_ecCP2b4_8Bi7X0","part_id":"","time":"2026-03-06T19:22:29.963757151Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1484","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:29.996896999Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1484","time":"2026-03-06T19:22:29.997031864Z","message":"Finished dispatching events from transaction"} +{"level":"warn","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","started_at":"2026-03-06T19:22:00.030663244Z","time":"2026-03-06T19:22:30.031054867Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","started_at":"2026-03-06T19:22:00.031469153Z","time":"2026-03-06T19:22:30.032163542Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2933,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949533235747_12?ts=1765812850000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":533.018195,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also ich konnte alle Fragen mit den Folien beantworten!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.066421774Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AD1360E2DF1EE405861","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:34:10Z","event_id":"$zR8Wm3msXdOXDP9miKIyHJ5gujz8wJQ2Tg9qPcWCiss","part_id":"","time":"2026-03-06T19:22:30.066565858Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2942,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-67362887889042%3Amatrix.theocloud.dev","duration":296.655613,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34456 bytes>","time":"2026-03-06T19:22:30.091125591Z","message":"Request completed"} +{"level":"debug","transaction_id":"1485","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.093624126Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1485","time":"2026-03-06T19:22:30.093783715Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2934,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949563596784_174?ts=1767261586000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":536.869155,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oder","m.mentions":{"user_ids":["@whatsapp_4915735701057:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$UkSFr-YJuC5fOtW0YICm0Z_x9FNy_Qoz6Pf4sRX6Ai0"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.100599197Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC0FF7BA6FB20A9518F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-01T09:59:46Z","event_id":"$YVOeovzulw3d3DNOlEu7UU8phs5dgmrTjFGexpga3dg","part_id":"","time":"2026-03-06T19:22:30.100736158Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:30.125840381Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2952,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67362887889042:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-67362887889042%3Amatrix.theocloud.dev","duration":39.744546,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:30.131260904Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2935,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949615206613_13?ts=1771689448000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":543.101874,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber hab kein Discord mehr","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.15844852Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3EB0954F7A97440601CD2B","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-21T15:57:28Z","event_id":"$DBQdkIegJ-wiJBoCL0RNqP9p_l8p5XYRS_8NBW02gaA","part_id":"","time":"2026-03-06T19:22:30.158582198Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2954,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BHmhRGUonBTzpdzAQwzplAFy?user_id=%40whatsapp_lid-67362887889042%3Amatrix.theocloud.dev","duration":41.167791,"status_code":200,"response_length":34456,"response_mime":"image/jpeg","time":"2026-03-06T19:22:30.172738305Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2946,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":320.006447,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43679 bytes>","time":"2026-03-06T19:22:30.176127049Z","message":"Request completed"} +{"level":"debug","transaction_id":"1486","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.193457555Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1486","time":"2026-03-06T19:22:30.193617074Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2958,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-206734241087531:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":19.570276,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:30.19602698Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2957,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67362887889042:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-67362887889042%3Amatrix.theocloud.dev","duration":42.252231,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BHmhRGUonBTzpdzAQwzplAFy"},"time":"2026-03-06T19:22:30.215370338Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2959,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/adSGDEQiJCQpOqQgCfHEjoWp?user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":19.992402,"status_code":200,"response_length":43679,"response_mime":"image/jpeg","time":"2026-03-06T19:22:30.216129313Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:30.216541382Z","message":"Updating ghost info in IfNecessary call"} +{"level":"warn","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","started_at":"2026-03-06T19:22:00.219385341Z","time":"2026-03-06T19:22:30.219885427Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","started_at":"2026-03-06T19:22:00.220374097Z","time":"2026-03-06T19:22:30.220988235Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2937,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949677694017_175?ts=1770368053000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":555.709719,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old voice message. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.audio","body":"","info":{"mimetype":"audio/ogg; codecs=opus","duration":85000,"size":195869},"filename":"Voice message.ogg","org.matrix.msc1767.audio":{"duration":85000,"waveform":[10,51,34,10,34,42,18,26,54,49,41,8,63,74,66,64,49,49,30,34,21,26,38,38,42,38,22,39,28,38,21,33,37,57,16,43,18,60,59,19,48,53,69,21,60,56,30,47,43,41,21,42,42,67,50,52,51,62,76,61,40,16,55,28]},"org.matrix.msc3245.voice":{}},"extra":{"info":{}},"whatsapp_media":{"key":"EDVJ4fBPZB0SCVA++pJpsmLVdwi31lZEGPkBfWB0pMM=","length":195869,"type":"WhatsApp Audio Keys","sha256":"rNqTIjq7467rFMuAHwqcYu5wSiqC6CTG3utIDZu5eks=","enc_sha256":"rsl6Khcr8SzmHlNQQGqULZf/NjFpNLB4tr+gfNGwlok=","mime_type":"audio/ogg; codecs=opus"},"type_description":"voice message"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:30.233718514Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFB8DB331C1CD0F97F8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T08:54:13Z","event_id":"$fFKfpVHxwV5kObyWCFOD3sgm4FU7aVLiexg4566_PBY","part_id":"","time":"2026-03-06T19:22:30.233953254Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2961,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-182218383188163%3Amatrix.theocloud.dev","duration":33.189925,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-182218383188163","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:30.25005279Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2932,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-27956059590853:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":770.780904,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AvlyffuDHEMFxceTihjFMwRW","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:30.274560631Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2960,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-206734241087531:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":61.330677,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/adSGDEQiJCQpOqQgCfHEjoWp"},"time":"2026-03-06T19:22:30.27773007Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2963,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182218383188163:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-182218383188163%3Amatrix.theocloud.dev","duration":39.095083,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:30.289652903Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2940,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949734609339_176?ts=1772482696000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":561.492723,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"True aber","m.mentions":{"user_ids":["@whatsapp_491736748726:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$mtmst3v1_tQAlw38zSExLP5ytQjpTMeil_qfU4lzYmM"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.296261442Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF77CF5FD4F2F1B476C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:18:16Z","event_id":"$usDqSiwgN8e2NlfLkSEBb3MgW7T7mSXG9Fg0cf-5Z14","part_id":"","time":"2026-03-06T19:22:30.296449248Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2965,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915226357423%3Amatrix.theocloud.dev","duration":32.672743,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915226357423","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:30.311448281Z","message":"Request completed"} +{"level":"debug","transaction_id":"1487","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.313871107Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1487","time":"2026-03-06T19:22:30.314022316Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2968,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226357423:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915226357423%3Amatrix.theocloud.dev","duration":14.179574,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:30.326022464Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2943,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949811817804_13?ts=1771243685000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":551.670255,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok easy","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.36361594Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3A7B5AA59D9902A6AA4A","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T12:08:05Z","event_id":"$P2dHm6YFr0W5fhcq4wHwqoonj0RE9FlHjnfH182MkpI","part_id":"","time":"2026-03-06T19:22:30.363785377Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1488","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.384589974Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1488","time":"2026-03-06T19:22:30.384939394Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2944,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949827979500_177?ts=1771493402000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":562.384748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Perfekt","m.mentions":{"user_ids":["@whatsapp_4915150515988:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$IJfVB9DdXhPc2YH3KvcR67ZSsJcG9Z2SVHy_vJfVOqI"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.390537387Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEE314651C6A9D62D8B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-19T09:30:02Z","event_id":"$1LuZFIdWD4hxmD43X_ejj_cJLaqFCFdkq97WPYR3R58","part_id":"","time":"2026-03-06T19:22:30.390690691Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2945,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949833370620_20?ts=1772733618000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":561.273489,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Joaaa","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.394763399Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AB54EE4CF42B0ABCC5A","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:00:18Z","event_id":"$_eZNDM2LOAFoco2KG2jCcRsxShWymeM7s44o1u_8ZWo","part_id":"","time":"2026-03-06T19:22:30.394890861Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2955,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-95765573664918%3Amatrix.theocloud.dev","duration":280.789001,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<33920 bytes>","time":"2026-03-06T19:22:30.418249099Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2973,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95765573664918:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-95765573664918%3Amatrix.theocloud.dev","duration":28.904337,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:30.447600775Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2947,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949906288748_10?ts=1769792690000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":562.625494,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich frage nur wegen dem Essen.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.469079628Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A82CEAC9048760023CC","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-30T17:04:50Z","event_id":"$sRtsPbr1awYfz44jYnRQubh9hg_hMt-mmh3BLRuQGYI","part_id":"","time":"2026-03-06T19:22:30.469225878Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2974,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wAsGvRuajQqSBvCWvpxVfrUV?user_id=%40whatsapp_lid-95765573664918%3Amatrix.theocloud.dev","duration":25.311863,"status_code":200,"response_length":33920,"response_mime":"image/jpeg","time":"2026-03-06T19:22:30.47308019Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2966,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182218383188163:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-182218383188163%3Amatrix.theocloud.dev","duration":188.004116,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915225973389 (WA)"},"time":"2026-03-06T19:22:30.477886382Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:30.478754869Z","message":""} +{"level":"debug","transaction_id":"1489","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.483718625Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1489","time":"2026-03-06T19:22:30.483838404Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2948,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949935018689_178?ts=1768593532000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":569.581778,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"also kein Stress","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.504732539Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFC3458B58214E7DB4E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-16T19:58:52Z","event_id":"$WWyo92QsAHK6bU_o_x6YDqQwpg1VvtOXKbTfbmbDOf4","part_id":"","time":"2026-03-06T19:22:30.504893316Z","message":"Sent message part to Matrix"} +{"level":"warn","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","started_at":"2026-03-06T19:22:00.504833518Z","time":"2026-03-06T19:22:30.505234634Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","started_at":"2026-03-06T19:22:00.505646831Z","time":"2026-03-06T19:22:30.505702158Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","started_at":"2026-03-06T19:22:00.506431718Z","time":"2026-03-06T19:22:30.50688752Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","started_at":"2026-03-06T19:22:00.507114984Z","time":"2026-03-06T19:22:30.507979293Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2949,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824949944201682_5?ts=1770114286000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":564.649032,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"💪🏼","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.508975662Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A374EB67AF84779C4A3","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-03T10:24:46Z","event_id":"$8fLI3T44QCoRJdsA--wzZ5wYzSqORG_ZtNFbbu8GL5I","part_id":"","time":"2026-03-06T19:22:30.509106267Z","message":"Sent message part to Matrix"} +{"level":"warn","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","started_at":"2026-03-06T19:22:00.516316206Z","time":"2026-03-06T19:22:30.517064228Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","started_at":"2026-03-06T19:22:00.517355737Z","time":"2026-03-06T19:22:30.518130719Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2976,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95765573664918:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-95765573664918%3Amatrix.theocloud.dev","duration":56.756152,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wAsGvRuajQqSBvCWvpxVfrUV"},"time":"2026-03-06T19:22:30.530210976Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:30.531359531Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2969,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226357423:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915226357423%3Amatrix.theocloud.dev","duration":209.897414,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Julio Cela (WA)"},"time":"2026-03-06T19:22:30.536140579Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:30.53692798Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2979,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":29.216811,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-40566117134352","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:30.560919686Z","message":"Request completed"} +{"level":"debug","transaction_id":"1490","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.565696335Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1490","time":"2026-03-06T19:22:30.565804381Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2950,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824949964543225_1?ts=1772206078000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":619.273949,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$onkRKbf0xKxWDT36b5JEyobDqX0n_ecCP2b4_8Bi7X0","key":"🔥"}},"time":"2026-03-06T19:22:30.583960701Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363192861790277@g.us:266657507356684@lid:3A1E5D961B50BA3A2592","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2026-02-27T15:27:58Z","event_id":"$9Kt53pU2QXe4dnhqKT8WCTTJGIOpPON_-ytAj5F3gi4","time":"2026-03-06T19:22:30.584109045Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2980,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40566117134352:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":32.09012,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:30.593376687Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2951,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950067325182_13?ts=1765812859000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":552.661665,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yeah also eigentlich sogar voll gut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.620139173Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AF3A08E2B63F16DD354","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:34:19Z","event_id":"$yxA0dG0Pr267CwoHbWDZREPS3RYxkQ9GTE60cl6JEDY","part_id":"","time":"2026-03-06T19:22:30.620237302Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1491","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.645810166Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1491","time":"2026-03-06T19:22:30.645912694Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2953,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824950101406224_13?ts=1767262176660&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":563.811484,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$YVOeovzulw3d3DNOlEu7UU8phs5dgmrTjFGexpga3dg","key":"😂"}},"time":"2026-03-06T19:22:30.665347406Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC0FF7BA6FB20A9518F","target_part_id":"","reaction_sender_id":{"user_id":"4915735701057"},"reaction_ts":"2026-01-01T10:09:36.66Z","event_id":"$wV7rl6DUsLPDR4GWqb5MThQfacFiQt6YhmKUc1FI3wA","time":"2026-03-06T19:22:30.665471864Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2956,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950159568440_179?ts=1771704343000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":526.108705,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kann da so ab 17 Uhr","m.mentions":{"user_ids":["@whatsapp_4917620338641:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$WdWwh1Zwcqpr5jgWqFIJ8vqFKSrPWfVSE9B5MJpranE"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.685824512Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A92B6AE3A0A2DADC122","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T20:05:43Z","event_id":"$jqPcJD2ZChd7Zwik6VjxcUgE9Yg1fUQJcxOXPyvFeMo","part_id":"","time":"2026-03-06T19:22:30.68600687Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:30.696578675Z","message":""} +{"level":"debug","transaction_id":"1492","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.720427624Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1492","time":"2026-03-06T19:22:30.720549708Z","message":"Finished dispatching events from transaction"} +{"level":"warn","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","started_at":"2026-03-06T19:22:00.732042164Z","time":"2026-03-06T19:22:30.73258359Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","started_at":"2026-03-06T19:22:00.733024495Z","time":"2026-03-06T19:22:30.733688075Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","started_at":"2026-03-06T19:22:00.734278163Z","time":"2026-03-06T19:22:30.734811417Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","started_at":"2026-03-06T19:22:00.743861072Z","time":"2026-03-06T19:22:30.743923171Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2962,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950234865114_13?ts=1770379488000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":511.589628,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.746618871Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACFFAB3755A2429062F4BC4446ECA96A","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:04:48Z","event_id":"$lFseTYNLcrOCpillf-S9xvIiBW1RqXGrOA-8AONX068","part_id":"","time":"2026-03-06T19:22:30.746770009Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:30.766349783Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2982,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40566117134352:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":173.340746,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mustafa (WA)"},"time":"2026-03-06T19:22:30.766929823Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:30.767650734Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2967,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950297308936_180?ts=1772482700000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":492.437638,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bist du","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.789902182Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD6F8F2FE30E9276107","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:18:20Z","event_id":"$X6vv302kv6DMKJOLeE1hPewXXVVpjVJX5qyZCBXSigw","part_id":"","time":"2026-03-06T19:22:30.790027549Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1493","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.800956527Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1493","time":"2026-03-06T19:22:30.801038103Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1494","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.867690547Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1494","time":"2026-03-06T19:22:30.867780503Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2970,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950364741098_181?ts=1771243690000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":524.476563,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"dachte ich hock da allein, weil nur der A Kurs sonst da ist","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.889387098Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA357F4A7595A662D03","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T12:08:10Z","event_id":"$jKA4MUa8mmF-BBQHTjdpP7rrar2R_Ge2eFgPhQXxe1g","part_id":"","time":"2026-03-06T19:22:30.889486134Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2971,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950391601503_182?ts=1771493410000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":511.740697,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Seite 9 von 96","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.90346156Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A08E0BC42E9A1099731","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-19T09:30:10Z","event_id":"$4-OYGTeMDIaqqwJak7FS4-DgwXvF05-S8iYzWFnPmkM","part_id":"","time":"2026-03-06T19:22:30.903561644Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2972,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950395668834_21?ts=1772733620000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":508.125943,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Langweilig","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.903894931Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A4D429BBDDE7F1B24BF","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:00:20Z","event_id":"$bTWJ3jw9_wXL59HF9VrxVjtl_SKP_tvZQ6UkpTFkWdg","part_id":"","time":"2026-03-06T19:22:30.903989777Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:30.924563615Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2993,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40566117134352:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":28.613374,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:30.953537584Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:30.954377577Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1495","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:30.966321921Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1495","time":"2026-03-06T19:22:30.96642864Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2975,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950470176500_11?ts=1769793035000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":498.883096,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Am Montag streikt die BVG. Vielleicht kannst du ja Homeoffice machen.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:30.969186988Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A6F936A10C3E0C4AA1F","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-30T17:10:35Z","event_id":"$7oPy9TwRHQKSYAIjUsMVdgcrvF1M6dPizn74u1PCI24","part_id":"","time":"2026-03-06T19:22:30.96935887Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2986,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915226357423%3Amatrix.theocloud.dev","duration":269.981058,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43679 bytes>","time":"2026-03-06T19:22:30.973317806Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2964,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-27956059590853:matrix.theocloud.dev?user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":701.686077,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AvlyffuDHEMFxceTihjFMwRW","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","membership":"join"},"time":"2026-03-06T19:22:30.977039557Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2994,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-217626664026259%3Amatrix.theocloud.dev","duration":33.51497,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-217626664026259","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:30.988071483Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2996,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226357423:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915226357423%3Amatrix.theocloud.dev","duration":26.40692,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:31.000004164Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":2977,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950505835766_8?ts=1768599765000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":496.907679,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":6966},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"jQUtgCLQJFNrnVlBawI69LxD1Je+XCHohlxtVBcwa6g=","length":6966,"type":"WhatsApp Image Keys","sha256":"yHbv+BSlT+L/OlJCQAzK168aLRcijCuRmtwFxPjQtzo=","enc_sha256":"gVPkVTEffdFzP3FtaJWIlNExZU4N+JdYwc4Au7H605o=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:31.002950318Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A8C2D81D190BF2894A1","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-16T21:42:45Z","event_id":"$5QuDZjjUtOTixo34DhFa3ICNREJ-NcRPujft0DNt518","part_id":"","time":"2026-03-06T19:22:31.003056617Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":2978,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950509975174_183?ts=1770114609000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":496.203949,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo das dacht ich auch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.006298483Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A64348BF60D85B853CD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T10:30:09Z","event_id":"$njE-UjEJPXYsXYtOZdLxn4pWoiR_VkIXks4IFQy6zm0","part_id":"","time":"2026-03-06T19:22:31.006411348Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":2998,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-217626664026259:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-217626664026259%3Amatrix.theocloud.dev","duration":28.141661,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:31.016557535Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":2999,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/QuYnemyrhCVUaKwbFlqesZKc?user_id=%40whatsapp_4915226357423%3Amatrix.theocloud.dev","duration":27.084878,"status_code":200,"response_length":43679,"response_mime":"image/jpeg","time":"2026-03-06T19:22:31.02720931Z","message":"Request completed"} +{"level":"debug","transaction_id":"1496","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.055750537Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1496","time":"2026-03-06T19:22:31.056087805Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":2981,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824950584850211_1?ts=1772193669000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":499.674268,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":930878,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/ljpgPkvOGbgPxYOZahEmRxKD"},"time":"2026-03-06T19:22:31.084775352Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A715A6370319E6A63A9","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-02-27T12:01:09Z","event_id":"$-sn2PQ0RFGEyE9mJMi9OYm8VHgdrPAeFDvqjNLtAraE","part_id":"","time":"2026-03-06T19:22:31.084936618Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3003,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226357423:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915226357423%3Amatrix.theocloud.dev","duration":69.361693,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QuYnemyrhCVUaKwbFlqesZKc"},"time":"2026-03-06T19:22:31.096817406Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"206734241087531@lid","alternate_jid":"4915226357423@s.whatsapp.net","time":"2026-03-06T19:22:31.097363362Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915128980507@s.whatsapp.net","time":"2026-03-06T19:22:31.097603969Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3005,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915128980507%3Amatrix.theocloud.dev","duration":24.637816,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915128980507","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:31.122465699Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":2983,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950620792408_184?ts=1765812872000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":510.206962,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auch die Rechnung bei den virtuellen Speicheradressen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.131126273Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2F4CA662133EB44291","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:34:32Z","event_id":"$KqYJgI1tlOUUMggRR3pKqjnbH7LtkLCQdZtHosmjJYE","part_id":"","time":"2026-03-06T19:22:31.131276713Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1497","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.15169585Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1497","time":"2026-03-06T19:22:31.151849783Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3006,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915128980507:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915128980507%3Amatrix.theocloud.dev","duration":42.45191,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:31.165295315Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":2990,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-182218383188163%3Amatrix.theocloud.dev","duration":273.566758,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<36977 bytes>","time":"2026-03-06T19:22:31.173584468Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","req_id":2984,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950666092831_14?ts=1770720160000&user_id=%40whatsapp_4915735701057%3Amatrix.theocloud.dev","duration":525.319488,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wo bist du bro","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.191543414Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","message_id":"4915735701057@s.whatsapp.net:4915735701057@s.whatsapp.net:ACCC075D49E74FEC0D09D09E0D94ECBC","sender_id":{"user_id":"4915735701057"},"message_ts":"2026-02-10T10:42:40Z","event_id":"$RZ5Au5hQUTPzPy3Ti_xYPzizS-inBeomIY0kfYFu8ag","part_id":"","time":"2026-03-06T19:22:31.191681771Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:31.192829279Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","time":"2026-03-06T19:22:31.192912321Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"error","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:31.19316075Z","message":"Failed to get membership"} +{"level":"error","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.name","time":"2026-03-06T19:22:31.193279481Z","message":"Failed to set room metadata"} +{"level":"error","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:31.193434042Z","message":"Failed to get membership"} +{"level":"error","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.avatar","time":"2026-03-06T19:22:31.193538037Z","message":"Failed to set room metadata"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:31.193872023Z","message":"f7a830fd9342f060125d5ad15062de20128d5594eddb5796ad085399d9dd06a1a68c6d6fa31e1e838fd6f714e99786e177dc"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A72433F0AB0CAA2D892","time":"2026-03-06T19:22:31.194065136Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:31.194968615Z","message":"14bbc0d4e5ee0aa11df613b1b9844fe934944df15a82bdbccb9421325af437940928b649933ef0fa5cbc50d140f453a86348"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFE9929C8A45C21604D","time":"2026-03-06T19:22:31.195155443Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915735701057@s.whatsapp.net","latest_message_ts":"2026-02-10T10:42:40Z","started_at":"2026-03-06T19:22:00.743861072Z","duration":"30.452212307s","time":"2026-03-06T19:22:31.196092306Z","message":"Event that took long finished handling"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3009,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182218383188163:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-182218383188163%3Amatrix.theocloud.dev","duration":30.33282,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:31.2042614Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":2985,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950687396032_185?ts=1771704357000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":529.433264,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"warum?","m.mentions":{"user_ids":["@whatsapp_4917620338641:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$DBQdkIegJ-wiJBoCL0RNqP9p_l8p5XYRS_8NBW02gaA"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.216998733Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFD9375C2386B01DDE8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T20:05:57Z","event_id":"$WdQbP0Nzdl-KtTQrbb5-fVlGA6qmSlGRBY0zjcT8-IY","part_id":"","time":"2026-03-06T19:22:31.21719925Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3002,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-217626664026259:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-217626664026259%3Amatrix.theocloud.dev","duration":210.04925,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491774226359 (WA)"},"time":"2026-03-06T19:22:31.226817639Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:31.227808491Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3010,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/qgZHFNuWspqmsuVBDuAqCndS?user_id=%40whatsapp_lid-182218383188163%3Amatrix.theocloud.dev","duration":24.198998,"status_code":200,"response_length":36977,"response_mime":"image/jpeg","time":"2026-03-06T19:22:31.228625295Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:31.237328403Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:31.23872385Z","message":""} +{"level":"debug","transaction_id":"1498","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.245142489Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1498","time":"2026-03-06T19:22:31.24526576Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":2987,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950747726010_14?ts=1770379492000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":527.135385,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie läufts?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.275008553Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC92E11814C556E076483A210CF45642","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:04:52Z","event_id":"$b_w7QAVv8EJtaAohOD26uZ9WjXXw5ROq2hIFoejAgd0","part_id":"","time":"2026-03-06T19:22:31.275146072Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3012,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182218383188163:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-182218383188163%3Amatrix.theocloud.dev","duration":53.886056,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qgZHFNuWspqmsuVBDuAqCndS"},"time":"2026-03-06T19:22:31.28282655Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:31.284029722Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3014,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-84069857669232%3Amatrix.theocloud.dev","duration":23.211219,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-84069857669232","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:31.307580444Z","message":"Request completed"} +{"level":"debug","transaction_id":"1499","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.322763581Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1499","time":"2026-03-06T19:22:31.322904942Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":2988,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950790782543_14?ts=1772482707000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":541.333748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Und auch darin mich vor jmd sturen stur zu stellen haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.332260445Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A096B9337648DB34EF1","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:18:27Z","event_id":"$o7nDevKkjzr-IAqhDWywU3tvwnnx9llIquwmjLCC7tg","part_id":"","time":"2026-03-06T19:22:31.332446225Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3015,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84069857669232:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-84069857669232%3Amatrix.theocloud.dev","duration":33.710389,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:31.341739848Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3008,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915128980507:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915128980507%3Amatrix.theocloud.dev","duration":191.629695,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915128980507 (WA)"},"time":"2026-03-06T19:22:31.357133001Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:31.357843576Z","message":""} +{"level":"debug","transaction_id":"1500","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.393560671Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1500","time":"2026-03-06T19:22:31.393644551Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:31.394001864Z","message":""} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":2991,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824950904134909_17?ts=1771493416000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":512.785257,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":127440,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/hksLxarVjTHrmFykQMOpqYvA"},"time":"2026-03-06T19:22:31.417125362Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A4487C2440EFA9BC024","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-19T09:30:16Z","event_id":"$giCEr2vmlz3tckO-puR0HAIhR5eInMY-mvPbKhAHvxs","part_id":"","time":"2026-03-06T19:22:31.417264767Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":2989,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950890117648_186?ts=1771243698000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":536.575748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Tag gerettet","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.426821276Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A27443FBECEF0029C38","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T12:08:18Z","event_id":"$ueQLJ5I2kUi8XDCxOPRjEywWOu3loHSFZJE_4euBMHk","part_id":"","time":"2026-03-06T19:22:31.426971088Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3018,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-217626664026259:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-217626664026259%3Amatrix.theocloud.dev","duration":37.12225,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:31.431389375Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:31.432323166Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":2992,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950905852259_22?ts=1772733622000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":541.849742,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Und deiner?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.447836657Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A8AED5B7D5BF6D5B008","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:00:22Z","event_id":"$BZafxp5fSv9j8fReIpyDzoWGB9DhE3usij0iFfA1SvY","part_id":"","time":"2026-03-06T19:22:31.447978366Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3021,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-67585655734448%3Amatrix.theocloud.dev","duration":25.012869,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-67585655734448","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:31.457655144Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3023,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67585655734448:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-67585655734448%3Amatrix.theocloud.dev","duration":23.988353,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:31.482037896Z","message":"Request completed"} +{"level":"debug","transaction_id":"1501","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.497052015Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1501","time":"2026-03-06T19:22:31.497161598Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":2995,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824950970912789_187?ts=1769793259000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":532.830039,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja hab ich auch schon gelesen, war auch mein Plan","m.mentions":{"user_ids":["@whatsapp_491628947581:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$7oPy9TwRHQKSYAIjUsMVdgcrvF1M6dPizn74u1PCI24"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.503939854Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A60A6ED50D8C644C9D5","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-30T17:14:19Z","event_id":"$-zXrOJiY5P1UvB9QST1tH6dy5HhQTEoEz6mEuwp9bV4","part_id":"","time":"2026-03-06T19:22:31.504155457Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:31.512549233Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3017,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84069857669232:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-84069857669232%3Amatrix.theocloud.dev","duration":191.882874,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nora Ouwerkerk (WA)"},"time":"2026-03-06T19:22:31.53382275Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:31.53474802Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3000,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951003734645_188?ts=1769166093000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":539.086156,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mooooin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.542929476Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AAA32BCE30685880200","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T11:01:33Z","event_id":"$usZmpE7UCXMQDlYEAQHW_4wUPREYxibrinyTj97AdHs","part_id":"","time":"2026-03-06T19:22:31.543077751Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3001,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951006986638_189?ts=1770403657000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":539.666196,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"https://youtu.be/aIluiP0F4Xw?si=bxarCrVdviF40OTL","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"Der BESTE PROTEIN CHEESECAKE der WELT!","og:type":"video.other","og:description":"Rezept: ⤵️⤵️⤵️*Werbung⭐️Meine ESN TOP 10 (Code: KAY): https://www.esn.com/discount/kay?redirect=/pages/influencer/kay👨‍🍳Mein Kochbücher \u0026 das Backblech:htt...","og:image":"mxc://matrix.theocloud.dev/aHLjQMsvfSQcBwEhwSqXQIkN","matrix:image:size":98609,"og:image:width":1024,"og:image:height":576,"og:image:type":"image/jpeg","matched_url":"https://youtu.be/aIluiP0F4Xw?si=bxarCrVdviF40OTL"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.546791889Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7E770BFADBCDF13B86","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T18:47:37Z","event_id":"$n-j0EIoSPxOKpxLjlYagoMpBcB5gUj8J8PucsrrMC3Y","part_id":"","time":"2026-03-06T19:22:31.546978717Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1502","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.585961215Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1502","time":"2026-03-06T19:22:31.586093426Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3004,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951085860910_3?ts=1772210300000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":526.51372,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie werden wir Netzwerke Labor bewertet?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.612518994Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AD7D9F9EE2BF16D4CC4","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-02-27T16:38:20Z","event_id":"$m16KwUK7Vf7-YRz-YOBIPfjDCAF-YPim3BThxdVqLTM","part_id":"","time":"2026-03-06T19:22:31.612685148Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1503","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.653638942Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1503","time":"2026-03-06T19:22:31.653790849Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3007,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951132017459_14?ts=1765812912000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":525.225481,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Die Datei aus dem FAT Ausschnitt zu finden habe ich gefailed\n\nUnd die Umrechnung der virtuellen Adresse war weird und nicht so richtig in den Folien erklärt ig aber Vielleicht habe ich es richtig lol","format":"org.matrix.custom.html","formatted_body":"Die Datei aus dem FAT Ausschnitt zu finden habe ich gefailed\u003cbr\u003e\u003cbr\u003eUnd die Umrechnung der virtuellen Adresse war weird und nicht so richtig in den Folien erklärt ig aber Vielleicht habe ich es richtig lol","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.657420339Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A3967224505A17D793A","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:35:12Z","event_id":"$KtFLbx26i1G9CjDyLyHf2DXKT66LUAgnOfQjXmCGuig","part_id":"","time":"2026-03-06T19:22:31.657560932Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3024,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67585655734448:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-67585655734448%3Amatrix.theocloud.dev","duration":195.684385,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Kadl (WA)"},"time":"2026-03-06T19:22:31.677945777Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:31.678751686Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:31.684984893Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3011,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951218969680_14?ts=1771704455000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":491.683482,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"feier das gar nicht mit palantir","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$WdQbP0Nzdl-KtTQrbb5-fVlGA6qmSlGRBY0zjcT8-IY"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.710854237Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A9BA10635CECAEE4BE2","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-21T20:07:35Z","event_id":"$Db-bTU2Zz7AAmxhsfHnaBqMgC74gYuYewWbx3V7NpJ8","part_id":"","time":"2026-03-06T19:22:31.710991268Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1504","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.729856276Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1504","time":"2026-03-06T19:22:31.729963973Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":2997,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-252510304526430:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":758.363377,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AqYlVnTaKISCZvYnExVefXos","com.beeper.exclude_from_timeline":true,"displayname":"+4915256492723 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:31.736461114Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3013,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951276052624_15?ts=1770379505000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":487.869328,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Einarmiger Handstand drin? 😉","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.764070996Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACAF1FCDB7BE34DEC1FBF4398810C55B","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:05:05Z","event_id":"$pFuzQVrsPGIutpJVrXEYVSJMoltuFJJfLWTHdifrwYg","part_id":"","time":"2026-03-06T19:22:31.764207537Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3026,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915128980507%3Amatrix.theocloud.dev","duration":259.932371,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<37055 bytes>","time":"2026-03-06T19:22:31.784149653Z","message":"Request completed"} +{"level":"debug","transaction_id":"1505","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.806263162Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1505","time":"2026-03-06T19:22:31.806412764Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3034,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915128980507:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915128980507%3Amatrix.theocloud.dev","duration":26.516153,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:31.811031639Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3016,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951333358504_190?ts=1772482714000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":481.7207,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.815215397Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9CE375FFADEE58D8BF","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:18:34Z","event_id":"$gUvKCGWN3gcAh-I-ifKny8CxN0mbgMbUK6jgSjOdqEc","part_id":"","time":"2026-03-06T19:22:31.81536863Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:31.836507981Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3035,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/iQyqgmaDkCQvzujbhgZWbJew?user_id=%40whatsapp_4915128980507%3Amatrix.theocloud.dev","duration":32.738884,"status_code":200,"response_length":37055,"response_mime":"image/jpeg","time":"2026-03-06T19:22:31.843893096Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3038,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67585655734448:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-67585655734448%3Amatrix.theocloud.dev","duration":25.367248,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:31.862153341Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:31.863008Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1506","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.87592364Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1506","time":"2026-03-06T19:22:31.876215091Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3039,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915128980507:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915128980507%3Amatrix.theocloud.dev","duration":43.136712,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iQyqgmaDkCQvzujbhgZWbJew"},"time":"2026-03-06T19:22:31.887269157Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3040,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-165566878843022%3Amatrix.theocloud.dev","duration":24.644452,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-165566878843022","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:31.88795843Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491708738657@s.whatsapp.net","time":"2026-03-06T19:22:31.888165442Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3019,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951418220069_18?ts=1771512419000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":487.670418,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Thema: Zertifikate automatisieren\nAbteilung: NC\nInhalt: \n- was Sylwi gemacht hat (= Mini bisschen Vorarbeit)\n- Literatur über Zertifikate, IT Sicherheit\n- wichtig für alle Abteilungen\n- \n\nThema: Knowledge Base automatisieren (von tip4u)\nAbteilung: ? Karoline\nInhalt:\n- tip4u's an richtigen Platz\n- KI für Erkennung?\n-\u003e oder Zusammenfassung oder so?\n\nThema: Netzwerk Visualisierung\nAbteilung: NC\nInhalt:\n- FNT Command\n- Netzwerk Stärke (?)\n- coole Grafiken!\n- Netze an Unis in Literatur\n\nThema: Visualisierung von Prozessabläufen\nAbteilung: IM (überwiegend)\nInhalt:\n- Visualisierung mit Workflow Application\n- State of the Art Literatur\n- Visualisierung für easy Problemerkennung, zB auch für Netzer\n-\u003e wen bei Wartung kontaktieren\n\nThema:\nAbteilung:\nInhalt:\n- \n-","format":"org.matrix.custom.html","formatted_body":"Thema: Zertifikate automatisieren\u003cbr\u003eAbteilung: NC\u003cbr\u003eInhalt: \u003cbr\u003e\u003cul\u003e\u003cli\u003ewas Sylwi gemacht hat (= Mini bisschen Vorarbeit)\u003c/li\u003e\u003cli\u003eLiteratur über Zertifikate, IT Sicherheit\u003c/li\u003e\u003cli\u003ewichtig für alle Abteilungen\u003c/li\u003e\u003cli\u003e\u003c/li\u003e\u003c/ul\u003e\u003cbr\u003eThema: Knowledge Base automatisieren (von tip4u)\u003cbr\u003eAbteilung: ? Karoline\u003cbr\u003eInhalt:\u003cbr\u003e\u003cul\u003e\u003cli\u003etip4u\u0026#39;s an richtigen Platz\u003c/li\u003e\u003cli\u003eKI für Erkennung?\u003c/li\u003e\u003c/ul\u003e-\u0026gt; oder Zusammenfassung oder so?\u003cbr\u003e\u003cbr\u003eThema: Netzwerk Visualisierung\u003cbr\u003eAbteilung: NC\u003cbr\u003eInhalt:\u003cbr\u003e\u003cul\u003e\u003cli\u003eFNT Command\u003c/li\u003e\u003cli\u003eNetzwerk Stärke (?)\u003c/li\u003e\u003cli\u003ecoole Grafiken!\u003c/li\u003e\u003cli\u003eNetze an Unis in Literatur\u003c/li\u003e\u003c/ul\u003e\u003cbr\u003eThema: Visualisierung von Prozessabläufen\u003cbr\u003eAbteilung: IM (überwiegend)\u003cbr\u003eInhalt:\u003cbr\u003e\u003cul\u003e\u003cli\u003eVisualisierung mit Workflow Application\u003c/li\u003e\u003cli\u003eState of the Art Literatur\u003c/li\u003e\u003cli\u003eVisualisierung für easy Problemerkennung, zB auch für Netzer\u003c/li\u003e\u003c/ul\u003e-\u0026gt; wen bei Wartung kontaktieren\u003cbr\u003e\u003cbr\u003eThema:\u003cbr\u003eAbteilung:\u003cbr\u003eInhalt:\u003cbr\u003e\u003cul\u003e\u003cli\u003e\u003c/li\u003e\u003c/ul\u003e-","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.906134934Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3AEC32C9A3DEAF001759","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-19T14:46:59Z","event_id":"$pAvk4E6hXvqp_Hy-3LKvMiP0aZPePCQNz6pbitgynso","part_id":"","time":"2026-03-06T19:22:31.906373376Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3020,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951427875824_14?ts=1771243713000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":486.239001,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Selbst wenn, das ist sag ich der beste Kurs im Angebot","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.914224757Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3ACF8472C20B9DE4E2D8","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T12:08:33Z","event_id":"$JDWYw63jEKv185_hGeiryWnX_rqadLSipMxC1Kiums4","part_id":"","time":"2026-03-06T19:22:31.914349425Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3041,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491708738657%3Amatrix.theocloud.dev","duration":34.657589,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491708738657","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:31.92315569Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:31.924319051Z","message":"6400692cd0d5baab951eba3e"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3042,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-165566878843022:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-165566878843022%3Amatrix.theocloud.dev","duration":34.5244,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:31.924742086Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:31.925124472Z","message":""} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","portal_mxid":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AFE9929C8A45C21604D","sender_id":"","chat_id":"4915735701057@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFE9929C8A45C21604D","time":"2026-03-06T19:22:31.925235241Z","message":"Handling remote event"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3022,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951448902169_191?ts=1772733710000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":491.361509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auch so die Vorlesungen waren heute auch echt langweilig","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:31.940446874Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF9C2B9F6D16C47EC08","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:01:50Z","event_id":"$FPLFvK0Zta1BRiXCPo7LEtLSBIgkOKA-m2rRQ82UhNo","part_id":"","time":"2026-03-06T19:22:31.940627277Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3045,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491708738657:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491708738657%3Amatrix.theocloud.dev","duration":40.193353,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:31.963786464Z","message":"Request completed"} +{"level":"debug","transaction_id":"1507","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:31.981129471Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1507","time":"2026-03-06T19:22:31.981248692Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3025,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951505262176_12?ts=1769793429000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":498.231258,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"👍","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.003647786Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3ACA9DE4CB7FADF66508","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-30T17:17:09Z","event_id":"$8CO-lZBO51Bv7Xto_6TRaWb-6hBG3sBbTF-N-sJ14qE","part_id":"","time":"2026-03-06T19:22:32.00379201Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3027,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951543855723_192?ts=1769166102000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":502.0503,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wann wollen wa dann heute ins Gym?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.046070292Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADF4BDF386EF5C186EF","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T11:01:42Z","event_id":"$Nla-UpVA1HlJG_2tSAn7lhVGMfdyEIKUbjix36aOtl8","part_id":"","time":"2026-03-06T19:22:32.046251253Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3028,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951547770239_6?ts=1770404765000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":508.38408,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":537800,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/XpFJTUlpRcXfjjiuSCkhdZiq"},"time":"2026-03-06T19:22:32.056436272Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A7EF97B2B5808EDBC0F","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:06:05Z","event_id":"$iX9fHOrzP2HKrtPhTiRspLB9e56VPPvGn5AAP7h9Hjk","part_id":"","time":"2026-03-06T19:22:32.05658783Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1508","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.084802615Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1508","time":"2026-03-06T19:22:32.084918134Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3037,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-84069857669232%3Amatrix.theocloud.dev","duration":274.338234,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<63211 bytes>","time":"2026-03-06T19:22:32.110464248Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3053,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84069857669232:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-84069857669232%3Amatrix.theocloud.dev","duration":23.184121,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:32.134063092Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3029,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951613551261_2?ts=1772210339000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":521.831778,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Läuft nicht beides auf die selbe Klausur hinaus?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.135508965Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3AA6026FF4419EE7818C","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-02-27T16:38:59Z","event_id":"$NkWe3crzOvqxW4nZqt62aWDjPDrEmLoWwaNAb551iUc","part_id":"","time":"2026-03-06T19:22:32.135650046Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3046,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-165566878843022:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-165566878843022%3Amatrix.theocloud.dev","duration":221.174346,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Anna vdM (WA)"},"time":"2026-03-06T19:22:32.146101094Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:32.146247903Z","message":"4cee60bcea602e91a2c2755d"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:32.14729812Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:32.148395551Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3054,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LiMHGJsNtskYzsMsJShkHqyZ?user_id=%40whatsapp_lid-84069857669232%3Amatrix.theocloud.dev","duration":32.983052,"status_code":200,"response_length":63211,"response_mime":"image/jpeg","time":"2026-03-06T19:22:32.167227105Z","message":"Request completed"} +{"level":"debug","transaction_id":"1509","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.169781863Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1509","time":"2026-03-06T19:22:32.1699161Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3048,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491708738657:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491708738657%3Amatrix.theocloud.dev","duration":212.361866,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491708738657 (WA)"},"time":"2026-03-06T19:22:32.176366447Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:32.177159505Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3030,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951658915242_193?ts=1765812919000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":533.623378,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"All in all ich auch","m.mentions":{"user_ids":["@whatsapp_491731828379:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$zR8Wm3msXdOXDP9miKIyHJ5gujz8wJQ2Tg9qPcWCiss"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.192680539Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC4A28C621AC81D5F54","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:35:19Z","event_id":"$T-OC8RW9dKxRtHVfUT63-fPfSici3KBhQt48Nqc3sKQ","part_id":"","time":"2026-03-06T19:22:32.192798572Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3056,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84069857669232:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-84069857669232%3Amatrix.theocloud.dev","duration":56.815448,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LiMHGJsNtskYzsMsJShkHqyZ"},"time":"2026-03-06T19:22:32.22438017Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:32.225513919Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1510","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.251591672Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1510","time":"2026-03-06T19:22:32.251683864Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3031,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951711878753_15?ts=1771704473000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":544.825649,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"selbst wenn die da zurüxkgerudert sind","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.256845552Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A965215E7734DCD41E0","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-21T20:07:53Z","event_id":"$7kSXW8sGOBw8TOhdVPBFk1iRQurVkDmnHzkW7GoWO-I","part_id":"","time":"2026-03-06T19:22:32.256980627Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3058,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-50058112307202%3Amatrix.theocloud.dev","duration":34.651652,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-50058112307202","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:32.260507938Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3060,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-50058112307202:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-50058112307202%3Amatrix.theocloud.dev","duration":37.387092,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:32.298321626Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:32.29931129Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3033,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951765595861_194?ts=1770379889000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":560.18835,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Brauch gerade noch mehr Zeit, um im unassisted Halflay besser zu werden, aber hab da gerade fast jedes Training kleinen Progress","m.mentions":{"user_ids":["@whatsapp_4917657607100:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$b_w7QAVv8EJtaAohOD26uZ9WjXXw5ROq2hIFoejAgd0"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.325947921Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB57E4DFDC489859E76","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:11:29Z","event_id":"$aRRlfgV8uv4V-_xX5N7sZxL1F-WxG0W3fdjFuwVzl2Q","part_id":"","time":"2026-03-06T19:22:32.326162266Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3062,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-165566878843022:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-165566878843022%3Amatrix.theocloud.dev","duration":27.084249,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:32.326783932Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:32.329767661Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:32.338285058Z","message":""} +{"level":"debug","transaction_id":"1511","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.347961067Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1511","time":"2026-03-06T19:22:32.34810124Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3063,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-264544232407203%3Amatrix.theocloud.dev","duration":24.404473,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-264544232407203","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:32.35449739Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3065,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491708738657:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491708738657%3Amatrix.theocloud.dev","duration":29.259764,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:32.367924624Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3036,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951816171816_15?ts=1772482739000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":567.211822,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Das wird schon großer","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.383529049Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AF210BD060FCC2C1422","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:18:59Z","event_id":"$6ZsyYDWrM6WMuvjGn7U4XryYNA9fIE7FgxDLoUS9qsM","part_id":"","time":"2026-03-06T19:22:32.383694645Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3066,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-264544232407203:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-264544232407203%3Amatrix.theocloud.dev","duration":29.446103,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:32.384345714Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3067,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-66189975912485%3Amatrix.theocloud.dev","duration":30.519578,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-66189975912485","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:32.399591639Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3070,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66189975912485:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66189975912485%3Amatrix.theocloud.dev","duration":23.297265,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:32.42329797Z","message":"Request completed"} +{"level":"debug","transaction_id":"1512","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.429943247Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1512","time":"2026-03-06T19:22:32.430071547Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","portal_mxid":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AFE9929C8A45C21604D","sender_id":"","chat_id":"4915735701057@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFE9929C8A45C21604D","req_id":3050,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":414.31438,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<151222 bytes>","time":"2026-03-06T19:22:32.43288507Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3043,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951907531499_19?ts=1771512419000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":564.986021,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Welches?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.472667122Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A96C864BB0C0378E93C","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-19T14:46:59Z","event_id":"$F4FbuA78mK18kFr6V4DKcV9GEZ6AgDNOAfs7yRd3hZo","part_id":"","time":"2026-03-06T19:22:32.472827409Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3044,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951914856270_15?ts=1771243746000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":559.228509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Unser Algorithmen und Datenstrukturen Kurs war sehr dürftig und komplexitätstheorie ist ein extrem wichtiges Teilgebiet in Algorithmen Engineering","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.474197504Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3A1C54081559F92EB7EA","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T12:09:06Z","event_id":"$S1OSDas3-tOxEVRFrQm19TvOlujMKGW96CWyC9NYxJQ","part_id":"","time":"2026-03-06T19:22:32.474691219Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:32.486795222Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3032,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-252510304526430:matrix.theocloud.dev?user_id=%40whatsapp_lid-252510304526430%3Amatrix.theocloud.dev","duration":751.072619,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AqYlVnTaKISCZvYnExVefXos","com.beeper.exclude_from_timeline":true,"displayname":"+4915256492723 (WA)","membership":"join"},"time":"2026-03-06T19:22:32.488179704Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-50058112307202:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-50058112307202%3Amatrix.theocloud.dev","duration":190.099104,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yasin Dalowar (WA)"},"time":"2026-03-06T19:22:32.488688924Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:32.492020397Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3047,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824951941549124_23?ts=1772735303000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":565.950192,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"I see","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.507610994Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AD424672877F18B93A1","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:28:23Z","event_id":"$mHyS-N8Cz8yVWM6-LpXownsMHEIka9RVte5uAjpObIc","part_id":"","time":"2026-03-06T19:22:32.507739084Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1513","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.526625325Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1513","time":"2026-03-06T19:22:32.526736304Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:32.528750204Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3049,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952004695838_13?ts=1769852990000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":575.163636,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bin beim Einkaufen und habe meine Schlüssel vergessen. Kannst du bitte die Mülltüten vor unserer Wohnung wieder reinstellen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.579977228Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A8680D22BA0FC34D90B","sender_id":{"user_id":"491628947581"},"message_ts":"2026-01-31T09:49:50Z","event_id":"$7NEFOBOU-fsRVCXSqOq_LpqJeBEnvtaCnGsyr1FNy-M","part_id":"","time":"2026-03-06T19:22:32.580105249Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3068,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-264544232407203:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-264544232407203%3Amatrix.theocloud.dev","duration":211.458108,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Linus Grabenhenrich (WA)"},"time":"2026-03-06T19:22:32.596031787Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:32.596957824Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3051,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952047207253_195?ts=1769166116000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":567.05342,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Passt 17 Uhr, danach nen dicker Dönerteller?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.614455602Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD2A9BB1249BC0E35C4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T11:01:56Z","event_id":"$3Sg0NfTwm8pVIAuKdb5nlrmiDno5j8a4zyT2cuHoiBw","part_id":"","time":"2026-03-06T19:22:32.614570981Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1514","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.625860136Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1514","time":"2026-03-06T19:22:32.626165207Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3052,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952057594535_7?ts=1770404776000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":571.256594,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Drei mal darfst du raten was es heute gibt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.628989137Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3ACDD1AC628CEA1503A6","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:06:16Z","event_id":"$2oOOFu8o1ndftFNKRyg2vg8mJlCVlV4RYF6v2leW5Hk","part_id":"","time":"2026-03-06T19:22:32.629127285Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:32.642783182Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3071,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66189975912485:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66189975912485%3Amatrix.theocloud.dev","duration":235.865794,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":". (WA)"},"time":"2026-03-06T19:22:32.659385513Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:32.660247296Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3055,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952136517486_4?ts=1772374462000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":574.863315,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Funktionale Freunde","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.711553172Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AE35B922445639ECCC2","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-01T14:14:22Z","event_id":"$OEcGjiXbBvGSODZjOf4j5QnzgpcmqH9afXoNRKYOz0M","part_id":"","time":"2026-03-06T19:22:32.711746775Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1515","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.721692235Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1515","time":"2026-03-06T19:22:32.721845818Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:32.753754348Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952193708406_196?ts=1765812935000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":580.88092,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja same","m.mentions":{"user_ids":["@whatsapp_491731828379:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$KtFLbx26i1G9CjDyLyHf2DXKT66LUAgnOfQjXmCGuig"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.77472908Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0AE31FF649D7EF258A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:35:35Z","event_id":"$eJ2FaNCon7SWh_i3l7NPaKampbuHiUnnUPUlv1GAZ5c","part_id":"","time":"2026-03-06T19:22:32.774865901Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1516","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.81171444Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1516","time":"2026-03-06T19:22:32.811827235Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:32.81604326Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3059,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952257897236_16?ts=1771705584000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":584.105185,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ber auch so, will halt so gut es geht weg von us tech riesen, müssen keine 100% sein, aber das was mich nicht beeinträchtigt kann weg","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.842156423Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3ACD1D5099E7804880A1","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-21T20:26:24Z","event_id":"$AqfYx1Jzx6LvE4Ce2gu2l37qEtJpgCAHjRPit1rejh8","part_id":"","time":"2026-03-06T19:22:32.842349746Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3084,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66189975912485:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-66189975912485%3Amatrix.theocloud.dev","duration":38.198729,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:32.854616622Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:32.855773139Z","message":""} +{"level":"debug","transaction_id":"1517","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:32.900631113Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1517","time":"2026-03-06T19:22:32.900749844Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3064,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952332035787_197?ts=1770379989000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":572.144847,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hatte zwar schon Versuche bei denen ichs kurz gehalten hab, aber hab noch nicht so die Kontrolle in der Hüfte, deswegen üb ichs die letzten Male noch an der Wand, kann mich auch nicht ganz so weit auf die rechte Seite lehnen, dass meine Mitte über der rechten Hand ist","m.mentions":{"user_ids":["@whatsapp_4917657607100:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$pFuzQVrsPGIutpJVrXEYVSJMoltuFJJfLWTHdifrwYg"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.904370185Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9BEF9174A520804090","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:13:09Z","event_id":"$4ag4CqiKKOYDJfYdHiQuCU8Kd4bJ_0AVPQEWmDWLodo","part_id":"","time":"2026-03-06T19:22:32.904512733Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3080,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-50058112307202%3Amatrix.theocloud.dev","duration":273.827059,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<63303 bytes>","time":"2026-03-06T19:22:32.928265649Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3069,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952384695135_198?ts=1772482747000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":581.019416,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Safe","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:32.96584327Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABFCD691E438D3B9A0D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:19:07Z","event_id":"$moudopexLDU-zZTNcFB-OFEnMfGQSRdBFVhR32yTbdg","part_id":"","time":"2026-03-06T19:22:32.965959697Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3087,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-50058112307202:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-50058112307202%3Amatrix.theocloud.dev","duration":40.812154,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:32.969511173Z","message":"Request completed"} +{"level":"debug","transaction_id":"1518","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.00849423Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1518","time":"2026-03-06T19:22:33.008586003Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:33.009555971Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"66189975912485@lid","alternate_jid":"4917655219065@s.whatsapp.net","time":"2026-03-06T19:22:33.009654868Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"102147257532455@lid","alternate_jid":"491637362958@s.whatsapp.net","time":"2026-03-06T19:22:33.009799441Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3089,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/tIpzDyJxAJFklfUmHoTXyzMX?user_id=%40whatsapp_lid-50058112307202%3Amatrix.theocloud.dev","duration":43.187348,"status_code":200,"response_length":63303,"response_mime":"image/jpeg","time":"2026-03-06T19:22:33.012873057Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3090,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-59197668491519%3Amatrix.theocloud.dev","duration":22.913343,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-59197668491519","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:33.033465822Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3092,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59197668491519:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-59197668491519%3Amatrix.theocloud.dev","duration":21.443234,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:33.055206654Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3091,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-50058112307202:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-50058112307202%3Amatrix.theocloud.dev","duration":43.048082,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tIpzDyJxAJFklfUmHoTXyzMX"},"time":"2026-03-06T19:22:33.056206794Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:33.064134723Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","portal_mxid":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AFE9929C8A45C21604D","sender_id":"","chat_id":"4915735701057@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFE9929C8A45C21604D","req_id":3072,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952433346937_199?ts=1772824951000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":635.162283,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Ich werd glaube nie wieder einen so guten Anime gucken können omg","filename":"image.jpg","info":{"h":1600,"mimetype":"image/jpeg","size":151222,"w":900},"m.mentions":{},"m.new_content":{"body":"Ich werd glaube nie wieder einen so guten Anime gucken können omg","filename":"image.jpg","info":{"h":1600,"mimetype":"image/jpeg","size":151222,"w":900},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/lgAKtAinnarPrRXzhJIQCiLv"},"m.relates_to":{"event_id":"$ACaCJC5ADq0V5Rgdg99PyQr0p_oVqGdYh8Ix4mk9Xuw","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/lgAKtAinnarPrRXzhJIQCiLv"},"time":"2026-03-06T19:22:33.068828398Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","portal_mxid":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AFE9929C8A45C21604D","sender_id":"","chat_id":"4915735701057@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFE9929C8A45C21604D","event_id":"$gPmsPE0LQdL9ZtBP3ixTQrhc5HWpCWHiW3YpGlguZXs","part_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFE9929C8A45C21604D","time":"2026-03-06T19:22:33.069031709Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","portal_mxid":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A72433F0AB0CAA2D892","sender_id":"","chat_id":"4915735701057@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A72433F0AB0CAA2D892","time":"2026-03-06T19:22:33.069851517Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3082,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-264544232407203%3Amatrix.theocloud.dev","duration":304.977242,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<129195 bytes>","time":"2026-03-06T19:22:33.072743892Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3073,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952473786552_20?ts=1771512419000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":600.47089,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wenn du eins davon nehmen müsstest","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.074395172Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A29FAA217F3AB94656A","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-19T14:46:59Z","event_id":"$vqJ-BkbuEgFIcAfoIJr38mD6E3TvP0gZxaWBjbkX1cA","part_id":"","time":"2026-03-06T19:22:33.074544564Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3074,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952476353952_16?ts=1771243753000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":598.69194,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Das wird normalerweise im ersten Semester gemacht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.075225526Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3A5675C190A64601452C","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T12:09:13Z","event_id":"$cC0qXei6LcGhASNXyj8cgLUgPGauv7-1wsSXlGiMnhc","part_id":"","time":"2026-03-06T19:22:33.075385325Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3094,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":33.065675,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-150517229604984","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:33.097503304Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3076,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952508519571_24?ts=1772735306000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":593.928911,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Was machst du so?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.102580274Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A3778F59D8273BC089B","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:28:26Z","event_id":"$MzzwEvrF32BsePJPup5jqSp5yD7L5rJXsHGuG5DOJb0","part_id":"","time":"2026-03-06T19:22:33.102711437Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3095,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-264544232407203:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-264544232407203%3Amatrix.theocloud.dev","duration":30.791264,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:33.10381243Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3098,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150517229604984:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":26.305229,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:33.124234501Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3100,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/iHftjmntHIOnjnfAsgdWVTvG?user_id=%40whatsapp_lid-264544232407203%3Amatrix.theocloud.dev","duration":24.847832,"status_code":200,"response_length":129195,"response_mime":"image/jpeg","time":"2026-03-06T19:22:33.128812657Z","message":"Request completed"} +{"level":"debug","transaction_id":"1519","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.147886215Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1519","time":"2026-03-06T19:22:33.148022756Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3077,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952580948384_200?ts=1769855485000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":573.071723,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Okee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.154179068Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC4B6E9192EA6990A1B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-31T10:31:25Z","event_id":"$4eFQvf4p8eeH-z5IXnmiwU34r2jQsWDmLDFTGG2AYTs","part_id":"","time":"2026-03-06T19:22:33.15435933Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3102,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-264544232407203:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-264544232407203%3Amatrix.theocloud.dev","duration":55.383055,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iHftjmntHIOnjnfAsgdWVTvG"},"time":"2026-03-06T19:22:33.184447772Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":true,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:33.185072371Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3078,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952615203263_9?ts=1769168515000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":571.368062,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja wollte so 16-17 Uhr hin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.186678532Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A4987BD749925992784","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-23T11:41:55Z","event_id":"$lsgEsnzJ4JrV20xkpKVpOEVgxFtIAac-u0mLCYAVjgg","part_id":"","time":"2026-03-06T19:22:33.186806623Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3079,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952630012744_201?ts=1770405049000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":574.661401,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geil man","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.20480049Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF2859D623C8802A6E3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T19:10:49Z","event_id":"$TzeEp3v7VxZ5yAu5Epnwi2-WDuGh29HhGuA9Trpu60c","part_id":"","time":"2026-03-06T19:22:33.204915241Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3104,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150517229604984:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":25.394487,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:33.210762011Z","message":"Request completed"} +{"level":"debug","transaction_id":"1520","content":{"pdu":6,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.241686045Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1520","time":"2026-03-06T19:22:33.241818117Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3093,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59197668491519:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-59197668491519%3Amatrix.theocloud.dev","duration":203.999239,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sasha (WA)"},"time":"2026-03-06T19:22:33.25944622Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:33.260305628Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3081,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952712709759_5?ts=1772374467000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":564.792069,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"(Alex und Chrissi)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.277643956Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AB0D0A9536451E9E3CD","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-01T14:14:27Z","event_id":"$mMVe_yPa-o_62GgHBHgc2cYo59_isRlLDv8M9RaVtAQ","part_id":"","time":"2026-03-06T19:22:33.277801171Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","portal_mxid":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A72433F0AB0CAA2D892","sender_id":"","chat_id":"4915735701057@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A72433F0AB0CAA2D892","req_id":3107,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":69.851146,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<54488 bytes>","time":"2026-03-06T19:22:33.278929472Z","message":"Request completed"} +{"level":"debug","transaction_id":"1521","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.330027916Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1521","time":"2026-03-06T19:22:33.330109492Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3101,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150517229604984:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":208.050018,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915112997658 (WA)"},"time":"2026-03-06T19:22:33.332564795Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:33.333099158Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3108,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150517229604984:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":123.659469,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915112997658 (WA)"},"time":"2026-03-06T19:22:33.334645813Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:33.335241218Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3083,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952775630394_15?ts=1765812939000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":565.326361,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yeah so 90% ziemlich safe der Rest gut Glück so","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.341135412Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A6A5CB5A6FC051CCD85","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:35:39Z","event_id":"$WDnO0Cq65HWg3a-bR5verHKCIRZL5kEhnlTQVt2EXdY","part_id":"","time":"2026-03-06T19:22:33.341278588Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3075,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-143632363450509:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":855.842076,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/yuvSCzvoPdUrAGuBDdwAnxKP","com.beeper.exclude_from_timeline":true,"displayname":"ben (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:33.345151059Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3085,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952843298483_202?ts=1771710556000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":545.309795,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und was ist die alternative aus der eu?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.388779321Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC933A51AE287EE6AB4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T21:49:16Z","event_id":"$NOG1SkU2nmWILaxpmO7lSMHK6nt5ZKAhVR-Hx5RZ_Hg","part_id":"","time":"2026-03-06T19:22:33.388903849Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1522","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.407442905Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1522","time":"2026-03-06T19:22:33.407535865Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3086,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952905599967_16?ts=1770382358000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":542.39905,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also geht es nach vorne","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.44815267Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC698D3321FEDADD34A8AF119C737DCF","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:52:38Z","event_id":"$rGncUnguQTgNdsHC94Q0XndfmXITfhEJUZF7B0MM_8Q","part_id":"","time":"2026-03-06T19:22:33.448291027Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1523","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.47531193Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1523","time":"2026-03-06T19:22:33.475614207Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3088,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824952966756248_16?ts=1772482756000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":521.213674,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dir auch noch nhn schönen abend, was machste grad?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.48810807Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A25D921D0AC60B58BC9","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:19:16Z","event_id":"$Iyhq6xEXM3gWgdyJxw5tS_Y8SI_WcleFQB8yjDlpqts","part_id":"","time":"2026-03-06T19:22:33.488261234Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1524","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.529734374Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1524","time":"2026-03-06T19:22:33.529833201Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3096,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953075500774_203?ts=1772089383000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":486.436236,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hello","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.562112453Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE5719375244B693010","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T07:03:03Z","event_id":"$WjhlFIMAq7MnjgKZ0MN7eyjRY7ODJsvqLo1C5MetAtU","part_id":"","time":"2026-03-06T19:22:33.562275674Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3097,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953076109449_17?ts=1771243785000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":490.139339,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wir haben richtig gewählt. BTW auch krypto sehr gutes fach. Ich habs nur nicht gemacht weil ich meine beiden studienarbeiten über krypto hatte","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.566410054Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3A1B39F3611029EFCE82","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T12:09:45Z","event_id":"$HDQ8TsKSAOqwZsKSupv6aMLBVFyEPo4S8idrVwkekQA","part_id":"","time":"2026-03-06T19:22:33.566581656Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:33.582600944Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:33.592311385Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3099,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953103648301_204?ts=1772735340000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":491.200592,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Zocke mit Domi, weil heute nen neues Spiel rausgekommen ist, aber scheinbar war das so beliebt, dass Steam down ist","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.595005339Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A734CB47B5F87105C3D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:29:00Z","event_id":"$yBomjv2JioLQshlG_Y2a9_i9FcAiMaLVK1SFYs14zKM","part_id":"","time":"2026-03-06T19:22:33.59514649Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1525","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.61160299Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1525","time":"2026-03-06T19:22:33.611704541Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3103,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953155378677_205?ts=1769969268000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":492.203666,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Mama, eigentlich wollten ja Ana und ich zu mir und dann schon Pizza machen jetzt und dir hätt ich die Pizza gemacht, wenn du da bist. Jetzt ist das Ding Ana muss ihre Eltern vom Flughafen abholen um 22:30 Uhr und wir wären dann eigentlich mit deren Autos zu uns gefahren und dann wäre Ana von uns zum BER. Ihre Katze Alice dachte sich aber Beef Jerky zu essen als wir im Gym waren, weswegen Ana sich berechtigterweise Sorgen macht und wir jetzt erstmal hier bleiben bis sie zum Flughafen muss um 22 Uhr. Hoffe es ist okay, wenn du dann stattdessen eins von den Schlemmerfilets isst z.B. .","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.647738859Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD31D793DFCDC1B3CD4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-01T18:07:48Z","event_id":"$0y9QTJj525d5Nk92Lykzldz4XhC5netuQcrZRIuZsIM","part_id":"","time":"2026-03-06T19:22:33.647864715Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3105,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953187570487_206?ts=1769168529000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":486.187388,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Top","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.673890156Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A59C848332B25B4A95F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T11:42:09Z","event_id":"$s5QZRURi2h5Uk3nGoeuALTcs-TGZACokQstuf88_qhE","part_id":"","time":"2026-03-06T19:22:33.674030469Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3106,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953205633009_207?ts=1770405055000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":476.796894,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gönn dir","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.682544584Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2B18F0D0C591DE151F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T19:10:55Z","event_id":"$86gwWDIniNOHTKOv1-pFxq1aX3QrMCkPOWH0r3vcT0M","part_id":"","time":"2026-03-06T19:22:33.68268364Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1526","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.68353788Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1526","time":"2026-03-06T19:22:33.683647602Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:33.688259492Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3109,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953278711145_6?ts=1772374477000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":466.281102,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wann machen wir unsere Hausaufgaben? 😁","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.745118312Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A7CE207E3F8E0B32FDB","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-01T14:14:37Z","event_id":"$0WhkxpxY4qLxdZwOFy3g9NQSoEdK7UGGXMHxIbZniJo","part_id":"","time":"2026-03-06T19:22:33.745234739Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:33.750593872Z","message":"0110675f9239e0feded2504c996ae72376afd5a43f5d4868ad4a431f31f19426ab66dfde"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:33.750767429Z","message":"Decrypting message from 4917620338641@s.whatsapp.net"} +{"level":"debug","db_section":"whatsmeow","time":"2026-03-06T19:22:33.752355292Z","message":"No sessions or sender keys found to migrate from 4917620338641 to 236399445938270_1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:33.75328999Z","message":"Push name of 4917620338641@s.whatsapp.net changed from Marcyś to marcyś, dispatching event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:33.75532631Z","message":"Stored message secret key for 3A2EB49BDF37B21B90F4"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:33.756042262Z","message":""} +{"level":"debug","transaction_id":"1527","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.757121045Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1527","time":"2026-03-06T19:22:33.757244735Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","portal_mxid":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A72433F0AB0CAA2D892","sender_id":"","chat_id":"4915735701057@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A72433F0AB0CAA2D892","req_id":3110,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953279300683_208?ts=1772824952000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":493.858716,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":5000,"h":450,"mimetype":"video/mp4","size":54488,"w":322},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":5000,"fi.mau.autoplay":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":450,"mimetype":"video/mp4","size":54488,"w":322},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/uOvuMtDkUBdRwMHOeIHcghaB"},"m.relates_to":{"event_id":"$49NuLeUIt2Li5z0zohnOI51fSdBfNStlGkBb_YFBrAU","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/uOvuMtDkUBdRwMHOeIHcghaB"},"time":"2026-03-06T19:22:33.773521951Z","message":"Request completed"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","portal_mxid":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A72433F0AB0CAA2D892","sender_id":"","chat_id":"4915735701057@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A72433F0AB0CAA2D892","event_id":"$eiHQdad1GxyeVq_grY22fh3nEN6JZxQUvHVk0jwRQbs","part_id":"4915735701057@s.whatsapp.net:4917641870516@s.whatsapp.net:3A72433F0AB0CAA2D892","time":"2026-03-06T19:22:33.773732734Z","message":"Sent message part edit to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"sync ghost","reason":"push name event","picture_id":"","jid":"4917620338641@s.whatsapp.net","req_id":3124,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620338641:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":41.346656,"status_code":200,"response_length":34,"response_mime":"application/json","time":"2026-03-06T19:22:33.795248604Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953342110409_16?ts=1765812943000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":463.758261,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":106160},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"6Cjle6O24+K/k/sIseqJshMASmymgyaN7y/Bp5cX48k=","length":106160,"type":"WhatsApp Image Keys","sha256":"lF9x0JIO1Q8NZSeoDSCz8PtHLPWdkR1E0hzRecTZJIs=","enc_sha256":"ZBQUXpH0+lO6huhmLsRwRrgeObeD89HFwZMyO0WPzio=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:33.806055638Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A3210434A9C9C6ADDC0","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:35:43Z","event_id":"$NwuCQ9pO42rt9l3fFNjgTmN031OaXkgbfETlhcFJgHY","part_id":"","time":"2026-03-06T19:22:33.806194903Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1528","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.843564326Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1528","time":"2026-03-06T19:22:33.843669927Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3113,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953389562322_17?ts=1771768862000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":465.223552,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"leider noch nichts, nur ts3 momentan genutzt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.854918713Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AE85D296A4CEDC082EF","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-22T14:01:02Z","event_id":"$sMc82DoHYY2RNz7sTwt35Wp6j0ceTHEaYhVhPogVJzU","part_id":"","time":"2026-03-06T19:22:33.855063496Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1529","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:33.952531928Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1529","time":"2026-03-06T19:22:33.952729511Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953449298781_209?ts=1770382373000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":507.010284,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yessir","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:33.956475707Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A882CEFC4C6BC256D60","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:52:53Z","event_id":"$zI9J4cvfyo2cP7bxsu4aK146w9p0aIlyrQ7iY4v8Z4A","part_id":"","time":"2026-03-06T19:22:33.956589061Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953489197468_210?ts=1772482761000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":519.33862,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"schon wieder so viel Stress am Abend wegen Wichsern","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.008689672Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A784273E95F5C4BD08B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:19:21Z","event_id":"$wQngZgWMgnZ2xQelZed_sgX-5ZJmSKYKdKiQLOH97oM","part_id":"","time":"2026-03-06T19:22:34.008860436Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3112,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-143632363450509:matrix.theocloud.dev?user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":693.581308,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/yuvSCzvoPdUrAGuBDdwAnxKP","com.beeper.exclude_from_timeline":true,"displayname":"ben (WA)","membership":"join"},"time":"2026-03-06T19:22:34.039299625Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:34.040273715Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1530","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.058216317Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1530","time":"2026-03-06T19:22:34.058286579Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3122,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-59197668491519%3Amatrix.theocloud.dev","duration":328.258234,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<39737 bytes>","time":"2026-03-06T19:22:34.060256338Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3132,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915119111000%3Amatrix.theocloud.dev","duration":34.036133,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915119111000","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:34.074592359Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3133,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59197668491519:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-59197668491519%3Amatrix.theocloud.dev","duration":30.298178,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:34.090882635Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3125,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":326.612192,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<95846 bytes>","time":"2026-03-06T19:22:34.093543274Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3134,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915119111000:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915119111000%3Amatrix.theocloud.dev","duration":33.627556,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:34.108694703Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3116,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953563187045_211?ts=1772089411000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":558.514931,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie unpraktisch, dass die Ringbahn Verspätung hat und ich deswegen zu spät komme","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.1218418Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8AEBAC1D9F937C0706","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T07:03:31Z","event_id":"$ii3PbDivdPz2agBbZklC23ga8nXaIUvKLqBDiuwW-ag","part_id":"","time":"2026-03-06T19:22:34.121986513Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3135,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XgCeSqovhMkLpuITwngvYlJl?user_id=%40whatsapp_lid-59197668491519%3Amatrix.theocloud.dev","duration":35.980889,"status_code":200,"response_length":39737,"response_mime":"image/jpeg","time":"2026-03-06T19:22:34.126978415Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3136,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150517229604984:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":33.318923,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:34.127288095Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3117,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953568073206_212?ts=1771247253000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":562.092038,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"I seee","m.mentions":{"user_ids":["@whatsapp_491637362958:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$cC0qXei6LcGhASNXyj8cgLUgPGauv7-1wsSXlGiMnhc"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.130318758Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD905D0728677E31CB7","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T13:07:33Z","event_id":"$xtlx7xUH0e1A4EtNKnbOBOOIhltLMuMt_PUtG-D4UaY","part_id":"","time":"2026-03-06T19:22:34.130474227Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1531","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.161865575Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1531","time":"2026-03-06T19:22:34.16220843Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953596102071_213?ts=1772735348000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":568.251702,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und Steam ist eine Millardenfirma","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.164478512Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB6B0DAFC37F1B9489E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:29:08Z","event_id":"$YWW16F_L_7zupTLDBWpJdguV-6JtCtno9d2CFUWax2U","part_id":"","time":"2026-03-06T19:22:34.164587815Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3140,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VDLyBLzBYzaMMXCzGJRigjLW?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":40.254045,"status_code":200,"response_length":95846,"response_mime":"image/jpeg","time":"2026-03-06T19:22:34.167744263Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-59197668491519:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-59197668491519%3Amatrix.theocloud.dev","duration":77.076532,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XgCeSqovhMkLpuITwngvYlJl"},"time":"2026-03-06T19:22:34.204349402Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3129,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":353.891511,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<95846 bytes>","time":"2026-03-06T19:22:34.21363646Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3119,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953648625017_214?ts=1769969409000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":583.388883,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oder wenn du warten kannst, würde ich die Pizzen auch später machen :) (würde sie dann so oder so machen, aber wenns dir zu spät ist auch okay)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.232148416Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF9F0BBD69C977C6EE4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-01T18:10:09Z","event_id":"$Q2p8G1puoVq4K7LeChUjisZhfhdLLJERQa-guEhz3p0","part_id":"","time":"2026-03-06T19:22:34.232260234Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3144,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915171438124%3Amatrix.theocloud.dev","duration":29.9123,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915171438124","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:34.235278744Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3143,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150517229604984:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":69.247012,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VDLyBLzBYzaMMXCzGJRigjLW"},"time":"2026-03-06T19:22:34.237294879Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:34.238295648Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3145,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150517229604984:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":32.234344,"status_code":200,"response_length":68,"response_mime":"application/json","time":"2026-03-06T19:22:34.246245088Z","message":"Request completed"} +{"level":"debug","transaction_id":"1532","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.263761584Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1532","time":"2026-03-06T19:22:34.263911046Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3147,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915171438124:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915171438124%3Amatrix.theocloud.dev","duration":33.867744,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:34.269556671Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3120,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953674846296_10?ts=1769178008000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":596.087383,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bin so 17 Uhr da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.271086355Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AFCCC5448A49CF477E1","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-23T14:20:08Z","event_id":"$RMxiS3i1i7y6pI3mR_vWdovDy-0k9d4A4sRp0f11nfE","part_id":"","time":"2026-03-06T19:22:34.271258516Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3148,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-242047260864591%3Amatrix.theocloud.dev","duration":35.645228,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-242047260864591","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:34.274256353Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3149,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/xFzHZPHqVdJiEQnxwZXDOSpZ?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":35.454209,"status_code":200,"response_length":95846,"response_mime":"image/jpeg","time":"2026-03-06T19:22:34.281846734Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3121,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953683435421_8?ts=1770405057000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":601.407823,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":467422},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"IjpT8cLvJYGaJfYwqu+0WqOvFX4X4q16OHCQtnJ9SdU=","length":467422,"type":"WhatsApp Image Keys","sha256":"o6TYxR/GW6uVjqgZHhzLVf7/kMsV5l7IKxnGCHWByE4=","enc_sha256":"v+Z0m5aqF3VcCIFVFlkhxglTtrZw2sMd54xTs0pqkQg=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:34.285028466Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A6A15832DA75B4FCAB8","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:10:57Z","event_id":"$_7FIgtYf9sNXof07beugm_Do2CZSTHGSzMUSRH7skAM","part_id":"","time":"2026-03-06T19:22:34.285137839Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3152,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242047260864591:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-242047260864591%3Amatrix.theocloud.dev","duration":30.875843,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:34.30547582Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3153,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150517229604984:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":56.844223,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xFzHZPHqVdJiEQnxwZXDOSpZ"},"time":"2026-03-06T19:22:34.339004479Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3137,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915119111000:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915119111000%3Amatrix.theocloud.dev","duration":230.310684,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Laura ^^ (WA)"},"time":"2026-03-06T19:22:34.339250743Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:34.340266109Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:34.341596952Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1533","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.352705983Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1533","time":"2026-03-06T19:22:34.352870532Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3123,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953745992597_2?ts=1772376076000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":612.834147,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gar nicht?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.358939121Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:251745280225436@lid:AC0C6BEC0C5BA2F48BBA50766F539FF3","sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"message_ts":"2026-03-01T14:41:16Z","event_id":"$N7l3Mw0Fj3QETK9m2YczV0fYGap2Vk0KwgGbynjCeF0","part_id":"","time":"2026-03-06T19:22:34.35902831Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3156,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-108456681980086%3Amatrix.theocloud.dev","duration":28.966217,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-108456681980086","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:34.370795115Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3158,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-108456681980086:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-108456681980086%3Amatrix.theocloud.dev","duration":30.387366,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:34.401623815Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3127,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953807092935_215?ts=1765812981000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":613.226312,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab es nur bis zu den Wörtern: Da liegt der Hase, aber dann kam FF FF und ich wusst nicht mehr weiter","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.420451178Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA14A6317B50F1A20AC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:36:21Z","event_id":"$XMTQVYxIPXjOaknrTkeep5P1EMFOEIujxvX4jeBwPl0","part_id":"","time":"2026-03-06T19:22:34.420563345Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1534","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.43822162Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1534","time":"2026-03-06T19:22:34.438351666Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3150,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915171438124:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915171438124%3Amatrix.theocloud.dev","duration":201.917941,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sasha (WA)"},"time":"2026-03-06T19:22:34.471691822Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:34.472594253Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3128,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953856009369_216?ts=1771777178000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":622.218705,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"I see","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.478415042Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3CECC56648093E1A03","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-22T16:19:38Z","event_id":"$JTH3EL2JPqtzxDs3hvTt9td5RMe8GbkDZN5mHzjJw-w","part_id":"","time":"2026-03-06T19:22:34.478561571Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","has_name":true,"name_set":false,"has_avatar":true,"avatar_set":true,"time":"2026-03-06T19:22:34.479288419Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3155,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242047260864591:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-242047260864591%3Amatrix.theocloud.dev","duration":193.081714,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Liam (WA)"},"time":"2026-03-06T19:22:34.498802331Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:34.499800656Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3161,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620338641:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":27.337497,"status_code":200,"response_length":34,"response_mime":"application/json","time":"2026-03-06T19:22:34.507051464Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:34.509578006Z","message":""} +{"level":"debug","transaction_id":"1535","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.527283774Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1535","time":"2026-03-06T19:22:34.527415007Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3130,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824953957304525_17?ts=1770382381000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":598.128591,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sehr gut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.555655285Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC9B8C9E2E17A47621A4B0D6C9873497","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:53:01Z","event_id":"$Cp_RxYxEm0lbzdg0pfsOZ-UwoP3ubOkmoCESJKZ5vSQ","part_id":"","time":"2026-03-06T19:22:34.555762702Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3159,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-108456681980086:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-108456681980086%3Amatrix.theocloud.dev","duration":194.443777,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917656794491 (WA)"},"time":"2026-03-06T19:22:34.596282986Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:34.596862816Z","message":""} +{"level":"debug","transaction_id":"1536","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.614629905Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1536","time":"2026-03-06T19:22:34.614740674Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3131,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824954009710416_17?ts=1772482769606&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":613.210388,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$wQngZgWMgnZ2xQelZed_sgX-5ZJmSKYKdKiQLOH97oM","key":"😂"}},"time":"2026-03-06T19:22:34.623073688Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","target_message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A784273E95F5C4BD08B","target_part_id":"","reaction_sender_id":{"user_id":"491736748726"},"reaction_ts":"2026-03-02T20:19:29.606Z","event_id":"$N7aBv3bXCGvaUQRI9FBHZkIW2T8idAVMe6arJZz0nL4","time":"2026-03-06T19:22:34.623238795Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:34.650543396Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3166,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242047260864591:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-242047260864591%3Amatrix.theocloud.dev","duration":28.463354,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:34.679375936Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:34.680546072Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3138,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954122828880_217?ts=1772089427000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":568.39893,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kannst du Zimmi Bescheid sagen? das wäre so lieb","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.691388586Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A20F0910F68A229CA2E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T07:03:47Z","event_id":"$OX4bh-xmVPdDN1fLPHzmQ5W-2mbCCkQ2djsGaGCPbto","part_id":"","time":"2026-03-06T19:22:34.691538886Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3141,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954131864156_218?ts=1771247282000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":565.550974,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ahhh verstehe, ja mein zweites ist Krypto, was auch echt interessant ist","m.mentions":{"user_ids":["@whatsapp_491637362958:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$HDQ8TsKSAOqwZsKSupv6aMLBVFyEPo4S8idrVwkekQA"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.697588758Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0E297E46A6A54CE0F8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T13:08:02Z","event_id":"$FhPpzg0eybbe0SNtMGKqVkeFEGHqt_2elm-CVCHyd_g","part_id":"","time":"2026-03-06T19:22:34.69774276Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1537","content":{"pdu":1,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:34.702534773Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1537","time":"2026-03-06T19:22:34.702695131Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3167,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-182750908809456%3Amatrix.theocloud.dev","duration":32.127415,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-182750908809456","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:34.712973739Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3142,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954165288821_25?ts=1772735354000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":560.4805,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oh 😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.725902579Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3ACCDF9B662602391012","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:29:14Z","event_id":"$jxA2NIEfHIA9G4hS5kwATBwn-eNR3zZve6UXMA3tXRc","part_id":"","time":"2026-03-06T19:22:34.726024244Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3170,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182750908809456:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-182750908809456%3Amatrix.theocloud.dev","duration":27.268354,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:34.740567138Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:34.768384311Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:34.770533914Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3146,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954232963265_219?ts=1769969438000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":544.481954,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Komme dann ja 22 Uhr nach Hause","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.777586231Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A498A9C804E22AE805E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-01T18:10:38Z","event_id":"$OvOusWYpwPPWpl7LjqCDh2I-UlNNh_Kb6gngyZ1wNiU","part_id":"","time":"2026-03-06T19:22:34.777736043Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1538","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.788627237Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1538","time":"2026-03-06T19:22:34.788731092Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3163,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915119111000%3Amatrix.theocloud.dev","duration":270.860232,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<21278 bytes>","time":"2026-03-06T19:22:34.79055544Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3151,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954272305101_220?ts=1769178079000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":535.181277,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Guti","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.807636469Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2D47388F46063D0B0B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T14:21:19Z","event_id":"$hlTxB32eALeM1ZgqUO-l78YTUyFSnx3aRy3k8MMqsBM","part_id":"","time":"2026-03-06T19:22:34.807741791Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3175,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915119111000:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915119111000%3Amatrix.theocloud.dev","duration":23.410619,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:34.814307378Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3154,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824954285730659_221?ts=1770405069876&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":553.036368,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$_7FIgtYf9sNXof07beugm_Do2CZSTHGSzMUSRH7skAM","key":"😂"}},"time":"2026-03-06T19:22:34.838879682Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A6A15832DA75B4FCAB8","target_part_id":"","reaction_sender_id":{"user_id":"4917641870516","is_from_me":true},"reaction_ts":"2026-02-06T19:11:09.876Z","event_id":"$KCV9bNBblQDPPEdgLCfJQmbOSxCkjc83RCECCaTMa88","time":"2026-03-06T19:22:34.838990522Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3177,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ztfqfTbRIdqXXImmFRLzazJM?user_id=%40whatsapp_4915119111000%3Amatrix.theocloud.dev","duration":32.276808,"status_code":200,"response_length":21278,"response_mime":"image/jpeg","time":"2026-03-06T19:22:34.846733788Z","message":"Request completed"} +{"level":"debug","transaction_id":"1539","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.865250633Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1539","time":"2026-03-06T19:22:34.865361822Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3157,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954359630280_3?ts=1772376079000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":525.024474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Fänd ich gut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.884787035Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:251745280225436@lid:AC1EF64B906D4DE155D05A640F7FEDD0","sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"message_ts":"2026-03-01T14:41:19Z","event_id":"$76DuBt6DmnUJqwYsvxUVRvSKioO2W5zdIZYkM7ZXAOo","part_id":"","time":"2026-03-06T19:22:34.884943272Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3180,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915119111000:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915119111000%3Amatrix.theocloud.dev","duration":59.209639,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ztfqfTbRIdqXXImmFRLzazJM"},"time":"2026-03-06T19:22:34.906188154Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:34.907314709Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182750908809456:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-182750908809456%3Amatrix.theocloud.dev","duration":177.433289,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915121699472 (WA)"},"time":"2026-03-06T19:22:34.918234677Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:34.918898877Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3182,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917663302838%3Amatrix.theocloud.dev","duration":25.553447,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917663302838","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:34.933183005Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"sync ghost","reason":"push name event","picture_id":"","jid":"4917620338641@s.whatsapp.net","req_id":3126,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917620338641:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":1140.239543,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"marcyś (WA)"},"time":"2026-03-06T19:22:34.935674486Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"sync ghost","reason":"push name event","picture_id":"","jid":"4917620338641@s.whatsapp.net","time":"2026-03-06T19:22:34.936090536Z","message":"Synced ghost info"} +{"level":"debug","transaction_id":"1540","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:34.939928645Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1540","time":"2026-03-06T19:22:34.940007776Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3160,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954421534431_222?ts=1765812989000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":522.216818,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Glaub ich auch","m.mentions":{"user_ids":["@whatsapp_491731828379:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$WDnO0Cq65HWg3a-bR5verHKCIRZL5kEhnlTQVt2EXdY"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:34.943878012Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFB50CC2BBDD165E4BC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:36:29Z","event_id":"$vB9B7PeqV04qc3okrCe3pQec8At0UYftnME5QkCyK3I","part_id":"","time":"2026-03-06T19:22:34.943980401Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3183,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663302838:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663302838%3Amatrix.theocloud.dev","duration":33.544723,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:34.967079803Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"sync ghost","reason":"push name event","picture_id":"","jid":"4917620338641@s.whatsapp.net","req_id":3184,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236399445938270:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-236399445938270%3Amatrix.theocloud.dev","duration":32.569028,"status_code":200,"response_length":34,"response_mime":"application/json","time":"2026-03-06T19:22:34.968848347Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"sync ghost","reason":"push name event","picture_id":"","jid":"4917620338641@s.whatsapp.net","req_id":3187,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-236399445938270:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-236399445938270%3Amatrix.theocloud.dev","duration":53.173597,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"marcyś (WA)"},"time":"2026-03-06T19:22:35.022206606Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"sync ghost","reason":"push name event","picture_id":"","jid":"4917620338641@s.whatsapp.net","jid":"4917620338641@s.whatsapp.net","alternate_jid":"236399445938270@lid","time":"2026-03-06T19:22:35.022646891Z","message":"Synced alternate ghost with info"} +{"level":"debug","transaction_id":"1541","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.023424864Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1541","time":"2026-03-06T19:22:35.023747814Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3174,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915171438124%3Amatrix.theocloud.dev","duration":270.707277,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<39737 bytes>","time":"2026-03-06T19:22:35.05294032Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3188,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915171438124:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915171438124%3Amatrix.theocloud.dev","duration":31.835685,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:35.085137717Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3164,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824954556284563_223?ts=1770382480218&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":547.417282,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$Cp_RxYxEm0lbzdg0pfsOZ-UwoP3ubOkmoCESJKZ5vSQ","key":"❤️"}},"time":"2026-03-06T19:22:35.103802628Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC9B8C9E2E17A47621A4B0D6C9873497","target_part_id":"","reaction_sender_id":{"user_id":"4917641870516","is_from_me":true},"reaction_ts":"2026-02-06T12:54:40.218Z","event_id":"$3wak6vpyHHGu5GxUFD-t7hW54pAlzLSc8O7pH6wxU8g","time":"2026-03-06T19:22:35.103890699Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3179,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-108456681980086%3Amatrix.theocloud.dev","duration":264.492717,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<44463 bytes>","time":"2026-03-06T19:22:35.106533738Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3189,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/mSgbQOJxjmKyyrRBpVNjvZDL?user_id=%40whatsapp_4915171438124%3Amatrix.theocloud.dev","duration":41.847355,"status_code":200,"response_length":39737,"response_mime":"image/jpeg","time":"2026-03-06T19:22:35.127102687Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3191,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-108456681980086:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-108456681980086%3Amatrix.theocloud.dev","duration":25.945472,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:35.132925152Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3165,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954624537231_224?ts=1772482769000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":511.931086,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auch Yt und futtern","m.mentions":{"user_ids":["@whatsapp_491736748726:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$Iyhq6xEXM3gWgdyJxw5tS_Y8SI_WcleFQB8yjDlpqts"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.136614776Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA1FC8076A9858EE97B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:19:29Z","event_id":"$zSpyQabnGOw90sDuE7sQdlBXJwwvI3rws2aSwoT4Cn8","part_id":"","time":"2026-03-06T19:22:35.13670173Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3193,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/RwxeVmcOQFgdXMwsSIHhRZJS?user_id=%40whatsapp_lid-108456681980086%3Amatrix.theocloud.dev","duration":21.245301,"status_code":200,"response_length":44463,"response_mime":"image/jpeg","time":"2026-03-06T19:22:35.154281223Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3186,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663302838:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663302838%3Amatrix.theocloud.dev","duration":192.123899,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Melvin (WA)"},"time":"2026-03-06T19:22:35.159444937Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:35.160188337Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:35.178592597Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3192,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915171438124:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915171438124%3Amatrix.theocloud.dev","duration":51.213614,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mSgbQOJxjmKyyrRBpVNjvZDL"},"time":"2026-03-06T19:22:35.178573879Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"59197668491519@lid","alternate_jid":"4915171438124@s.whatsapp.net","time":"2026-03-06T19:22:35.179139252Z","message":"Synced alternate ghost with info"} +{"level":"debug","transaction_id":"1542","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.180862538Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1542","time":"2026-03-06T19:22:35.180968768Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3162,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954507730889_18?ts=1771790121000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":682.074175,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bist du schon auf linux?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.18995746Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AB3F5CEFD8F10204AD1","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-22T19:55:21Z","event_id":"$QkYvWZUttoid-RGbj1DqWn_GsiLy2ME4QkjMxQXlGzg","part_id":"","time":"2026-03-06T19:22:35.190131856Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3168,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954692467997_21?ts=1772089495000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":502.497289,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auf jeden Fall!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.195108323Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3A1C52005B0975A4D500","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-26T07:04:55Z","event_id":"$LX7_czIZF6_z8Z-DN4MPTanBE6Ob0ik1c6aM6CtjdYs","part_id":"","time":"2026-03-06T19:22:35.195269519Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3169,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954698703369_225?ts=1771247293000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":500.458456,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also doch nicht so schlimm wie ich dachte","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.199313243Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A46E539E20685A56BD8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T13:08:13Z","event_id":"$_7bHmbxyU0xvfP552nWM25dsthcMtorf_oIR2GKBqCE","part_id":"","time":"2026-03-06T19:22:35.199495461Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3196,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915750045774%3Amatrix.theocloud.dev","duration":41.86705,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915750045774","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:35.221716877Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3195,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-108456681980086:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-108456681980086%3Amatrix.theocloud.dev","duration":70.322512,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RwxeVmcOQFgdXMwsSIHhRZJS"},"time":"2026-03-06T19:22:35.22484022Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:35.225483258Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3171,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954726641160_26?ts=1772735357000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":502.766741,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Welches Spiel denn?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.229521604Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A33F33DB3CC3FC6D49A","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:29:17Z","event_id":"$mTbR-CJuPokbNgMx8-4pQEfpq1bZhhztas7y0tYt-uc","part_id":"","time":"2026-03-06T19:22:35.229634818Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3200,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915750045774:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915750045774%3Amatrix.theocloud.dev","duration":26.480324,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:35.248596488Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3201,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-165339312693343%3Amatrix.theocloud.dev","duration":29.561273,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-165339312693343","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:35.255239181Z","message":"Request completed"} +{"level":"debug","transaction_id":"1543","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.278291439Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1543","time":"2026-03-06T19:22:35.278482318Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3204,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-165339312693343:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-165339312693343%3Amatrix.theocloud.dev","duration":29.812774,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:35.285422678Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954778521628_226?ts=1769969457000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":513.623712,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ana ist aber sehr traurig, weil sie sich sehr auf die 24h Pizza gefreut hat","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.292268332Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACB04E34B827C36FFF9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-01T18:10:57Z","event_id":"$jaCCm-QpZ5L6FcDEB4UxHzHRnOYd4PIDhcHkVmyXphA","part_id":"","time":"2026-03-06T19:22:35.292424708Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3176,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954808502443_227?ts=1769183395000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":513.697954,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Musste meine Karte suchen, bin so 10min später da 🥸🤝","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.322354469Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3254A714A756D3A63F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T15:49:55Z","event_id":"$xnwHuX0h0m3qdCfs4gE8UcGN6IaMORy2aZArHxo0JdE","part_id":"","time":"2026-03-06T19:22:35.322502464Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:35.330140757Z","message":""} +{"level":"debug","transaction_id":"1544","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.363674585Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1544","time":"2026-03-06T19:22:35.363824816Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3178,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954839872000_9?ts=1770405090000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":526.658432,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geklaut","m.mentions":{"user_ids":["@whatsapp_491783743461:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$_7FIgtYf9sNXof07beugm_Do2CZSTHGSzMUSRH7skAM"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.366677032Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A8672AED39F1D931150","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:11:30Z","event_id":"$Nv5WMPIFRvUZATipUj9HmCaJ5S6SqiBYSwbE2Iuked8","part_id":"","time":"2026-03-06T19:22:35.366848913Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3181,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954885861068_4?ts=1772376090000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":515.704031,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mir fehlt aber auch nur noch eine","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.401700175Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:251745280225436@lid:ACD905CB72F448D7C713A7171F231BB2","sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"message_ts":"2026-03-01T14:41:30Z","event_id":"$89XUs5KIgsCdmQUh0qB3a7b3CnFdPMGcd_OkfrqKsPA","part_id":"","time":"2026-03-06T19:22:35.401823307Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3203,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915750045774:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915750045774%3Amatrix.theocloud.dev","duration":189.797175,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"🤎☁️ ~ Lukas (WA)"},"time":"2026-03-06T19:22:35.4385814Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"69114630545617@lid","alternate_jid":"4915750045774@s.whatsapp.net","time":"2026-03-06T19:22:35.439102004Z","message":"Synced alternate ghost with info"} +{"level":"debug","transaction_id":"1545","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.442698249Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1545","time":"2026-03-06T19:22:35.442779266Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3212,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915256127349%3Amatrix.theocloud.dev","duration":32.323392,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915256127349","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:35.472044757Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3185,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824954944517208_228?ts=1765812991000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":532.702227,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber sehr nice","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.477375882Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC1B7A991DA1B430D4B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:36:31Z","event_id":"$kmqvt7eGYzIXIMfp45WitbRZo7ImKaOBe-CF-xETHl0","part_id":"","time":"2026-03-06T19:22:35.477544831Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3205,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-165339312693343:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-165339312693343%3Amatrix.theocloud.dev","duration":195.094986,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mahmoud (WA)"},"time":"2026-03-06T19:22:35.480761902Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:35.481576123Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3213,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256127349:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256127349%3Amatrix.theocloud.dev","duration":27.84525,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:35.500376458Z","message":"Request completed"} +{"level":"debug","transaction_id":"1546","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.516652136Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1546","time":"2026-03-06T19:22:35.516768563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3190,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955104309124_229?ts=1770382409000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":496.032764,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mit dem Ultralight Band von Gornation krieg ich Halflay auch mit guter Form 10 Sekunden hin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.600492677Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4D3FE4F32802AF010B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:53:29Z","event_id":"$s3YkzHXYxk3HpJoQUFYHS2Z-zVhOncO_3Vjodigy2Gw","part_id":"","time":"2026-03-06T19:22:35.600630057Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3208,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917663302838%3Amatrix.theocloud.dev","duration":263.033574,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38192 bytes>","time":"2026-03-06T19:22:35.601676642Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3209,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-182750908809456%3Amatrix.theocloud.dev","duration":261.520583,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<63854 bytes>","time":"2026-03-06T19:22:35.609112044Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:35.63230245Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3217,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663302838:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917663302838%3Amatrix.theocloud.dev","duration":31.97006,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:35.634003108Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3194,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955137262004_18?ts=1772482775000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":499.914315,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Chillig","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.637285412Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AAF83C7BDD4DF1F4F21","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:19:35Z","event_id":"$e_gHguA7J5SWo46_JV5Lh_eXAwy2zTkyhoupJfnkJXw","part_id":"","time":"2026-03-06T19:22:35.637415109Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3218,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182750908809456:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-182750908809456%3Amatrix.theocloud.dev","duration":29.446313,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:35.638920279Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3215,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256127349:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256127349%3Amatrix.theocloud.dev","duration":161.713624,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Raha (WA)"},"time":"2026-03-06T19:22:35.662295697Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"95765573664918@lid","alternate_jid":"4915256127349@s.whatsapp.net","time":"2026-03-06T19:22:35.662859673Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3219,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/qDKdgiCTluyMVoobEcnjJhZo?user_id=%40whatsapp_4917663302838%3Amatrix.theocloud.dev","duration":32.257462,"status_code":200,"response_length":38192,"response_mime":"image/jpeg","time":"2026-03-06T19:22:35.666423791Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3221,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KLmjBtQffQHmUqxjRvQIPGCK?user_id=%40whatsapp_lid-182750908809456%3Amatrix.theocloud.dev","duration":31.928714,"status_code":200,"response_length":63854,"response_mime":"image/jpeg","time":"2026-03-06T19:22:35.670993147Z","message":"Request completed"} +{"level":"debug","transaction_id":"1547","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.694159248Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1547","time":"2026-03-06T19:22:35.694257167Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3223,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917640728131%3Amatrix.theocloud.dev","duration":36.383739,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917640728131","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:35.69982401Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3198,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955196178096_22?ts=1772089504000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":508.947776,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich bin EXTREM pünktlich heute","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.70525047Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:3AE49D4B17839FAADE39","sender_id":{"user_id":"4915150515988"},"message_ts":"2026-02-26T07:05:04Z","event_id":"$m6_27s9t3dUP789_EEhmzAJI5JQ78ws69elgIgkmM1U","part_id":"","time":"2026-03-06T19:22:35.705389107Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3199,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955200459912_18?ts=1771247320000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":511.805369,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ne ich finde es ist ne gute Wahl wenn man was lernen will","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.712409646Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3A1EA00212BCBE295304","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T13:08:40Z","event_id":"$okXtOIJIuluMiZzH28D8Matb6YtHpEYssmtAQykr8oQ","part_id":"","time":"2026-03-06T19:22:35.712522371Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3226,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917640728131:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917640728131%3Amatrix.theocloud.dev","duration":37.739726,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:35.737950103Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3224,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663302838:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917663302838%3Amatrix.theocloud.dev","duration":75.708674,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qDKdgiCTluyMVoobEcnjJhZo"},"time":"2026-03-06T19:22:35.74239102Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3225,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-182750908809456:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-182750908809456%3Amatrix.theocloud.dev","duration":76.638483,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KLmjBtQffQHmUqxjRvQIPGCK"},"time":"2026-03-06T19:22:35.748142595Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:35.749203778Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3202,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955230476556_230?ts=1772735364000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":518.645645,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Slay the Spire 2","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.749248546Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEFD7E565BE1901E02C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:29:24Z","event_id":"$BG9dCQh5bBj8ZjX3-HrrIAtM8EIO8GoU90ZLgHze9lw","part_id":"","time":"2026-03-06T19:22:35.749409603Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3231,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-70965862084760%3Amatrix.theocloud.dev","duration":29.709548,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-70965862084760","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:35.779195698Z","message":"Request completed"} +{"level":"debug","transaction_id":"1548","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.796068178Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1548","time":"2026-03-06T19:22:35.796150731Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3197,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824955191092955_19?ts=1771790123000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":610.636143,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":45580,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/viVffjkcRjieBtJDmMSHlgQW"},"time":"2026-03-06T19:22:35.801944142Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3ABE32480CD6FC38B309","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-22T19:55:23Z","event_id":"$nzOf0Bt-VL_szlpAqGLhB886gNhLbH0cMR5s3Dg_xOA","part_id":"","time":"2026-03-06T19:22:35.802067484Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3233,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70965862084760:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-70965862084760%3Amatrix.theocloud.dev","duration":29.172391,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:35.808740837Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3206,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955293261348_14?ts=1769969501000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":515.553172,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Das ist mir zu spät. Ich esse den Rest von gestern.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.808949036Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A76690EE00D86734CDF","sender_id":{"user_id":"491628947581"},"message_ts":"2026-02-01T18:11:41Z","event_id":"$zKfJwGRMf1CCduOicRsbPFzmKrtGfEXrnkXM4q1t5TQ","part_id":"","time":"2026-03-06T19:22:35.809092702Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3207,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955323489335_11?ts=1769183867000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":525.465876,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Passt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.849101182Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A22A86B172FF7DD9A8A","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-23T15:57:47Z","event_id":"$Xt3k_AlHpDEQ6nsbuTvFVrJ905XFml_ozCWkbB1RyeY","part_id":"","time":"2026-03-06T19:22:35.849236955Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1549","content":{"pdu":7,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.896110435Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1549","time":"2026-03-06T19:22:35.896318355Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3210,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955367685972_10?ts=1770405094000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":536.641747,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":405944},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"JSJ3QSe1ONVmTDtsFJ1CZb0YiYkbeRbSPqZK8UPr/4A=","length":405944,"type":"WhatsApp Image Keys","sha256":"PhOWCc9eWXeXwY+uDZAHmT6zTMH8JwjdqGmT07WrbBc=","enc_sha256":"keNpFMsOZcMpjHXKGpjmRQU4M928LRXrQrkwWuYZGTc=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:35.90457084Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A669F8C07CC0A62217D","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:11:34Z","event_id":"$Hb3j3cofyyTPr2eyt6v-z_W5R8AT0fv3tp6VaD-0N-s","part_id":"","time":"2026-03-06T19:22:35.904736436Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3211,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955402691375_5?ts=1772376101000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":556.253718,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"(aber die können wir wirklich gerne zusammen machen)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:35.959090575Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:251745280225436@lid:ACF0ECB53955C435D1B733F87B972D2D","sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"message_ts":"2026-03-01T14:41:41Z","event_id":"$XQrATLPW3NmNhqjeYOWJH-ujwtlQs5BCWHaDS1GpIWA","part_id":"","time":"2026-03-06T19:22:35.959223555Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3229,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917640728131:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917640728131%3Amatrix.theocloud.dev","duration":222.396025,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nemanja (WA)"},"time":"2026-03-06T19:22:35.960502924Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"100738508263616@lid","alternate_jid":"4917640728131@s.whatsapp.net","time":"2026-03-06T19:22:35.960939298Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"275883097071617@lid","alternate_jid":"4917647781821@s.whatsapp.net","time":"2026-03-06T19:22:35.961059916Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3222,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-165339312693343%3Amatrix.theocloud.dev","duration":320.775828,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<89322 bytes>","time":"2026-03-06T19:22:35.966255128Z","message":"Request completed"} +{"level":"debug","transaction_id":"1550","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:35.986563147Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1550","time":"2026-03-06T19:22:35.986659948Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3240,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917621496968%3Amatrix.theocloud.dev","duration":29.353842,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917621496968","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:35.990989746Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3241,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-165339312693343:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-165339312693343%3Amatrix.theocloud.dev","duration":32.365926,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:35.999091163Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3242,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621496968:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621496968%3Amatrix.theocloud.dev","duration":28.949037,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:36.020316908Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3214,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955478424633_231?ts=1765812999000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":543.389691,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"finally vorbei der Bums","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.021930752Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A50A5B3C9FB7FB0B0CD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:36:39Z","event_id":"$pGgzSH9i7-CF5VgSIy_gsv6xxYkGFi-nC2JQMdd-KJo","part_id":"","time":"2026-03-06T19:22:36.022003597Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3235,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70965862084760:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-70965862084760%3Amatrix.theocloud.dev","duration":216.610996,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917621844976 (WA)"},"time":"2026-03-06T19:22:36.025593207Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.026096281Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3243,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ShjhDtVYxzklMObAryvcXfnI?user_id=%40whatsapp_lid-165339312693343%3Amatrix.theocloud.dev","duration":35.039067,"status_code":200,"response_length":89322,"response_mime":"image/jpeg","time":"2026-03-06T19:22:36.034297991Z","message":"Request completed"} +{"level":"debug","transaction_id":"1551","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.047213212Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1551","time":"2026-03-06T19:22:36.047270762Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3246,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-165339312693343:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-165339312693343%3Amatrix.theocloud.dev","duration":25.145779,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ShjhDtVYxzklMObAryvcXfnI"},"time":"2026-03-06T19:22:36.059662445Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:36.060238504Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3247,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-190219840168190%3Amatrix.theocloud.dev","duration":17.916272,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-190219840168190","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:36.07837436Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3248,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-190219840168190:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-190219840168190%3Amatrix.theocloud.dev","duration":14.983388,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:36.093731474Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3216,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955601413337_232?ts=1770382474000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":521.486408,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber ohne nur so wenige Sekunden und daran arbeite ich gerade mit Negatives u.a. und Halflay ist ein so wichtiger Zwischenstep, weil ich mich noxh an diese Core/Arsch-Anspannung gewöhnen muss, um straight zu sein","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.123032305Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A77C77738AA683055BB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:54:34Z","event_id":"$d87O_0pjeu4JyOa8Ufq2iUomLBhPCnb6Q4ctpOnjCgE","part_id":"","time":"2026-03-06T19:22:36.123142027Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3220,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955638229609_233?ts=1772482776000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":520.052337,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und dann Steam Machine","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.158400958Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC82D452035A7B9A7E2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:19:36Z","event_id":"$i3MdX9f1qaOJYw7qbvuj-dioqb3-AaLtaWRI8WF32n4","part_id":"","time":"2026-03-06T19:22:36.158487771Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3244,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621496968:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621496968%3Amatrix.theocloud.dev","duration":142.507506,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917621496968 (WA)"},"time":"2026-03-06T19:22:36.163014315Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.163894885Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:36.191831908Z","message":""} +{"level":"debug","transaction_id":"1552","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.207637409Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1552","time":"2026-03-06T19:22:36.207743848Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3227,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955706169035_234?ts=1772089696000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":512.747332,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dankee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.219048508Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6309CC82B94F0BB618","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T07:08:16Z","event_id":"$55-O_AHOdcE_K9UMKvBAZ0zjezdFCw3zHrEyNiaQ8W4","part_id":"","time":"2026-03-06T19:22:36.219185887Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3228,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955713220095_19?ts=1771247330000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":511.227565,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich hab noch Quantencomputing","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.224563737Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3AD57B7E8272C533EA53","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-16T13:08:50Z","event_id":"$YAOD8ui3-VkSnX6Sl1RUNMU6NGfPdDxFHM128Qgbbsg","part_id":"","time":"2026-03-06T19:22:36.22468205Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3252,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-70965862084760:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-70965862084760%3Amatrix.theocloud.dev","duration":45.893384,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:36.238108237Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:36.238840392Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3232,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955750182476_235?ts=1772735393000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":499.310948,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Eig Singleplayer, aber hat nen Koop-Modus bekommen, wodurch ich es jetzt mit Domi zsm spielen wollte","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.249619909Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF923D833F0234D6742","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:29:53Z","event_id":"$gifKipI0ykjv6EXFgppIQVTH1uYR64HI6TeVHqGssBw","part_id":"","time":"2026-03-06T19:22:36.249754495Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3255,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-25628103458978%3Amatrix.theocloud.dev","duration":28.031169,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-25628103458978","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:36.267145693Z","message":"Request completed"} +{"level":"debug","transaction_id":"1553","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.296885762Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1553","time":"2026-03-06T19:22:36.297076641Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3257,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25628103458978:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-25628103458978%3Amatrix.theocloud.dev","duration":34.124553,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:36.301667928Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3249,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-190219840168190:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-190219840168190%3Amatrix.theocloud.dev","duration":213.341053,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tobi (WA)"},"time":"2026-03-06T19:22:36.307291832Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.308178758Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:36.313362516Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3236,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955809809143_236?ts=1769969511000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":505.401677,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oder so okay :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.315384169Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1DDE1E3D709FE0EA3D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-01T18:11:51Z","event_id":"$DoXuRL6Y2o_XEIflWoKvaXfqahiWAWNYvFoLVc0O2xI","part_id":"","time":"2026-03-06T19:22:36.31551645Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3234,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955802996385_20?ts=1771790146000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":539.799104,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bazzite wäre bestimmt auch was für dich, nutzt du bestimmt auch schon für deine „steam machine“","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.342940831Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A2118659BB358CBDE10","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-22T19:55:46Z","event_id":"$7a-WyTHZzNTcmcf7iFnJeQACEs6QRccF5dUlDADBj3k","part_id":"","time":"2026-03-06T19:22:36.343090223Z","message":"Sent message part to Matrix"} +{"level":"warn","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA3B010B25F4B263ECE","PartID":null},"time":"2026-03-06T19:22:36.34428243Z","message":"Reply target message not found in database"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3259,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621496968:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917621496968%3Amatrix.theocloud.dev","duration":36.460845,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:36.350198344Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3237,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955850059277_237?ts=1769183884000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":505.04199,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Top","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.355232221Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9CE116044FF14533CB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T15:58:04Z","event_id":"$B-UjYE2t1fGNt1Jsh0hwX6O7oyTUd6U1Hi6-tpCWFqA","part_id":"","time":"2026-03-06T19:22:36.355377912Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3262,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-112352217288823%3Amatrix.theocloud.dev","duration":24.835679,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-112352217288823","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:36.375994842Z","message":"Request completed"} +{"level":"debug","transaction_id":"1554","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.388347135Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1554","time":"2026-03-06T19:22:36.388468242Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3238,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955905571120_11?ts=1770405099000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":493.99854,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Den auch geklaut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.399681757Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AC1B7FA5685CB4C53AC","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:11:39Z","event_id":"$IaWUkIS85f_JmIMIzkpbLwpTfjk6ourQr310tOo2Yy4","part_id":"","time":"2026-03-06T19:22:36.399785263Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3264,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-112352217288823:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-112352217288823%3Amatrix.theocloud.dev","duration":32.819412,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:36.409197828Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3239,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824955959964720_3?ts=1772404445000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":485.084928,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dienstag!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.445179136Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3A649A5C46E202CE94DE","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-03-01T22:34:05Z","event_id":"$qVHumbltNQpawmHnGASEmpwWP8TiF8cDcUeEOVjZDqM","part_id":"","time":"2026-03-06T19:22:36.445321474Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1555","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.477255427Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1555","time":"2026-03-06T19:22:36.477370736Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:36.488057641Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3258,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25628103458978:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-25628103458978%3Amatrix.theocloud.dev","duration":196.904179,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"hanneskannes (WA)"},"time":"2026-03-06T19:22:36.498790992Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.499687556Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3230,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220327544094730:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":759.216499,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BLITLBPIJyUYvSjTlnsMDXhA","com.beeper.exclude_from_timeline":true,"displayname":"Lisa (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:36.502559677Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3245,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956022635110_17?ts=1765813008000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":492.470113,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Endlich Schluss mit lustig","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.515224235Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AD07124C2F8E6D25071","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:36:48Z","event_id":"$_qnIqG9-xP_K_84ldpvm_9Xc_ZqNYPU7xidAtgM2XgM","part_id":"","time":"2026-03-06T19:22:36.515390599Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1556","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.554004888Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1556","time":"2026-03-06T19:22:36.554116007Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3266,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-112352217288823:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-112352217288823%3Amatrix.theocloud.dev","duration":176.642536,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917621496968 (WA)"},"time":"2026-03-06T19:22:36.586003515Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.586841621Z","message":""} +{"level":"debug","transaction_id":"1557","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.60261723Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1557","time":"2026-03-06T19:22:36.602932637Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:36.618594403Z","message":"01101577b1c56689bc47aa375b8a42b90200cefe63d7a740b7cb4c3004c5e7748646fd48"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:36.618739046Z","message":"Decrypting message from 4917620338641@s.whatsapp.net"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:36.619710062Z","message":"Stored message secret key for 3AE8F52408059458D852"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.62030428Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3250,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956123726956_18?ts=1770382522000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":505.473964,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Benutz halbes band","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.629324889Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC204BE4AD1FE8136A9B6CA2AA824218","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:55:22Z","event_id":"$qzAfpCOOH5fgfttVp22yYpgDaEI8z7yNgZRMCNFixK4","part_id":"","time":"2026-03-06T19:22:36.629486365Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:36.656852637Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3251,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956159048884_238?ts=1772482782000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":497.924371,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und dann Sleepy Sleepy","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.657117408Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A869E641912EAE390E2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:19:42Z","event_id":"$i8m6O-t8VS0K2lIytJfni6vhdHwtz0asRAO2m4HdXOk","part_id":"","time":"2026-03-06T19:22:36.657290966Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3272,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-25628103458978:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-25628103458978%3Amatrix.theocloud.dev","duration":21.110226,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:36.678292099Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:36.67928316Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1558","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.70368449Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1558","time":"2026-03-06T19:22:36.703811464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3274,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-28973983600651%3Amatrix.theocloud.dev","duration":32.73162,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-28973983600651","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:36.712375026Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","req_id":3253,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956220620237_239?ts=1772089703000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":494.5431,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{"user_ids":["@whatsapp_4915150515988:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$m6_27s9t3dUP789_EEhmzAJI5JQ78ws69elgIgkmM1U"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.715313148Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","message_id":"4915150515988@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADB897C10159FC94B38","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T07:08:23Z","event_id":"$Mm75ZhP8Y9pkxYpSm8qgNxowJW_4dn51p4hgma8t05w","part_id":"","time":"2026-03-06T19:22:36.715478744Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:36.716472878Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","time":"2026-03-06T19:22:36.716544676Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.717315873Z","message":"c95807b48f54515c292be7f2e2e3e145108ec2e0e480bb80969b1bbbc0b72a4bbdbc2ba228288db8a4fe07f66a5af288b84c"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A64B45F476999272958","time":"2026-03-06T19:22:36.717542022Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.718381386Z","message":"034d951876843746ba15217ed49450e2f9bed36481b7653b5e663066492486f2933db4b2b31c867333495b7159452b3b7732"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A8AE9CD3D7FB5226E24","time":"2026-03-06T19:22:36.718548449Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915150515988@s.whatsapp.net","latest_message_ts":"2026-02-26T07:08:23Z","started_at":"2026-03-06T19:22:00.733024495Z","duration":"35.986982538s","time":"2026-03-06T19:22:36.720032386Z","message":"Event that took long finished handling"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3254,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956226125758_240?ts=1771249661000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":494.720429,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auch cool","m.mentions":{"user_ids":["@whatsapp_491637362958:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$YAOD8ui3-VkSnX6Sl1RUNMU6NGfPdDxFHM128Qgbbsg"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.72099111Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACB1ADFEDDEAA5D342C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T13:47:41Z","event_id":"$0H7xe5i03oCKO1xA9CXcpvZi7v7qvk3iNCsx0SNruDo","part_id":"","time":"2026-03-06T19:22:36.721169068Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:36.735542524Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3275,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-28973983600651:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-28973983600651%3Amatrix.theocloud.dev","duration":34.466012,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:36.747304511Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3256,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956250553839_241?ts=1772735399000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":500.002246,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Domi kam einmal durch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.750674956Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEB4FB1345E4F4AEE31","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:29:59Z","event_id":"$YVQFEXoRREMA3teVuVTyCTLz8O6EL9xO9DVhEB1IkbM","part_id":"","time":"2026-03-06T19:22:36.750796761Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:36.761789575Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:36.762597021Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3277,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-112352217288823:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-112352217288823%3Amatrix.theocloud.dev","duration":28.799853,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:36.764658134Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917621496968@s.whatsapp.net","alternate_jid":"112352217288823@lid","time":"2026-03-06T19:22:36.765231539Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917642065292@s.whatsapp.net","time":"2026-03-06T19:22:36.76564682Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","transaction_id":"1559","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.796480269Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1559","time":"2026-03-06T19:22:36.796654316Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3280,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917642065292%3Amatrix.theocloud.dev","duration":33.546749,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917642065292","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:36.799459807Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3260,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956316327178_15?ts=1770274118000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":491.682851,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Guten Morgen Theo, \ndie U2 und U3 sind wegen Glatteis unterbrochen. Vielleicht kannst du Homeoffice machen.","format":"org.matrix.custom.html","formatted_body":"Guten Morgen Theo, \u003cbr\u003edie U2 und U3 sind wegen Glatteis unterbrochen. Vielleicht kannst du Homeoffice machen.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.808186521Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A86C27C30E6A5A0A04F","sender_id":{"user_id":"491628947581"},"message_ts":"2026-02-05T06:48:38Z","event_id":"$bHLs1PAmwoKChtac06y4b1OTQ2bKDgVoiD0KUtdQR1w","part_id":"","time":"2026-03-06T19:22:36.808390181Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3270,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-190219840168190%3Amatrix.theocloud.dev","duration":245.108152,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38712 bytes>","time":"2026-03-06T19:22:36.814023304Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3281,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917642065292:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917642065292%3Amatrix.theocloud.dev","duration":29.953437,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:36.82975149Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3261,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956344627799_242?ts=1771794629000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":487.81939,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"meint ich doch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.832567458Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A447A9EF2491C3C5277","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-22T21:10:29Z","event_id":"$4sdrA5H-35JCf6DI3xsTC_w5seVIiT9K89cU3xs0zMU","part_id":"","time":"2026-03-06T19:22:36.832676691Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3263,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956356098474_12?ts=1769207200000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":483.393559,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auf süß nichtmal geschrieben ob er angekommen ist nachher liegst du noch unter der Brücke","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.839595889Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A053703C13FD4BD67C1","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-23T22:26:40Z","event_id":"$vtIbRfcdnYk8JPzu6cDtfcPtxXl1cPQQVCIUJ9RQ6E8","part_id":"","time":"2026-03-06T19:22:36.839705262Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3283,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-190219840168190:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-190219840168190%3Amatrix.theocloud.dev","duration":31.432206,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:36.845721469Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3287,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WrSjcFeZmOzQQVcltXsSxeuB?user_id=%40whatsapp_lid-190219840168190%3Amatrix.theocloud.dev","duration":20.323803,"status_code":200,"response_length":38712,"response_mime":"image/jpeg","time":"2026-03-06T19:22:36.866195782Z","message":"Request completed"} +{"level":"debug","transaction_id":"1560","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.879396518Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1560","time":"2026-03-06T19:22:36.879564838Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3265,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956400537883_12?ts=1770405119000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":485.713508,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":139484},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"lzngrzGIfzkY+2s/eOyWg6zoU5AmaOwGP0cUWkWqUH0=","length":139484,"type":"WhatsApp Image Keys","sha256":"727SumoxzLgs6WRDp0n+SV16vHJcMDiXES/YCbiG/FQ=","enc_sha256":"I8rC0T4f7N0ADiNW/5KCYv/XNWSNTOY9chsdrksmPaM=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:36.88649954Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A44807B65A161FEE355","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:11:59Z","event_id":"$IHiib6G3MOXAFEw_UydoDXWJQlTBJt73ZzyP63bTNNU","part_id":"","time":"2026-03-06T19:22:36.88667659Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3288,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-190219840168190:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-190219840168190%3Amatrix.theocloud.dev","duration":52.015682,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WrSjcFeZmOzQQVcltXsSxeuB"},"time":"2026-03-06T19:22:36.918478052Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:36.919767688Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3267,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956446159790_4?ts=1772404482000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":483.208897,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"15Uhr - East Side Mall\n17Uhr - Catnip Coffee (https://maps.apple/p/k7DaBk7SAJpD9q)","format":"org.matrix.custom.html","formatted_body":"15Uhr - East Side Mall\u003cbr\u003e17Uhr - Catnip Coffee (https://maps.apple/p/k7DaBk7SAJpD9q)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.929514657Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3A772921352953715E56","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-03-01T22:34:42Z","event_id":"$jsrFmLo6UpwiY6lPBVcnJLBgWbUB50CYGhO5dj5cUAw","part_id":"","time":"2026-03-06T19:22:36.929667263Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3278,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-28973983600651:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-28973983600651%3Amatrix.theocloud.dev","duration":188.95397,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917695853477 (WA)"},"time":"2026-03-06T19:22:36.936494688Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.937434624Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3290,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-201283793350851%3Amatrix.theocloud.dev","duration":21.916345,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-201283793350851","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:36.941967802Z","message":"Request completed"} +{"level":"debug","transaction_id":"1561","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:36.956728673Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1561","time":"2026-03-06T19:22:36.956860326Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3292,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-201283793350851:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-201283793350851%3Amatrix.theocloud.dev","duration":24.465376,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:36.966743976Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3269,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956516244559_243?ts=1765813013000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":464.839209,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Isso","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:36.981217656Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFCDF2FBA9EB6BD9BCB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:36:53Z","event_id":"$T1CFTjl0CnBAmcpM9F0PYyoqHgr2ghi4oftODo8XwUk","part_id":"","time":"2026-03-06T19:22:36.981369563Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3284,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917642065292:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917642065292%3Amatrix.theocloud.dev","duration":166.649093,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917642065292 (WA)"},"time":"2026-03-06T19:22:36.996620726Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:36.997233591Z","message":""} +{"level":"debug","transaction_id":"1562","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.009166412Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1562","time":"2026-03-06T19:22:37.009252457Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3271,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956630415476_19?ts=1770382529000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":443.242323,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Als zwischen progression","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.073863344Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACFF722F5A80CB98CDF32F828D8E2653","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:55:29Z","event_id":"$txX8SroYrYWdHYx0PDBOrc0qgUZnvKPSp9gURgAJuhY","part_id":"","time":"2026-03-06T19:22:37.074018254Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3273,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824956658202966_19?ts=1772482798000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":422.988083,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":531818,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/phuBTunFmkNihOCbZMQJdQbJ"},"time":"2026-03-06T19:22:37.081408467Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A9E9D6623A65CDC4774","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T20:19:58Z","event_id":"$EHErmJCCcIjj4EbU_GixnCvFNdFesBccLVJnfuhDHMM","part_id":"","time":"2026-03-06T19:22:37.081510437Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3293,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-201283793350851:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-201283793350851%3Amatrix.theocloud.dev","duration":129.465801,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917632063161 (WA)"},"time":"2026-03-06T19:22:37.096421189Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:37.097486143Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:37.112170397Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3268,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220327544094730:matrix.theocloud.dev?user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":610.23057,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BLITLBPIJyUYvSjTlnsMDXhA","com.beeper.exclude_from_timeline":true,"displayname":"Lisa (WA)","membership":"join"},"time":"2026-03-06T19:22:37.113585959Z","message":"Request completed"} +{"level":"debug","transaction_id":"1563","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.15060177Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1563","time":"2026-03-06T19:22:37.150705276Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3276,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956722466108_244?ts=1772001650000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":436.6833,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.159287556Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB57C64DD5E6150600D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-25T06:40:50Z","event_id":"$bYr00sQvHHEOAdFwHNfXlH5TOEV1bwGxQOME6o0yAKM","part_id":"","time":"2026-03-06T19:22:37.159415438Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:37.166873607Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3279,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956751538206_245?ts=1772735408000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":431.680714,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und ich werd gerade die ganze Zeit geblockt im Shop","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.183361118Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8BC1EDA8261156F412","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:30:08Z","event_id":"$NPhdWa7z98krCcRvzvulkVvUAt6lePOxTUP8q73a6l4","part_id":"","time":"2026-03-06T19:22:37.183482154Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1564","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.221091414Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1564","time":"2026-03-06T19:22:37.221370574Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3282,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956809256294_246?ts=1770274195000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":427.084397,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Guten Morgen, kann ich nicht weil meine ganzen Sachen inklusive Laptops auf der Arbeit sind.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.236503494Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1ACD1B7FF016B7ECF8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-05T06:49:55Z","event_id":"$cEUSSPf1R30UWSP_004tRpzMCc4vfpGPBLgNabEH_hs","part_id":"","time":"2026-03-06T19:22:37.23666015Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:37.250092273Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3285,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956833516474_21?ts=1771794802000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":419.915864,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"oh voll überlesen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.253551069Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AA2768B7C0AF463592B","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-22T21:13:22Z","event_id":"$ECWyFhyfJyR2LR4L6r1-6w-GrvUcZOT87hf5R9HZw4U","part_id":"","time":"2026-03-06T19:22:37.253666029Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3286,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956840396909_247?ts=1769207218000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":419.849513,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.260369484Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9FE39E66E32E7A3D36","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T22:26:58Z","event_id":"$uxAFXSHe1OjaUObbNmnsb_s9jtp4Z6XxUko96iU8MzA","part_id":"","time":"2026-03-06T19:22:37.260462514Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3302,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-201283793350851:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-201283793350851%3Amatrix.theocloud.dev","duration":28.791053,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:37.279249369Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:37.280531602Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1565","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.307221522Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1565","time":"2026-03-06T19:22:37.307345353Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3289,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956887662343_248?ts=1770405120000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":425.636569,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab gerade noch nen Dude kennengelernt, der mich wegen Handstand angesprochen hat und dann sind wir ins Gespräch gekommen und er meinte er hat auch Kollegen, die mir wegen nem Job als Entwickler helfen können","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.313446069Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9E7C8CFFE0FF9F642F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T19:12:00Z","event_id":"$Frb52apTi8Y_zsx1BZx-qRz9WZbVWiFNOutKJMu-chk","part_id":"","time":"2026-03-06T19:22:37.313608103Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3305,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-263328890937590%3Amatrix.theocloud.dev","duration":36.427111,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-263328890937590","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:37.317255403Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:37.325863455Z","message":"04c5c39303ed5314662f8873"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:37.326594144Z","message":""} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","portal_mxid":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A64B45F476999272958","sender_id":"","chat_id":"4915150515988@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915150515988"},"remote_target_message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A64B45F476999272958","time":"2026-03-06T19:22:37.326712457Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:37.33407641Z","message":"5eb24ff9eb83af6ac3373c18"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:37.334765473Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3308,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-263328890937590:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-263328890937590%3Amatrix.theocloud.dev","duration":21.34769,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:37.339163227Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3291,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824956930554189_6?ts=1772404659688&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":452.401639,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$jsrFmLo6UpwiY6lPBVcnJLBgWbUB50CYGhO5dj5cUAw","key":"❤️"}},"time":"2026-03-06T19:22:37.383095721Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363192861790277@g.us:27956059590853@lid:3A772921352953715E56","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2026-03-01T22:37:39.688Z","event_id":"$Vt2bTisQa0KPWYS5Fp_2NVoYGcY0lfBL7arh3fWiZ4o","time":"2026-03-06T19:22:37.383234079Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"1566","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.384214244Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1566","time":"2026-03-06T19:22:37.384361961Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","portal_mxid":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A64B45F476999272958","sender_id":"","chat_id":"4915150515988@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915150515988"},"remote_target_message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A64B45F476999272958","req_id":3310,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=HWR+Gruppenteilung_231018_123755.pdf&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":63.946338,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<67214 bytes>","time":"2026-03-06T19:22:37.409224669Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3294,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824956982327309_18?ts=1765813023000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":440.147964,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hast du Domi noch abgefragt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.422654906Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A77BD21397B52140810","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:37:03Z","event_id":"$iExLzrD5OisfKLJxALMNizW9_cZ7p34zmlaTHxpQ6RM","part_id":"","time":"2026-03-06T19:22:37.4228659Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1567","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.471592992Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1567","time":"2026-03-06T19:22:37.471698244Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3301,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-28973983600651%3Amatrix.theocloud.dev","duration":285.762184,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<57942 bytes>","time":"2026-03-06T19:22:37.52797898Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3309,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-263328890937590:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-263328890937590%3Amatrix.theocloud.dev","duration":193.236624,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ella 🦖 (WA)"},"time":"2026-03-06T19:22:37.532611334Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:37.533392938Z","message":""} +{"level":"debug","transaction_id":"1568","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.546831277Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1568","time":"2026-03-06T19:22:37.546946796Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3314,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-28973983600651:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-28973983600651%3Amatrix.theocloud.dev","duration":22.568741,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:37.550940932Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3295,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957075022654_249?ts=1770382538000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":500.645143,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo das war mein Plan als nächstes dann","m.mentions":{"user_ids":["@whatsapp_4917657607100:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$qzAfpCOOH5fgfttVp22yYpgDaEI8z7yNgZRMCNFixK4"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.575811603Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A60CE4D0C0C833F7D4D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:55:38Z","event_id":"$ZVAqgAfa8usxIsX_rVNMcShMRU1E-QLeTfcDmFSnq_A","part_id":"","time":"2026-03-06T19:22:37.57594982Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3296,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957082115061_250?ts=1772482804000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":498.835462,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Fr","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.5810754Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA07A4C94E903B7E8DF","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T20:20:04Z","event_id":"$gXB7CQA3FFSJyttMI3WMeCJpl8AvQD6AcVaSoaMWrS8","part_id":"","time":"2026-03-06T19:22:37.581222278Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3306,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917642065292%3Amatrix.theocloud.dev","duration":288.166711,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<20867 bytes>","time":"2026-03-06T19:22:37.582674298Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3315,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/rMLVmiEfHSLnEBGlYhVXEAnP?user_id=%40whatsapp_lid-28973983600651%3Amatrix.theocloud.dev","duration":35.386392,"status_code":200,"response_length":57942,"response_mime":"image/jpeg","time":"2026-03-06T19:22:37.586486565Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3318,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917642065292:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917642065292%3Amatrix.theocloud.dev","duration":34.938075,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:37.617970454Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3319,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-28973983600651:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-28973983600651%3Amatrix.theocloud.dev","duration":50.11311,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rMLVmiEfHSLnEBGlYhVXEAnP"},"time":"2026-03-06T19:22:37.637014678Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:37.638150731Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3320,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/kaUwolMfJTMtqxeBdadGryPO?user_id=%40whatsapp_4917642065292%3Amatrix.theocloud.dev","duration":24.152832,"status_code":200,"response_length":20867,"response_mime":"image/jpeg","time":"2026-03-06T19:22:37.642249701Z","message":"Request completed"} +{"level":"debug","transaction_id":"1569","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.651937164Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1569","time":"2026-03-06T19:22:37.652069235Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3298,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957159998341_251?ts=1772001674000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":515.550239,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Meine Ringbahn macht paar Faxen, kannst du Bescheid sagen, dass ich später komme?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.675670244Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3215C66A500C588C9F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-25T06:41:14Z","event_id":"$HxG86YUCh654vYpkkQmUrxVuWv23-o10q5dKQ9v4s6A","part_id":"","time":"2026-03-06T19:22:37.67576949Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3321,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-80565550247962%3Amatrix.theocloud.dev","duration":39.502682,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-80565550247962","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:37.677970567Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:37.691051035Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3324,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80565550247962:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-80565550247962%3Amatrix.theocloud.dev","duration":30.690202,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:37.709061594Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3299,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957184088524_27?ts=1772735409000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":526.733512,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Interessant 😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.7109752Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A6B58267812CFD2A848","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:30:09Z","event_id":"$z5_cmLHkc0lI2RuM5ZdT5i3miUyKAywtDFda9e8pUHo","part_id":"","time":"2026-03-06T19:22:37.711134999Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3322,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917642065292:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917642065292%3Amatrix.theocloud.dev","duration":69.617455,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kaUwolMfJTMtqxeBdadGryPO"},"time":"2026-03-06T19:22:37.712084015Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3325,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-263328890937590:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-263328890937590%3Amatrix.theocloud.dev","duration":30.060435,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:37.721412699Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:37.722268057Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3328,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917642922234%3Amatrix.theocloud.dev","duration":34.734136,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917642922234","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:37.747862991Z","message":"Request completed"} +{"level":"debug","transaction_id":"1570","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.757489342Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1570","time":"2026-03-06T19:22:37.757588518Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3329,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-220538484043940%3Amatrix.theocloud.dev","duration":44.923765,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-220538484043940","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:37.767482505Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3330,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917642922234:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917642922234%3Amatrix.theocloud.dev","duration":38.630353,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:37.786807704Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3300,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957237583115_252?ts=1770274231000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":550.818109,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich kann auch Bus fahren keine Sorge","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.78857967Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1A433CE33510332ABC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-05T06:50:31Z","event_id":"$93xyRWmmqXMnM4q-t6f5SNmMDmTF-QF0-mf1mRzL07U","part_id":"","time":"2026-03-06T19:22:37.78875253Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3303,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957254283434_22?ts=1771796460000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":550.724171,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"was für hardware hat die kiste?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.805115372Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A84C802CEA1CD29C492","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-22T21:41:00Z","event_id":"$HzS0CchAh6qWMTKDnFFOwU4xBeonmcjcjaBajlSZOFM","part_id":"","time":"2026-03-06T19:22:37.805225792Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3331,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220538484043940:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220538484043940%3Amatrix.theocloud.dev","duration":39.986968,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:37.807779014Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3304,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957261017271_253?ts=1769207227000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":564.154548,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bin ich natürlich Bro","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.825281122Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A437496FF57221B5E66","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T22:27:07Z","event_id":"$boIlJzG9rJO1HZJ5eEO0o-V5fKL7ctff3rdhukZp5M4","part_id":"","time":"2026-03-06T19:22:37.825422971Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1571","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.852919359Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1571","time":"2026-03-06T19:22:37.853030199Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3307,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957315103425_254?ts=1770405131000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":557.815809,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab ich alle selber geklaut haha","m.mentions":{"user_ids":["@whatsapp_491783743461:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$IaWUkIS85f_JmIMIzkpbLwpTfjk6ourQr310tOo2Yy4"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.873067858Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A20BE67E88E742C17D8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T19:12:11Z","event_id":"$2AH747BIfTPn9PHTk_jn3qNSTFT_v5ji4FFoqhaaeZA","part_id":"","time":"2026-03-06T19:22:37.873200768Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3297,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-69114630545617:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":794.100376,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"🤎☁️ ~ Lukas (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:37.908586182Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3326,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80565550247962:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-80565550247962%3Amatrix.theocloud.dev","duration":215.012657,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lorena (WA)"},"time":"2026-03-06T19:22:37.924266805Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:37.925170144Z","message":""} +{"level":"debug","transaction_id":"1572","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:37.929547784Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1572","time":"2026-03-06T19:22:37.929679367Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3311,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957383825293_7?ts=1772404504000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":548.044326,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Phänomenaler Plan!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.932005112Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AB3FED91E3532838EC8","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-01T22:35:04Z","event_id":"$BE7aIehSSA0xhLIlCJ69ZMFCXr8UcYciNW3kzg9blR0","part_id":"","time":"2026-03-06T19:22:37.932135787Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3332,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917642922234:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917642922234%3Amatrix.theocloud.dev","duration":190.756318,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Burak C. (WA)"},"time":"2026-03-06T19:22:37.977748056Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:37.978608862Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3313,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957423931133_255?ts=1765813036000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":554.68625,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja bei Domi war es genauso wie bei mir","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:37.978812172Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2AF726EA52CAF2FBE3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:37:16Z","event_id":"$WvLZjw-ziQtUPEJLxGA-A3Ag3dwvq7eAHwiIRA8Lsqg","part_id":"","time":"2026-03-06T19:22:37.97888858Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","portal_mxid":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A64B45F476999272958","sender_id":"","chat_id":"4915150515988@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915150515988"},"remote_target_message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A64B45F476999272958","req_id":3312,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957409754422_23?ts=1772824957000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":571.656998,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"HWR Gruppenteilung_231018_123755.pdf","info":{"mimetype":"application/pdf","size":67214},"m.mentions":{},"m.new_content":{"body":"","filename":"HWR Gruppenteilung_231018_123755.pdf","info":{"mimetype":"application/pdf","size":67214},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/zyUrKdIsSthckdiUQbOftDHk"},"m.relates_to":{"event_id":"$eQt79VUs1TRRG63omaVEpjmEn71cCVIyz08HeyaSCow","rel_type":"m.replace"},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/zyUrKdIsSthckdiUQbOftDHk"},"time":"2026-03-06T19:22:37.98165014Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","portal_mxid":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A64B45F476999272958","sender_id":"","chat_id":"4915150515988@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915150515988"},"remote_target_message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A64B45F476999272958","event_id":"$NTgSZ8uNH51tR50RHKzo4Wtcosne8nJ1UqHBcLrNGzY","part_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A64B45F476999272958","time":"2026-03-06T19:22:37.981745894Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","portal_mxid":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A8AE9CD3D7FB5226E24","sender_id":"","chat_id":"4915150515988@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915150515988"},"remote_target_message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A8AE9CD3D7FB5226E24","time":"2026-03-06T19:22:37.982174167Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3335,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220538484043940:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220538484043940%3Amatrix.theocloud.dev","duration":180.732495,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ahmad Bakdad (WA)"},"time":"2026-03-06T19:22:37.988741709Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:37.989593644Z","message":""} +{"level":"debug","transaction_id":"1573","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.002492731Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1573","time":"2026-03-06T19:22:38.002951455Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","portal_mxid":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A8AE9CD3D7FB5226E24","sender_id":"","chat_id":"4915150515988@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915150515988"},"remote_target_message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A8AE9CD3D7FB5226E24","req_id":3341,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=HWR+Gruppenteilung_231018_123755.pdf&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":37.593756,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<67214 bytes>","time":"2026-03-06T19:22:38.029868222Z","message":"Request completed"} +{"level":"debug","transaction_id":"1574","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.045086839Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1574","time":"2026-03-06T19:22:38.045242308Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:38.0841389Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3316,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957576951427_20?ts=1770382546000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":512.98703,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":16798},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"kh/514GF+uw94a+uNtXHxHSxEaPiC23deqR/ceNMmwE=","length":16798,"type":"WhatsApp Image Keys","sha256":"qu/voT8k9qPWvwZNkzlsuCKKhxxYBTAsnDhxJcCb/Uo=","enc_sha256":"4u2Us4oIVjjN9H2Qg1+yLSeU0ZavXO1QajWlK3viels=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:38.090175292Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC4293F6E712DCDA8F09F81BB7E3976","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:55:46Z","event_id":"$ZApyc4o4kWuULjAgGrSvXz6vMDoKeL6XwZ1jUN8mayE","part_id":"","time":"2026-03-06T19:22:38.090359047Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3317,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957582067369_256?ts=1772488762000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":513.570142,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Domi ich sag ehrlich, ohne Hate (hab mich wieder beruhigt), ich würd am liebsten morgen einfach mit dir zocken und sonst nichts. Deswegen wenn sie morgen auf kein Kompromiss eingehen, lass einfach ne kein Bock wir dippen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.095774053Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A84EFCB4A43114446B1","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T21:59:22Z","event_id":"$2YKte4oZqdPyLpM5Ts6wrY2lzdXqIdHaQ-YzTxlyF8s","part_id":"","time":"2026-03-06T19:22:38.095902423Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:38.127566784Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:38.13884637Z","message":""} +{"level":"debug","transaction_id":"1575","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.152869009Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1575","time":"2026-03-06T19:22:38.152988649Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3323,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957676401003_257?ts=1772001690000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":501.463135,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"so maybe 10min denk ich","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.177997397Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8E45555CDFC3771522","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-25T06:41:30Z","event_id":"$Gtfeizz1g7oiVF1OCPGU3s_IrzAaLyLmr8gNEQ5rAbI","part_id":"","time":"2026-03-06T19:22:38.178160758Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3327,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957712007049_258?ts=1772735417000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":504.636346,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Server einfach alle überlastet","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.216823588Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8D72721A7CA55860E5","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:30:17Z","event_id":"$wtIYfVQepIN9eNXGTasxb60xHJBjCE8xC5N8tfDIP0s","part_id":"","time":"2026-03-06T19:22:38.216987578Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1576","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.256201951Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1576","time":"2026-03-06T19:22:38.256280524Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3339,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/join?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":328.612193,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:22:38.261801201Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3333,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957789674168_16?ts=1770274365000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":487.145343,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"👍","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.276958916Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3AE3D37612582024C5F6","sender_id":{"user_id":"491628947581"},"message_ts":"2026-02-05T06:52:45Z","event_id":"$xJAnMKowMVmjudE3lFwMs1-Z6u9XNwlMfvMIpY0Mjq8","part_id":"","time":"2026-03-06T19:22:38.277088822Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3334,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957806078426_259?ts=1771828405000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":484.848651,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ryzen 5 5600\nRX 6750 XT (aus dem Homeserver)\n16GB RAM\nB450 ITX Board\n2x 1TB M.2 NVMe SSD","format":"org.matrix.custom.html","formatted_body":"Ryzen 5 5600\u003cbr\u003eRX 6750 XT (aus dem Homeserver)\u003cbr\u003e16GB RAM\u003cbr\u003eB450 ITX Board\u003cbr\u003e2x 1TB M.2 NVMe SSD","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.291052305Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5B759F652BE2DE1F62","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T06:33:25Z","event_id":"$Xp5FPp4e4Vs5Yz0I1Wz2OLS75p5fGTkubrqXMdxj5T0","part_id":"","time":"2026-03-06T19:22:38.291165728Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3336,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957826201782_260?ts=1769207230000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":487.962357,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"sorry","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.314328407Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD93E018FF506E3330D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T22:27:10Z","event_id":"$djyXOaKPETOphwFGZfsApBsItvDgZ39V6f18urq5-Pk","part_id":"","time":"2026-03-06T19:22:38.314493514Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1577","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.359097821Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1577","time":"2026-03-06T19:22:38.359215645Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3337,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957874211524_13?ts=1770405145000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":511.680212,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"🙏🏼🙏🏼🙌🏼","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$Frb52apTi8Y_zsx1BZx-qRz9WZbVWiFNOutKJMu-chk"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.386019827Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A2430EBE4AB4D98000C","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:12:25Z","event_id":"$UBcVE8mBaCrpIT1swUbmPb7XXq9f16z7BBiLgvjVHCU","part_id":"","time":"2026-03-06T19:22:38.386153714Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3345,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-80565550247962%3Amatrix.theocloud.dev","duration":279.851926,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64292 bytes>","time":"2026-03-06T19:22:38.400304374Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3355,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80565550247962:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-80565550247962%3Amatrix.theocloud.dev","duration":31.2312,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:38.431849026Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3346,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917642922234%3Amatrix.theocloud.dev","duration":302.554416,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55007 bytes>","time":"2026-03-06T19:22:38.441013022Z","message":"Request completed"} +{"level":"debug","transaction_id":"1578","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.445578677Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1578","time":"2026-03-06T19:22:38.445690494Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3356,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/gEpAtUolsUFuYvYeQshIKWzJ?user_id=%40whatsapp_lid-80565550247962%3Amatrix.theocloud.dev","duration":21.133413,"status_code":200,"response_length":64292,"response_mime":"image/jpeg","time":"2026-03-06T19:22:38.453095514Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3357,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917642922234:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917642922234%3Amatrix.theocloud.dev","duration":19.40433,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:38.460731362Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3340,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824957979396472_261?ts=1765813057000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":504.441626,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Nur die Speicherrechnung war kacke und paar andere Fragen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.483954315Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AAB780B7601935FF70E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:37:37Z","event_id":"$vtM14JZG7HgsnsuqlrvaG6PXEwjBBZfrd9Ya5uVOFcI","part_id":"","time":"2026-03-06T19:22:38.484064247Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3359,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/hMBPiiIHutZuSyfFxmjDSkEu?user_id=%40whatsapp_4917642922234%3Amatrix.theocloud.dev","duration":30.794756,"status_code":200,"response_length":55007,"response_mime":"image/jpeg","time":"2026-03-06T19:22:38.491651485Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3349,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-220538484043940%3Amatrix.theocloud.dev","duration":277.195967,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<36783 bytes>","time":"2026-03-06T19:22:38.507667281Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3358,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-80565550247962:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-80565550247962%3Amatrix.theocloud.dev","duration":57.498993,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gEpAtUolsUFuYvYeQshIKWzJ"},"time":"2026-03-06T19:22:38.510864448Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:38.512112738Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3362,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220538484043940:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-220538484043940%3Amatrix.theocloud.dev","duration":28.483328,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:38.536455959Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3363,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-21273073692847%3Amatrix.theocloud.dev","duration":29.949107,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-21273073692847","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:38.542426071Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3361,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917642922234:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917642922234%3Amatrix.theocloud.dev","duration":61.693228,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hMBPiiIHutZuSyfFxmjDSkEu"},"time":"2026-03-06T19:22:38.553578615Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:38.554955693Z","message":""} +{"level":"debug","transaction_id":"1579","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.556997949Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1579","time":"2026-03-06T19:22:38.55708602Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3364,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/UDgNXJkTzFRtrSHexhqovmzd?user_id=%40whatsapp_lid-220538484043940%3Amatrix.theocloud.dev","duration":22.610157,"status_code":200,"response_length":36783,"response_mime":"image/jpeg","time":"2026-03-06T19:22:38.559232621Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3365,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21273073692847:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-21273073692847%3Amatrix.theocloud.dev","duration":25.203678,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:38.567953747Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","portal_mxid":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A8AE9CD3D7FB5226E24","sender_id":"","chat_id":"4915150515988@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915150515988"},"remote_target_message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A8AE9CD3D7FB5226E24","req_id":3342,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21JdcZMudmtLVULzaxtn:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958030206259_24?ts=1772824957000&user_id=%40whatsapp_4915150515988%3Amatrix.theocloud.dev","duration":558.644905,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"HWR Gruppenteilung_231018_123755.pdf","info":{"mimetype":"application/pdf","size":67214},"m.mentions":{},"m.new_content":{"body":"","filename":"HWR Gruppenteilung_231018_123755.pdf","info":{"mimetype":"application/pdf","size":67214},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/UivVPQRaGAsSESIjETZFyvEf"},"m.relates_to":{"event_id":"$RhEUfAPcQhMK3P-3zQZafjtSVmc2NXZX9Pi74CItUyk","rel_type":"m.replace"},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/UivVPQRaGAsSESIjETZFyvEf"},"time":"2026-03-06T19:22:38.589083948Z","message":"Request completed"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","portal_mxid":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A8AE9CD3D7FB5226E24","sender_id":"","chat_id":"4915150515988@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4915150515988"},"remote_target_message_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A8AE9CD3D7FB5226E24","event_id":"$sherr9iGQHRvp-Br8rGMPXnPZkKv9NifHRaUBy5dSvI","part_id":"4915150515988@s.whatsapp.net:4915150515988@s.whatsapp.net:4A8AE9CD3D7FB5226E24","time":"2026-03-06T19:22:38.589211759Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3366,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220538484043940:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-220538484043940%3Amatrix.theocloud.dev","duration":51.642375,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UDgNXJkTzFRtrSHexhqovmzd"},"time":"2026-03-06T19:22:38.611172384Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:38.612166448Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3338,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-69114630545617:matrix.theocloud.dev?user_id=%40whatsapp_lid-69114630545617%3Amatrix.theocloud.dev","duration":718.389677,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"🤎☁️ ~ Lukas (WA)","membership":"join"},"time":"2026-03-06T19:22:38.627772829Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3343,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958091177039_262?ts=1770382555000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":537.677297,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":18112},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"WNVkGQ4LqYFHjHCT4QuT01d/0lOn9sCJxZBMu3CSiAM=","length":18112,"type":"WhatsApp Image Keys","sha256":"QAIf/Qe0LNcFZc247zWg/AsPcHB7iSjLvb+7o+FfwZE=","enc_sha256":"SU5tdlSfUPfX01K1dU6SuHXzJU17dDsBH3nc2hnEdFc=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:38.629102834Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC765CED2DF7AB1D5FD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:55:55Z","event_id":"$adatG32Wuy1_rj1DMniA563gtWm5hNxKPG8gDa6oFWs","part_id":"","time":"2026-03-06T19:22:38.629271643Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3344,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958096650712_20?ts=1772488787000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":535.455477,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo können wir machen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.632219263Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AAB0F24FDDC74ABFF8B","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T21:59:47Z","event_id":"$EBTpdJE7SRQlFrnSXF7JD_ymACYnmfIskVPgQkDkogI","part_id":"","time":"2026-03-06T19:22:38.632360973Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3368,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-142237052747971%3Amatrix.theocloud.dev","duration":38.447157,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-142237052747971","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:38.65093935Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3372,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-142237052747971:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-142237052747971%3Amatrix.theocloud.dev","duration":13.996168,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:38.665249529Z","message":"Request completed"} +{"level":"debug","transaction_id":"1580","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.667639878Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1580","time":"2026-03-06T19:22:38.667751626Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3347,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958179030154_20?ts=1772001902000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":525.141808,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo wenn er fragt sag ich Bescheid. Er wird Safe auch ein paar Minuten zu spät kommen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.704287691Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3AB1ECA6A150A0C52C81","sender_id":{"user_id":"491637362958"},"message_ts":"2026-02-25T06:45:02Z","event_id":"$6W8iWRI9F4us_7c0fb-iwFwqFIhsi5gzYIFK96fPcw0","part_id":"","time":"2026-03-06T19:22:38.704414943Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:38.712573002Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917642922234@s.whatsapp.net","alternate_jid":"21079833710744@lid","time":"2026-03-06T19:22:38.71267567Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917696505264@s.whatsapp.net","alternate_jid":"195562762690743@lid","time":"2026-03-06T19:22:38.71278176Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3348,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958217975426_263?ts=1772735420000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":519.173023,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"könnt weinen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.737299727Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEF0BEAE73FA825FB7B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:30:20Z","event_id":"$FAH1CginMz92pX9NMrhmEEHHi-H3ecGooyqrS1nrHd4","part_id":"","time":"2026-03-06T19:22:38.737423767Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1581","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.743530351Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1581","time":"2026-03-06T19:22:38.743830463Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3375,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915779028498%3Amatrix.theocloud.dev","duration":31.971876,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915779028498","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:38.745269072Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3367,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21273073692847:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-21273073692847%3Amatrix.theocloud.dev","duration":179.345498,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"الزير (WA)"},"time":"2026-03-06T19:22:38.747521763Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:38.748508214Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3377,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915779028498:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915779028498%3Amatrix.theocloud.dev","duration":31.394212,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:38.776985606Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3351,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958277653706_264?ts=1770734456000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":513.666873,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Halloo Mama, ist mein Paket heute angekommen und ist es bei uns?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.791441755Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A353B5F74A3DF1BE568","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-10T14:40:56Z","event_id":"$DZkfgrlb0MbImLg6Lcnjwx_Eq004CfTI0I4xkbhAsQ8","part_id":"","time":"2026-03-06T19:22:38.791560487Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3352,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958291822105_265?ts=1771828438000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":509.959928,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auf 1080p kannst du immer alles auf maximalen Settings spielen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.801902721Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2E682EFF01E44EC61A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T06:33:58Z","event_id":"$HpRquj8uVig9a0R1T8Pobmg0JnycngqGrxSvElnEywQ","part_id":"","time":"2026-03-06T19:22:38.802030532Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1582","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.818299157Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1582","time":"2026-03-06T19:22:38.818430181Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3353,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958315521592_266?ts=1769207241000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":504.794469,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geht gleich so in Heier","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.820452113Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2D11CF83B05E70EA62","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T22:27:21Z","event_id":"$5j6hVZsJFYwq6Xfc6E2ci0eqoJoD4pdJEqQr_JUsvTw","part_id":"","time":"2026-03-06T19:22:38.820586489Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3373,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-142237052747971:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-142237052747971%3Amatrix.theocloud.dev","duration":172.93601,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nico (WA)"},"time":"2026-03-06T19:22:38.838427262Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:38.839352252Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3354,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958386976316_14?ts=1770405148000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":477.135278,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Macher","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.864313298Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A998E34232EEC25674A","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:12:28Z","event_id":"$Ce_G9AKJlmr5QKC2mfGZVBneeE41HQ5vCbyL52qYE5E","part_id":"","time":"2026-03-06T19:22:38.864477078Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1583","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:38.886953348Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1583","time":"2026-03-06T19:22:38.887106303Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:38.912111768Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3350,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/invite?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":678.924221,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@whatsapp_4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:22:38.940900237Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3383,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-21273073692847:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-21273073692847%3Amatrix.theocloud.dev","duration":32.344834,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:38.944830328Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3378,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915779028498:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915779028498%3Amatrix.theocloud.dev","duration":168.817065,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alex (WA)"},"time":"2026-03-06T19:22:38.945970711Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:38.946001023Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"66662220976313@lid","alternate_jid":"4915779028498@s.whatsapp.net","time":"2026-03-06T19:22:38.948470154Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958484680744_267?ts=1765813060000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":471.225789,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"sonst alles supi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:38.956020167Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB208DF98CEDA985210","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:37:40Z","event_id":"$TwG0bYt5QdliZyCax0JDhUkY-_sQkSibbk_Jt1d3yOQ","part_id":"","time":"2026-03-06T19:22:38.956153146Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3385,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-173460928122963%3Amatrix.theocloud.dev","duration":27.106738,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-173460928122963","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:38.973422331Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3386,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915157953288%3Amatrix.theocloud.dev","duration":26.867039,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915157953288","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:38.975955158Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:38.999178321Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3388,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-173460928122963:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-173460928122963%3Amatrix.theocloud.dev","duration":25.686916,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:38.99953717Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3389,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157953288:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915157953288%3Amatrix.theocloud.dev","duration":24.52118,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:39.000747186Z","message":"Request completed"} +{"level":"debug","transaction_id":"1584","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.007258505Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1584","time":"2026-03-06T19:22:39.007381497Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1585","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.054004313Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1585","time":"2026-03-06T19:22:39.054368261Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3370,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958630083768_268?ts=1770382576000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":438.309297,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ich lieb den Sticker, holt mich jedes Mal ab","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.068530165Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6756C4DAA7141BEAB9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:56:16Z","event_id":"$4ezMXFS63xUiCpMEu8aDePsDunOkpGtZkr0vnrmBAgA","part_id":"","time":"2026-03-06T19:22:39.068621729Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3371,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958633123301_21?ts=1772488819000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":438.705652,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wollt aber maybe noch quick im gym beine verbrennen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.071956065Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A129D55C44D4C90D0AB","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T22:00:19Z","event_id":"$EFRFhegTD1jzxVg3nlqAdRFhVXrWiOrmNXyEfxK_5eI","part_id":"","time":"2026-03-06T19:22:39.072136119Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1586","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.134379563Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1586","time":"2026-03-06T19:22:39.134502695Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3374,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958705113295_269?ts=1772001937000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":452.255948,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Safe","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.157502293Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEDC4E34A28E99FC6BB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-25T06:45:37Z","event_id":"$e3lJiJrzalWHysrHwMKojmXcOpvKMefGbBhs55DM07o","part_id":"","time":"2026-03-06T19:22:39.15766286Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3390,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-173460928122963:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-173460928122963%3Amatrix.theocloud.dev","duration":163.648881,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491622315148 (WA)"},"time":"2026-03-06T19:22:39.163413527Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:39.164212383Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3391,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157953288:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915157953288%3Amatrix.theocloud.dev","duration":165.082672,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Anna vdM (WA)"},"time":"2026-03-06T19:22:39.165997549Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"165566878843022@lid","alternate_jid":"4915157953288@s.whatsapp.net","time":"2026-03-06T19:22:39.166486165Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3376,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958738271721_270?ts=1772735427000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":466.894246,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"hab mich seit nem Jahr so drauf gefreut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.205298178Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A15ADB32F4564A16F1A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:30:27Z","event_id":"$ubESAsL2ziO89IfYqBUXj1iIf8eL78iQmHB1YOyaRps","part_id":"","time":"2026-03-06T19:22:39.205413069Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3396,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491604034979%3Amatrix.theocloud.dev","duration":42.865864,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491604034979","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:39.209896589Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3398,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491604034979:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491604034979%3Amatrix.theocloud.dev","duration":21.064898,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:39.231285625Z","message":"Request completed"} +{"level":"debug","transaction_id":"1587","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.239531196Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1587","time":"2026-03-06T19:22:39.239610188Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3379,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958797548409_271?ts=1770734659000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":465.830549,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"In der Sendungsverfolgung steht, dass es um 13 Uhr zugestellt wurde","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.263509702Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8A11A94989CA155700","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-10T14:44:19Z","event_id":"$dWJAFlBHJfV8h2oAHmRGFaPVFoIrF-48EIGhhq0HWYQ","part_id":"","time":"2026-03-06T19:22:39.263632275Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3392,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-142237052747971%3Amatrix.theocloud.dev","duration":257.094053,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<54808 bytes>","time":"2026-03-06T19:22:39.268644222Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3380,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958803632782_23?ts=1771828511000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":473.255474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"geil das klingt doch sehr nice","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.277017185Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A3B028D95B4ADEB868A","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T06:35:11Z","event_id":"$oEwflMWk7wyi_UQnEUe75L2Ey11hwl7q-0Vh_FCqJPk","part_id":"","time":"2026-03-06T19:22:39.277151492Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3369,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":654.146021,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:39.282779377Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3381,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958821321160_13?ts=1769208132000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":465.805197,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":405944},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"I3tWOrQpBbgp35Qc50m/EH4oCRQ7zHaIC5Pzx4yPxBY=","length":405944,"type":"WhatsApp Image Keys","sha256":"PhOWCc9eWXeXwY+uDZAHmT6zTMH8JwjdqGmT07WrbBc=","enc_sha256":"VnLbm9ihKRuWCIftrRxXBqH+B1/kI+5O/LUIKYMtBCM=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:39.287428214Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF78F9B4C7E8B71157D","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-23T22:42:12Z","event_id":"$5Y7e9aEd40_46FeRFHoNS2iwNPtoMXuK5ZmRIHhLLLM","part_id":"","time":"2026-03-06T19:22:39.28760673Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3401,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-142237052747971:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-142237052747971%3Amatrix.theocloud.dev","duration":32.04535,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:39.300964332Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:39.313294973Z","message":""} +{"level":"debug","transaction_id":"1588","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.319470701Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1588","time":"2026-03-06T19:22:39.319552416Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3405,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/RUfAjzzmEtZNjyJaBdBobqpK?user_id=%40whatsapp_lid-142237052747971%3Amatrix.theocloud.dev","duration":26.03934,"status_code":200,"response_length":54808,"response_mime":"image/jpeg","time":"2026-03-06T19:22:39.327127222Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3382,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958865414151_15?ts=1770405163000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":464.826009,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Du attractest die opportunities wie ein Magnet","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.330371114Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3ACE351004E8E0496A06","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T19:12:43Z","event_id":"$Jedg2p-vJq4On9cI2itRzMoAQkBMXjZgJujGVUsw3zI","part_id":"","time":"2026-03-06T19:22:39.330449756Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3406,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-173460928122963:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-173460928122963%3Amatrix.theocloud.dev","duration":19.381072,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:39.332969244Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:39.333586369Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3409,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-95344432046332%3Amatrix.theocloud.dev","duration":14.21701,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-95344432046332","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:39.347985039Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3407,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-142237052747971:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-142237052747971%3Amatrix.theocloud.dev","duration":27.440165,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RUfAjzzmEtZNjyJaBdBobqpK"},"time":"2026-03-06T19:22:39.354754844Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:39.355427075Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3410,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95344432046332:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-95344432046332%3Amatrix.theocloud.dev","duration":11.346006,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:39.359618725Z","message":"Request completed"} +{"level":"debug","transaction_id":"1589","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.36242296Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1589","time":"2026-03-06T19:22:39.362745421Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3399,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491604034979:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491604034979%3Amatrix.theocloud.dev","duration":139.240567,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Martín (WA)"},"time":"2026-03-06T19:22:39.370694163Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"188257056890939@lid","alternate_jid":"491604034979@s.whatsapp.net","time":"2026-03-06T19:22:39.371211554Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"1975802458312@lid","alternate_jid":"4917663302838@s.whatsapp.net","time":"2026-03-06T19:22:39.371323371Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3411,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-267950527361145%3Amatrix.theocloud.dev","duration":16.383794,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-267950527361145","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:39.372037997Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3387,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824958956966808_19?ts=1765813078000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":444.219135,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Na dann ist das doch perfekt!!!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.401356707Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A5894A549BA134FC6FF","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:37:58Z","event_id":"$LeTN9e0pAw6coi1P7eQjcLy8slq6hFRgCaZA1Cj_sgU","part_id":"","time":"2026-03-06T19:22:39.401503516Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3414,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-267950527361145:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-267950527361145%3Amatrix.theocloud.dev","duration":29.284139,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:39.40170955Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3413,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-35442120491030%3Amatrix.theocloud.dev","duration":32.703963,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-35442120491030","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:39.404672536Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3417,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-35442120491030:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-35442120491030%3Amatrix.theocloud.dev","duration":19.670779,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:39.424686658Z","message":"Request completed"} +{"level":"debug","transaction_id":"1590","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.460109997Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1590","time":"2026-03-06T19:22:39.460223561Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3393,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959069168733_21?ts=1770382594000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":457.984196,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Junge, ich war da so dünn hahaha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.52730281Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACFEA37361EDD029D62C891E85A1A9B5","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:56:34Z","event_id":"$0ddayVLJTonTdMn9jv3UQAhSKwr2eter86qHwKIIfHQ","part_id":"","time":"2026-03-06T19:22:39.527514641Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3412,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95344432046332:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-95344432046332%3Amatrix.theocloud.dev","duration":167.706225,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491629094532 (WA)"},"time":"2026-03-06T19:22:39.527532172Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:39.530346743Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3394,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959073019692_22?ts=1772488826000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":458.032736,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wird spontane sache","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.531185897Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A7DC28BB504A8C52B45","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T22:00:26Z","event_id":"$3mpJoS1Khgr7dXVntv61l-U97ghQlyE9g03rfQAarbY","part_id":"","time":"2026-03-06T19:22:39.531316921Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3415,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-267950527361145:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-267950527361145%3Amatrix.theocloud.dev","duration":169.550688,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Zaki (WA)"},"time":"2026-03-06T19:22:39.571450767Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:39.571997981Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3384,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/join?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":658.760566,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:22:39.600210182Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3418,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-35442120491030:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-35442120491030%3Amatrix.theocloud.dev","duration":175.388448,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Taha (WA)"},"time":"2026-03-06T19:22:39.600256068Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:39.602691466Z","message":""} +{"level":"debug","transaction_id":"1591","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.615602147Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1591","time":"2026-03-06T19:22:39.615697552Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3395,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959158531557_272?ts=1772001939000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":459.835014,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dankee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.618490751Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A84E90E380D1C6B8ED9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-25T06:45:39Z","event_id":"$gHChzIb75cDUthd8RvyqeuYsDnA3C3r8S0xI-7xtCT8","part_id":"","time":"2026-03-06T19:22:39.618601241Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3397,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959205985915_28?ts=1772735429000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":438.861888,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.644979735Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A619AC7A5355F92EE88","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:30:29Z","event_id":"$6gZKhOsroUdAvf01Yk19MpM6641xWaXTvID3UglUOBA","part_id":"","time":"2026-03-06T19:22:39.645129616Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1592","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.685939605Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1592","time":"2026-03-06T19:22:39.68622519Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3400,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959264256944_17?ts=1770734688000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":434.757961,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Es wurde beim Nachbarn Dietz abgegeben.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.69912316Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A99EC675174F657A015","sender_id":{"user_id":"491628947581"},"message_ts":"2026-02-10T14:44:48Z","event_id":"$jQ81AhSzNOZd2CLNbqRUZa-GzahlCmsQ5ayqJDnh5l0","part_id":"","time":"2026-03-06T19:22:39.699238539Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:39.700381856Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3402,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959277739144_24?ts=1771828522000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":439.921954,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"haste den ram auch ausm homeserver genommen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.717788071Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AB89DF2A51EE9A140A5","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T06:35:22Z","event_id":"$5qaPMgZxdWA-X0wjtaPP6_4L_Ru1fQ7jBjD7x8g1Sc4","part_id":"","time":"2026-03-06T19:22:39.717935368Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3404,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959288663652_273?ts=1769208146000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":432.931447,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":405944},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"I3tWOrQpBbgp35Qc50m/EH4oCRQ7zHaIC5Pzx4yPxBY=","length":405944,"type":"WhatsApp Image Keys","sha256":"PhOWCc9eWXeXwY+uDZAHmT6zTMH8JwjdqGmT07WrbBc=","enc_sha256":"VnLbm9ihKRuWCIftrRxXBqH+B1/kI+5O/LUIKYMtBCM=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:39.721813566Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACF22D8185A2E17637C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T22:42:26Z","event_id":"$lUahnpvug5nkWt6yxMGUD_i1xwB65t8VW0gaDe3DHM4","part_id":"","time":"2026-03-06T19:22:39.721999067Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1593","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.765059581Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1593","time":"2026-03-06T19:22:39.765182992Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3408,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959330965820_274?ts=1770405203000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":438.818377,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂 oder","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.769905164Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A756B7122A4F0B8C067","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T19:13:23Z","event_id":"$I7dfPW-fC6n6C8MHnW2nG5NnfNyqrqburlAYuhdAsNo","part_id":"","time":"2026-03-06T19:22:39.770045826Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:39.784398399Z","message":""} +{"level":"debug","transaction_id":"1594","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.822208176Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1594","time":"2026-03-06T19:22:39.822358197Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:39.854853681Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3416,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959402426690_275?ts=1765813082000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":463.795557,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ja man","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.866413544Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A682A1688C6954049E8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:38:02Z","event_id":"$PZKroA_DIo0O62yejFX9ab4W7XI-QlIoAYUad8EjNmw","part_id":"","time":"2026-03-06T19:22:39.866596391Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3403,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":590.000076,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:22:39.873250118Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3431,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":45.500173,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:22:39.919267263Z","message":"Request completed"} +{"level":"debug","transaction_id":"1595","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.925379085Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1595","time":"2026-03-06T19:22:39.925464013Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3425,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-95344432046332%3Amatrix.theocloud.dev","duration":230.994229,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35058 bytes>","time":"2026-03-06T19:22:39.938379513Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3419,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959528628625_22?ts=1770382600000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":442.46847,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"\"Drahtig\"","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.971240411Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC145E8CFCBE767D4991725F8FA7AE3A","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:56:40Z","event_id":"$r_P-jlXfb0meT5TSaLq-537KwIRiugJ_FtjUeTpRC8Q","part_id":"","time":"2026-03-06T19:22:39.971370806Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3434,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95344432046332:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-95344432046332%3Amatrix.theocloud.dev","duration":35.651024,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:39.974353138Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3420,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959532276343_276?ts=1772488827000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":446.776477,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ja mach das liebend gerne","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:39.979202911Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A32A559E13CDD208626","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T22:00:27Z","event_id":"$9gKjzigMamnu0NsdGwELfXz6pl7AulgWTpYV7P-6tTY","part_id":"","time":"2026-03-06T19:22:39.979376539Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1596","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:39.986164433Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1596","time":"2026-03-06T19:22:39.986419427Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3436,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/NAEpmEpcUFNmEdNMZrwlMWxh?user_id=%40whatsapp_lid-95344432046332%3Amatrix.theocloud.dev","duration":31.078036,"status_code":200,"response_length":35058,"response_mime":"image/jpeg","time":"2026-03-06T19:22:40.005598097Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3429,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-35442120491030%3Amatrix.theocloud.dev","duration":242.908891,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<54263 bytes>","time":"2026-03-06T19:22:40.03748316Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3439,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-35442120491030:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-35442120491030%3Amatrix.theocloud.dev","duration":25.447497,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:40.063319259Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3438,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95344432046332:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-95344432046332%3Amatrix.theocloud.dev","duration":57.846179,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NAEpmEpcUFNmEdNMZrwlMWxh"},"time":"2026-03-06T19:22:40.063745366Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:40.064805222Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3422,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959619293447_21?ts=1772604589000&user_id=%40whatsapp_491637362958%3Amatrix.theocloud.dev","duration":447.904219,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey man, ich muss dich leider heute alleine lassen. Mir geht’s nicht so gut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.067354951Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:491637362958@s.whatsapp.net:3AF4E72F7254E9CEF3FD","sender_id":{"user_id":"491637362958"},"message_ts":"2026-03-04T06:09:49Z","event_id":"$gv-NYd5jPxQOjBrqJKQh506zJyaD9a_0plPgbrEqqt4","part_id":"","time":"2026-03-06T19:22:40.067478432Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1597","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:40.091895547Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1597","time":"2026-03-06T19:22:40.092013301Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3440,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ywuJqvpuslyoOQUgPrmGswYF?user_id=%40whatsapp_lid-35442120491030%3Amatrix.theocloud.dev","duration":46.429353,"status_code":200,"response_length":54263,"response_mime":"image/jpeg","time":"2026-03-06T19:22:40.109992292Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3441,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-269247389384889%3Amatrix.theocloud.dev","duration":48.169332,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-269247389384889","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:40.113265586Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3423,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959645990421_29?ts=1772735432000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":472.433431,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oh noo","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.118545448Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AE7A4D28F6A25178E76","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:30:32Z","event_id":"$gJ_osZp15cYkDoFpn_iKjUZC5ET-SJUWcdqriEaZc3k","part_id":"","time":"2026-03-06T19:22:40.118670745Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3444,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-269247389384889:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-269247389384889%3Amatrix.theocloud.dev","duration":29.529634,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:40.143232712Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3421,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959600661572_277?ts=1772479035000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":552.022328,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Realisiere das jetzt erst, aber warum so spät? Als ob wir alle nach IT-Sicherheit nach Hause fahren und dann nochmal zur East Side Mall, ganzen Tag in der Bahn hocken oder wie?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.152826657Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3AE093E019853E7AD613","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:17:15Z","event_id":"$wOFHUsOy-yjZcCtwoYEZgZ2biDPNw4aD6lU3LmvWVao","part_id":"","time":"2026-03-06T19:22:40.152982056Z","message":"Sent message part to Matrix"} +{"level":"warn","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"120363192861790277@g.us:195790463058158@lid:3AE093E019853E7AD613","PartID":null},"time":"2026-03-06T19:22:40.154089404Z","message":"Reply target message not found in database"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3443,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-35442120491030:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-35442120491030%3Amatrix.theocloud.dev","duration":63.085043,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ywuJqvpuslyoOQUgPrmGswYF"},"time":"2026-03-06T19:22:40.173438978Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3424,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959699964828_278?ts=1770734724000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":490.067192,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Perfekt, also hast du es?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.190162136Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6A9982B4960B11D5FF","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-10T14:45:24Z","event_id":"$UeTI016aE-i76haPvtFDbpOkZQ_gmnk_xKfAu0UQh7Y","part_id":"","time":"2026-03-06T19:22:40.190291204Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1598","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:40.194217454Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1598","time":"2026-03-06T19:22:40.194349455Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3448,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491792429046%3Amatrix.theocloud.dev","duration":36.319903,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491792429046","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:40.210636518Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3426,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959719558501_279?ts=1771830013000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":492.638362,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ne hab gebrauchten gekauft","m.mentions":{"user_ids":["@whatsapp_4917620338641:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$5qaPMgZxdWA-X0wjtaPP6_4L_Ru1fQ7jBjD7x8g1Sc4"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.21239284Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE88359B798C85CCC7F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:00:13Z","event_id":"$TeqP0j3GId_I5mMIeMoUonTglBGOu4Ljn76oO5C7G4E","part_id":"","time":"2026-03-06T19:22:40.212549636Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3427,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959722822297_280?ts=1769208161000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":498.853201,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Diese Katze ist einfach mein Lieblingsticker haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.22182978Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9F920BD525BF5354C5","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-23T22:42:41Z","event_id":"$OduV_9-hFK13GwT1mVTPDJM_JstGqevcRi3KHagdJUM","part_id":"","time":"2026-03-06T19:22:40.221978753Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3450,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792429046:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491792429046%3Amatrix.theocloud.dev","duration":25.783438,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:40.236833213Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3433,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-267950527361145%3Amatrix.theocloud.dev","duration":306.363819,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41296 bytes>","time":"2026-03-06T19:22:40.244697026Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3428,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959770860116_281?ts=1770405215000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":496.814438,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"das wird noch was 100% irgendwo komm ich unter","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.267800479Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A803A41BDC026DBF2A8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T19:13:35Z","event_id":"$qJgduIEHiFLoM7ryKjr1_GVtxi9TeJe0hnMdG1yANrg","part_id":"","time":"2026-03-06T19:22:40.267946589Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3454,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-267950527361145:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-267950527361145%3Amatrix.theocloud.dev","duration":35.725127,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:40.280784774Z","message":"Request completed"} +{"level":"debug","transaction_id":"1599","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:40.283003102Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1599","time":"2026-03-06T19:22:40.283149072Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3456,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BZQJeRWULQLwtUfTZUsqzUfv?user_id=%40whatsapp_lid-267950527361145%3Amatrix.theocloud.dev","duration":27.172111,"status_code":200,"response_length":41296,"response_mime":"image/jpeg","time":"2026-03-06T19:22:40.308129534Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3446,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-269247389384889:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-269247389384889%3Amatrix.theocloud.dev","duration":191.961236,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917643137297 (WA)"},"time":"2026-03-06T19:22:40.335450828Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:40.336386713Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3457,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-267950527361145:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-267950527361145%3Amatrix.theocloud.dev","duration":38.602207,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BZQJeRWULQLwtUfTZUsqzUfv"},"time":"2026-03-06T19:22:40.347008386Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:40.347780073Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3430,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959867458663_20?ts=1765813084000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":504.304734,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wir sollten alle bestanden haben lol","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.371910765Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A2CC73D73163F2A8343","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:38:04Z","event_id":"$FMQHTYDiZUtnY0TIkv1f6sp4YdG0MCGTRoc7JpgNsVc","part_id":"","time":"2026-03-06T19:22:40.372042766Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3458,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-209178178109568%3Amatrix.theocloud.dev","duration":28.060364,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-209178178109568","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:40.376036483Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3453,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792429046:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491792429046%3Amatrix.theocloud.dev","duration":162.890954,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Taha (WA)"},"time":"2026-03-06T19:22:40.39992636Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:40.400950875Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3460,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-209178178109568:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-209178178109568%3Amatrix.theocloud.dev","duration":25.470266,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:40.401963238Z","message":"Request completed"} +{"level":"debug","transaction_id":"1600","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:40.429781947Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1600","time":"2026-03-06T19:22:40.429899352Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3435,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959971987723_282?ts=1770382607000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":501.020545,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.473147672Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3E9D7F3F3409148162","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:56:47Z","event_id":"$xkXp6t0Q7vQLXiNpM2IpFYDHr6ePO7XtrJlwjsoICQ8","part_id":"","time":"2026-03-06T19:22:40.473286868Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3437,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824959980248379_283?ts=1772488834000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":497.918922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie haben den Tag ja Zeit","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.478308592Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9D4F466FFA3DDCB2D9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T22:00:34Z","event_id":"$omkaDq0OPF9ls31lYBVVYXZ-yWJiN6ZdquxWkcQHDTk","part_id":"","time":"2026-03-06T19:22:40.478475515Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:40.490138675Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3464,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-269247389384889:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-269247389384889%3Amatrix.theocloud.dev","duration":30.22205,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:40.520726488Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:40.521844383Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3465,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-119086675710153%3Amatrix.theocloud.dev","duration":25.042971,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-119086675710153","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:40.54718551Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:40.548626844Z","message":""} +{"level":"debug","transaction_id":"1601","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:40.567500233Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1601","time":"2026-03-06T19:22:40.567616521Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","req_id":3442,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960068218690_284?ts=1772605983000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":505.64794,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moin, schade. aber krieg ich schon hin alles gut :) Dir gute Besserung Bro!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.574035019Z","message":"Request completed"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","message_id":"491637362958@s.whatsapp.net:4917641870516@s.whatsapp.net:3A966E2D1686F317DE13","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T06:33:03Z","event_id":"$8Kj-k4FeoSkxXl5tB5x4DnsVVV73jDbCsPHuYWDzeQE","part_id":"","time":"2026-03-06T19:22:40.574243708Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:40.575846168Z","message":"Backfill finished"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","time":"2026-03-06T19:22:40.575933889Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491637362958@s.whatsapp.net","latest_message_ts":"2026-03-04T06:33:03Z","started_at":"2026-03-06T19:22:00.505646831Z","duration":"40.070482756s","time":"2026-03-06T19:22:40.576147048Z","message":"Event that took long finished handling"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3461,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-209178178109568:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-209178178109568%3Amatrix.theocloud.dev","duration":178.075767,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917665322672 (WA)"},"time":"2026-03-06T19:22:40.580271021Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:40.581288971Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3466,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-119086675710153:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-119086675710153%3Amatrix.theocloud.dev","duration":53.197971,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:40.600903596Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3445,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960119561233_285?ts=1772735459000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":501.986323,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und jetzg kommt da ich hab zu viele kaufversuche gemacht, bitte versuche es IN EINER WEILE nochmal","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.621703303Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4F94759D5E0A36BB06","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T18:30:59Z","event_id":"$JJSuYZvH60pgy-ZExZd9ZpB4rDcl0H2A9tDSbi3S2jE","part_id":"","time":"2026-03-06T19:22:40.621863801Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3432,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":729.568062,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","com.beeper.exclude_from_timeline":true,"displayname":"theo","membership":"invite"},"time":"2026-03-06T19:22:40.649245857Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:40.649945536Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1602","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:40.670305587Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1602","time":"2026-03-06T19:22:40.670433189Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3447,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960154382043_2?ts=1772479063000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":528.074831,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Fühl ich!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.682604311Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3AC8AFE538568CB0C7B2","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:17:43Z","event_id":"$-o45H3x8lQsbs4glZ1tP1aIHpBeg5HUNx6mHHcHJP6Y","part_id":"","time":"2026-03-06T19:22:40.68275985Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3470,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491755792374%3Amatrix.theocloud.dev","duration":35.17491,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491755792374","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:40.68539318Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3449,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960191094110_18?ts=1770734750000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":496.434426,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich hole es gleich ab.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.68765055Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A842F1A21189CC8006E","sender_id":{"user_id":"491628947581"},"message_ts":"2026-02-10T14:45:50Z","event_id":"$uoPvBaEwosrwbxKgFv1gk64fff5u3TwfwDXAUF-KTkQ","part_id":"","time":"2026-03-06T19:22:40.687769282Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3451,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960213423921_286?ts=1771830028000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":496.252836,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"den homeserver nutze ich doch noch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.70983453Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF0919457645B83A5CA","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:00:28Z","event_id":"$4kYh95H_OCfE2eVjzaFDkC_iEhKOXE2yBJGucOdP9Is","part_id":"","time":"2026-03-06T19:22:40.709998101Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3472,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491755792374:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491755792374%3Amatrix.theocloud.dev","duration":30.050308,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:40.715687098Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3452,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960222843260_14?ts=1769208804000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":495.694448,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":405944},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"I3tWOrQpBbgp35Qc50m/EH4oCRQ7zHaIC5Pzx4yPxBY=","length":405944,"type":"WhatsApp Image Keys","sha256":"PhOWCc9eWXeXwY+uDZAHmT6zTMH8JwjdqGmT07WrbBc=","enc_sha256":"VnLbm9ihKRuWCIftrRxXBqH+B1/kI+5O/LUIKYMtBCM=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:40.718770771Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A2FCEA345B5EA99CE82","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-23T22:53:24Z","event_id":"$NvNZ0zQE-eFv_ZhIfJadsRq6JQTQN2VYNlpAaFpqtN4","part_id":"","time":"2026-03-06T19:22:40.718923376Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:40.730892514Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3477,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-209178178109568:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-209178178109568%3Amatrix.theocloud.dev","duration":33.312777,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:40.764587189Z","message":"Request completed"} +{"level":"debug","transaction_id":"1603","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:40.767457913Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1603","time":"2026-03-06T19:22:40.76773798Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3455,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960268783089_16?ts=1770410210000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":503.729165,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Der cheesecake ist im Ofen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.772660389Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3ACE9ECC193B716E5325","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T20:36:50Z","event_id":"$AL0geYbLF9TzKgbmwXFDfEvhuWXB12ggdnd5Q_PcX2c","part_id":"","time":"2026-03-06T19:22:40.772823331Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3468,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-119086675710153:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-119086675710153%3Amatrix.theocloud.dev","duration":214.378,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+393273817314 (WA)"},"time":"2026-03-06T19:22:40.815506977Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:40.816211754Z","message":""} +{"level":"debug","transaction_id":"1604","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:40.847054562Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1604","time":"2026-03-06T19:22:40.847213662Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3467,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491792429046%3Amatrix.theocloud.dev","duration":300.395453,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<54263 bytes>","time":"2026-03-06T19:22:40.859916354Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3480,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792429046:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491792429046%3Amatrix.theocloud.dev","duration":25.518108,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:40.88580225Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3459,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960372818713_21?ts=1765813088000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":516.821925,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber Christoph…","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.8897725Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3ACB63B71B7F0EE0E4E5","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:38:08Z","event_id":"$m6-ur15ES9GB-3VmyQHON3o5b_YzRLIpCe5i1AOja2E","part_id":"","time":"2026-03-06T19:22:40.889891651Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3475,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491755792374:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491755792374%3Amatrix.theocloud.dev","duration":180.988956,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mihoshi (WA)"},"time":"2026-03-06T19:22:40.896858202Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:40.897451302Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3481,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KjndFviYeUYdvLVMjYQOJUJk?user_id=%40whatsapp_491792429046%3Amatrix.theocloud.dev","duration":14.284687,"status_code":200,"response_length":54263,"response_mime":"image/jpeg","time":"2026-03-06T19:22:40.900227529Z","message":"Request completed"} +{"level":"debug","transaction_id":"1605","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:40.9287939Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1605","time":"2026-03-06T19:22:40.928876453Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3483,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792429046:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491792429046%3Amatrix.theocloud.dev","duration":30.361595,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KjndFviYeUYdvLVMjYQOJUJk"},"time":"2026-03-06T19:22:40.930925554Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"35442120491030@lid","alternate_jid":"491792429046@s.whatsapp.net","time":"2026-03-06T19:22:40.931529968Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915174428025@s.whatsapp.net","time":"2026-03-06T19:22:40.931964736Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3484,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915174428025%3Amatrix.theocloud.dev","duration":8.739216,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915174428025","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:40.940985765Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3462,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960474135450_287?ts=1770382615000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":493.820931,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und jetzt Maschine","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.968086357Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8007BC66C185FBAD7E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:56:55Z","event_id":"$6wr3XvflcAahWGNFLlDnLzHXpQWzN5KYl-1KPRtTupc","part_id":"","time":"2026-03-06T19:22:40.968205648Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3485,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915174428025:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915174428025%3Amatrix.theocloud.dev","duration":27.284836,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:40.968628053Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:40.970096556Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3463,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960479346936_288?ts=1772488861000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":494.323306,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber ich will nicht den Tag in der Bahn, nur in der Mall und im Cafe hocken und Geld aus dem Fenster werfen halt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:40.973796935Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A10048B9BDF05D7C00A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T22:01:01Z","event_id":"$btEiL3b3MhqLZ5xce3UFwfIhdUzNCKGyCDjlHaOj_rM","part_id":"","time":"2026-03-06T19:22:40.973938226Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1606","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:40.983538946Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1606","time":"2026-03-06T19:22:40.983617867Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1607","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.044271354Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1607","time":"2026-03-06T19:22:41.044421794Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:41.045898398Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3469,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960622835446_30?ts=1772736299000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":446.67332,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Crazy","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.069654177Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A629F5E53852A3976B6","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T18:44:59Z","event_id":"$0MDUCmKW-jHvE6lU2KfKcG82bUkNwhRF1vMF1Ir9t3o","part_id":"","time":"2026-03-06T19:22:41.069782827Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3471,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960683665144_3?ts=1772479097000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":418.565184,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber einfach gym in der zeit haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.102390127Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A8706D5175AC28DFEDC","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:18:17Z","event_id":"$8b0V3LwIYptKFaFOH9DHVKxYq5hhjazYzGhDdwyzpf0","part_id":"","time":"2026-03-06T19:22:41.102560263Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960688555635_289?ts=1770734760000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":429.118482,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles klar, dankee :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.117808074Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0ECB6EC735AA47BBC7","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-10T14:46:00Z","event_id":"$KveRZvxXY-Wk9-5NuVWXUDK-TPORDMPyNjpD0HCISNc","part_id":"","time":"2026-03-06T19:22:41.117953974Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3486,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915174428025:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915174428025%3Amatrix.theocloud.dev","duration":160.346951,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Danilo (WA)"},"time":"2026-03-06T19:22:41.129142207Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:41.129680411Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3474,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960711630662_25?ts=1771830475000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":421.41775,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aua","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$TeqP0j3GId_I5mMIeMoUonTglBGOu4Ljn76oO5C7G4E"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.133212751Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A8E354ECDB6E5CED14C","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:07:55Z","event_id":"$vD65N1uuV0q-jO0FcAMpiEHmN0wSe6lb4EBDKh3hnb4","part_id":"","time":"2026-03-06T19:22:41.133440646Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1608","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.147743561Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1608","time":"2026-03-06T19:22:41.147830166Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3476,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960719806391_290?ts=1769767712000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":429.715073,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.14963866Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A46C9F58B8C69564305","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-30T10:08:32Z","event_id":"$GQ54HcgO43RUQJvfq7Sxvz3iSpB6GJ6h6KmBtabX4L4","part_id":"","time":"2026-03-06T19:22:41.149761303Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3479,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960773689584_291?ts=1770410431000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":407.174409,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geil","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.180982306Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3DE165656FE9267CDD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T20:40:31Z","event_id":"$nR7Y9P8xTKfgI0Qst-IjVrqUcliHsNnzt11nyAZPl3Y","part_id":"","time":"2026-03-06T19:22:41.181118289Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1609","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.227069781Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1609","time":"2026-03-06T19:22:41.227228044Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3489,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-119086675710153%3Amatrix.theocloud.dev","duration":225.360687,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<65631 bytes>","time":"2026-03-06T19:22:41.234899232Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3497,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-119086675710153:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-119086675710153%3Amatrix.theocloud.dev","duration":18.862565,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:41.254132659Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3498,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/HmYptzJmTBrjaAdXwNjfDrZL?user_id=%40whatsapp_lid-119086675710153%3Amatrix.theocloud.dev","duration":17.934501,"status_code":200,"response_length":65631,"response_mime":"image/jpeg","time":"2026-03-06T19:22:41.27221746Z","message":"Request completed"} +{"level":"debug","transaction_id":"1610","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.285836201Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1610","time":"2026-03-06T19:22:41.285938101Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3482,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960891142106_292?ts=1765813092000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":416.360754,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Das sowieso","m.mentions":{"user_ids":["@whatsapp_491731828379:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$FMQHTYDiZUtnY0TIkv1f6sp4YdG0MCGTRoc7JpgNsVc"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.307661123Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A17CCE9691C80FA59AB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:38:12Z","event_id":"$ZjsHggVAyo5Gex2fEJ83tZqLt5g7O9GwEV_Xh0l6eWA","part_id":"","time":"2026-03-06T19:22:41.307838592Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3490,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491755792374%3Amatrix.theocloud.dev","duration":256.578477,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<60221 bytes>","time":"2026-03-06T19:22:41.314725592Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3499,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-119086675710153:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-119086675710153%3Amatrix.theocloud.dev","duration":53.363008,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/HmYptzJmTBrjaAdXwNjfDrZL"},"time":"2026-03-06T19:22:41.325973749Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:41.326975007Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3501,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491755792374:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491755792374%3Amatrix.theocloud.dev","duration":25.842455,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:41.340939468Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3502,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-66039450742811%3Amatrix.theocloud.dev","duration":24.685588,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-66039450742811","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:41.351941082Z","message":"Request completed"} +{"level":"debug","transaction_id":"1611","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.360530277Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1611","time":"2026-03-06T19:22:41.360896878Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3503,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/OuTAGvdoLMKeCvkdamHIoYGe?user_id=%40whatsapp_491755792374%3Amatrix.theocloud.dev","duration":22.558683,"status_code":200,"response_length":60221,"response_mime":"image/jpeg","time":"2026-03-06T19:22:41.363682116Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3504,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66039450742811:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66039450742811%3Amatrix.theocloud.dev","duration":17.928843,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:41.370165428Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3505,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491755792374:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491755792374%3Amatrix.theocloud.dev","duration":27.308093,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OuTAGvdoLMKeCvkdamHIoYGe"},"time":"2026-03-06T19:22:41.391261337Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:41.392305966Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3487,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960968839396_23?ts=1770382626000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":438.956943,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geht so","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.407913674Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC41D110363D072430954724C820E0C","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:57:06Z","event_id":"$SexNwo-HgYr1Ks3qo2rZXWBMA80weCoSY6QbliQFkUQ","part_id":"","time":"2026-03-06T19:22:41.408033314Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3488,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824960975280524_23?ts=1772488919000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":434.18239,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja seh ich auch voll also ich brauch tanktops und compression shirts aber die bekomm ich da safe nt","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$btEiL3b3MhqLZ5xce3UFwfIhdUzNCKGyCDjlHaOj_rM"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.409611399Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AAABAB033EA4B0D7092","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-02T22:01:59Z","event_id":"$7S6EqhhDVAPGT4HsBAHE9JvarJuHQclZ5C_Gi-dYp94","part_id":"","time":"2026-03-06T19:22:41.409705336Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1612","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.418516909Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1612","time":"2026-03-06T19:22:41.418615386Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3507,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915256492723%3Amatrix.theocloud.dev","duration":38.394706,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915256492723","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:41.431068182Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3510,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256492723:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256492723%3Amatrix.theocloud.dev","duration":27.810818,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:41.459313348Z","message":"Request completed"} +{"level":"debug","transaction_id":"1613","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.492373506Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1613","time":"2026-03-06T19:22:41.492515844Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3491,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961070529160_293?ts=1772741157000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":450.734226,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ging dann irgendwann doch haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.521453007Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3BC0AEC14F7DDB1C86","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:05:57Z","event_id":"$Tv1ZhPk9s1MSeWQCr89gT9SSQKtEz-MaDp9G_NTnEWc","part_id":"","time":"2026-03-06T19:22:41.521627263Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:41.524402164Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3506,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66039450742811:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66039450742811%3Amatrix.theocloud.dev","duration":162.284723,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917623974702 (WA)"},"time":"2026-03-06T19:22:41.532621195Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:41.533412158Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3492,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961103446142_294?ts=1772479112000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":459.54433,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab morgen Restday 🤝","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.56314203Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3ADE650F180C6577E655","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:18:32Z","event_id":"$WUkBiefq20bQJ8JnvME_lDKmTlKezYQ2608n9HeaBfg","part_id":"","time":"2026-03-06T19:22:41.563361125Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3493,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961118753318_295?ts=1770820592000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":449.393674,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Mama, weißt du schon, wann du heute zu Hause bist dann später?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.56829401Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABD97FFC09D419E972F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-11T14:36:32Z","event_id":"$NFQx7_3OrGI2bDDaf-fpSdHJSvqRmFwdCLhXxjAppqY","part_id":"","time":"2026-03-06T19:22:41.568456463Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3494,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961134393224_26?ts=1771830528000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":463.830337,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"retroperspektiv, weiß nicht wir viel du gezahlt hast, aber damals für mein Homeserver noch 16gb ddr4 gekauft gebraucht für 15€ glaub ich","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.598437627Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A6879171DACF04D89C1","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:08:48Z","event_id":"$ENrGgpchwFE8uy0sm6pj5FbpwE7HnxRThaT-acwwSh0","part_id":"","time":"2026-03-06T19:22:41.598597845Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3495,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961150542627_296?ts=1769767747000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":453.361479,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hast du schon nen Plan, wann du ins Gym gehen willst?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.604049239Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB0F2DA07BBEFED415F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-30T10:09:07Z","event_id":"$cwNaKR-KtcpOJU-0uf6KbziuCzNu1oWqGutsvrq-Lb0","part_id":"","time":"2026-03-06T19:22:41.604231737Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1614","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.631775408Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1614","time":"2026-03-06T19:22:41.631908318Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3511,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256492723:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256492723%3Amatrix.theocloud.dev","duration":196.334196,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915256492723 (WA)"},"time":"2026-03-06T19:22:41.655923281Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:41.656851903Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3496,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961181902966_297?ts=1770410439000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":478.714619,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"kann nur gut werden","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.66074812Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6D5638CBA70F988193","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T20:40:39Z","event_id":"$mEwgixZIN1V-ly_UeiUPN90X_CpGlWBJuG-cmvP7FjQ","part_id":"","time":"2026-03-06T19:22:41.660876909Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:41.693172365Z","message":""} +{"level":"debug","transaction_id":"1615","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.702745986Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1615","time":"2026-03-06T19:22:41.702904318Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3500,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961309228103_298?ts=1765813098000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":437.439831,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ay was mit dem?","m.mentions":{"user_ids":["@whatsapp_491731828379:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$m6-ur15ES9GB-3VmyQHON3o5b_YzRLIpCe5i1AOja2E"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.746834228Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFF6F8F42DF7322EDA5","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:38:18Z","event_id":"$bZU7JH-vn2cCnXHdF11Sjd3rtwQyz-Y5Th1Sqqya8vo","part_id":"","time":"2026-03-06T19:22:41.747057444Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3513,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915174428025%3Amatrix.theocloud.dev","duration":261.765099,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<53459 bytes>","time":"2026-03-06T19:22:41.795512989Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3520,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915174428025:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915174428025%3Amatrix.theocloud.dev","duration":20.027113,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:41.815891618Z","message":"Request completed"} +{"level":"debug","transaction_id":"1616","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.821044296Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1616","time":"2026-03-06T19:22:41.82112245Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:41.822825273Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3522,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/PsqAmvRalrYYQwwVwPIUEKEy?user_id=%40whatsapp_4915174428025%3Amatrix.theocloud.dev","duration":18.389173,"status_code":200,"response_length":53459,"response_mime":"image/jpeg","time":"2026-03-06T19:22:41.834432908Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3508,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961408672300_24?ts=1770382643000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":450.818804,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber bin zufrieden","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.859607601Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC0FC39C92B5F60636F0072D99B20A6D","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:57:23Z","event_id":"$Z8ZNL0VpRazjnFhQ2Ys6kwls4mbRvuQAhVfcFBUmWDw","part_id":"","time":"2026-03-06T19:22:41.859698117Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3509,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961410247591_299?ts=1772488931000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":453.152162,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja ne bestell die lieber","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.863522536Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A96AC0D8E1CB743A45A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T22:02:11Z","event_id":"$7ZHorjsZ1BndTtytByEA5LBHR_iTNZ1SBJTiCowS9ws","part_id":"","time":"2026-03-06T19:22:41.863691275Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3524,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915174428025:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915174428025%3Amatrix.theocloud.dev","duration":55.569952,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PsqAmvRalrYYQwwVwPIUEKEy"},"time":"2026-03-06T19:22:41.890292076Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915208878293@s.whatsapp.net","alternate_jid":"138817721917594@lid","time":"2026-03-06T19:22:41.89078181Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915776207693@s.whatsapp.net","alternate_jid":"44419206123644@lid","time":"2026-03-06T19:22:41.890849417Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917623702252@s.whatsapp.net","alternate_jid":"256181947912368@lid","time":"2026-03-06T19:22:41.890914789Z","message":"Synced alternate ghost with info"} +{"level":"debug","transaction_id":"1617","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.907086613Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1617","time":"2026-03-06T19:22:41.907326032Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3527,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917666618908%3Amatrix.theocloud.dev","duration":29.010218,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917666618908","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:41.920299571Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3528,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666618908:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917666618908%3Amatrix.theocloud.dev","duration":21.260667,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:41.941988091Z","message":"Request completed"} +{"level":"debug","transaction_id":"1618","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:41.959199934Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1618","time":"2026-03-06T19:22:41.959306304Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3512,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961522573905_31?ts=1772741453000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":450.03685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Freut michh","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:41.972770345Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AFC3A51C70FA89D3318","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T20:10:53Z","event_id":"$sxoyWutqY-Xr7sbSD8VTuIUCXYdc6ymdjfxSL5dJRs0","part_id":"","time":"2026-03-06T19:22:41.972956265Z","message":"Sent message part to Matrix"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":2399,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s2465_982_8_391_443_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":23552.786619,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:41.989267284Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:41.989627","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:41.989643174Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:41.989627","time":"2026-03-06T19:22:41.989900473Z","message":"Finished handling device list changes"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3515,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961569312729_19?ts=1770820674000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":452.413302,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Theo,\nich bin so gegen 17 Uhr zu Hause.","format":"org.matrix.custom.html","formatted_body":"Hey Theo,\u003cbr\u003eich bin so gegen 17 Uhr zu Hause.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.021895956Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3AAB11D6380062C2B39B","sender_id":{"user_id":"491628947581"},"message_ts":"2026-02-11T14:37:54Z","event_id":"$EaZS0Vks522XWOsRJbZ4BkmFhjW7ce7Q-PQt-gHxjeA","part_id":"","time":"2026-03-06T19:22:42.022012872Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3514,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961564203771_8?ts=1772479112000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":472.598468,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Damit wir alle keinen Rucksack haben müssen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.036939199Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A63854E9DC357977CC0","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:18:32Z","event_id":"$3jMZc8F4LmUEuX-bsx9EI_bEqTgoG6Kgaetr6wpBAdc","part_id":"","time":"2026-03-06T19:22:42.03707609Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3516,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961599503140_300?ts=1771831775000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":453.261046,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ja im vergleich dazu wirklich aua, neu kostet er halt so 140/150€ und ich hab aber 50€ bezahlt für corsair vengeance 2x8gb 3200mhz","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.052913858Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACB91CD14528FEEDF8E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:29:35Z","event_id":"$z7WGFVyqa1be7eEVxTEjxuGG0HqaoBaoSbz2dfLuVkY","part_id":"","time":"2026-03-06T19:22:42.053054032Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3521,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-66039450742811%3Amatrix.theocloud.dev","duration":255.170877,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45343 bytes>","time":"2026-03-06T19:22:42.060991459Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3517,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961605194372_15?ts=1769768376000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":457.410022,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Heute ehr nicht bin immer noch krank","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.062718447Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A503D890B76E6E41F06","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-30T10:19:36Z","event_id":"$QqBIm0xH12pVjtQQs2Tm7cCgukkSbBLXvB-ovEj23zI","part_id":"","time":"2026-03-06T19:22:42.06281434Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1619","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.065003125Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1619","time":"2026-03-06T19:22:42.065145324Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3535,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66039450742811:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-66039450742811%3Amatrix.theocloud.dev","duration":25.729101,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:42.087108463Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3518,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961661706775_17?ts=1770410478000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":433.271509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old voice message. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.audio","body":"","info":{"mimetype":"audio/ogg; codecs=opus","duration":16000,"size":37779},"filename":"Voice message.ogg","org.matrix.msc1767.audio":{"duration":16000,"waveform":[4,10,100,100,99,75,66,51,71,54,79,65,90,79,77,85,35,16,6,5,67,100,89,68,100,83,62,54,19,39,92,83,100,89,28,34,81,74,75,49,47,49,60,19,5,2,71,67,66,77,90,46,45,51,54,24,22,9,16,24,19,6,1,1]},"org.matrix.msc3245.voice":{}},"extra":{"info":{}},"whatsapp_media":{"key":"D5amvf+VtE6e8zX4m5K5sm/+HjdGVAwAFRGNHr1C7IA=","length":37779,"type":"WhatsApp Audio Keys","sha256":"YtmZ1vVuolLhm7kpZDDd1WrwUWi54gyHbTfZKA08rC8=","enc_sha256":"sEQ1kYdzVk9SfM6eT0YNa7UzfOt9MmgXRkTdi3k1Cto=","mime_type":"audio/ogg; codecs=opus"},"type_description":"voice message"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:42.095277347Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A5B10C668A21075F3AB","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T20:41:18Z","event_id":"$fld2DkWN1Xl3eqH-RmLizBojNyp542xWq6Fdi_6lfAs","part_id":"","time":"2026-03-06T19:22:42.09550189Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3523,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915256492723%3Amatrix.theocloud.dev","duration":267.436007,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43503 bytes>","time":"2026-03-06T19:22:42.101894058Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3537,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/CRlfKRnnTgfyaTEtNbLsJeKP?user_id=%40whatsapp_lid-66039450742811%3Amatrix.theocloud.dev","duration":29.227357,"status_code":200,"response_length":45343,"response_mime":"image/jpeg","time":"2026-03-06T19:22:42.11651315Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3529,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666618908:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917666618908%3Amatrix.theocloud.dev","duration":185.636326,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Seiar (WA)"},"time":"2026-03-06T19:22:42.127794971Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3539,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256492723:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915256492723%3Amatrix.theocloud.dev","duration":25.591092,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:42.127765008Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"101641122517221@lid","alternate_jid":"4917666618908@s.whatsapp.net","time":"2026-03-06T19:22:42.128264799Z","message":"Synced alternate ghost with info"} +{"level":"debug","transaction_id":"1620","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.139472658Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1620","time":"2026-03-06T19:22:42.139689168Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3542,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-157088529567880%3Amatrix.theocloud.dev","duration":16.691938,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-157088529567880","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:42.145595654Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3541,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/eoeqCXZqbVhaIKamojvUjdZC?user_id=%40whatsapp_4915256492723%3Amatrix.theocloud.dev","duration":18.83323,"status_code":200,"response_length":43503,"response_mime":"image/jpeg","time":"2026-03-06T19:22:42.146878306Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3540,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66039450742811:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-66039450742811%3Amatrix.theocloud.dev","duration":39.716888,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CRlfKRnnTgfyaTEtNbLsJeKP"},"time":"2026-03-06T19:22:42.156465755Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:42.157700007Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3543,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157088529567880:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-157088529567880%3Amatrix.theocloud.dev","duration":16.504482,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:42.162520446Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3545,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-73736032112697%3Amatrix.theocloud.dev","duration":14.178597,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-73736032112697","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:42.172179065Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3544,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256492723:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915256492723%3Amatrix.theocloud.dev","duration":29.435976,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/eoeqCXZqbVhaIKamojvUjdZC"},"time":"2026-03-06T19:22:42.176503345Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:42.177528908Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3547,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73736032112697:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-73736032112697%3Amatrix.theocloud.dev","duration":14.679505,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:42.187218746Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3519,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961747915455_22?ts=1765813098000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":448.353514,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich weiß ja nicht ob er irgendwas beantwortet hat","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.196419339Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A879EDB5522F690CED0","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:38:18Z","event_id":"$dWCYcaoVSVV5gwJdi-kQC1jOgSN565pmwnefUgzFpXw","part_id":"","time":"2026-03-06T19:22:42.196521867Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3548,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917655578514%3Amatrix.theocloud.dev","duration":22.824573,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917655578514","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:42.200645351Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3551,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655578514:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917655578514%3Amatrix.theocloud.dev","duration":22.791817,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:42.223806005Z","message":"Request completed"} +{"level":"debug","transaction_id":"1621","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.247862175Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1621","time":"2026-03-06T19:22:42.247977974Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3525,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961860231222_25?ts=1770382651000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":421.046329,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kein body dysmorphia","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.281434486Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACB65DB21F8E02F1480E9FB494CF9EC9","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:57:31Z","event_id":"$Qh4YoFkQ_qZfkbQgNWOFDKCdNg36Fh93EHTOeEtNMtE","part_id":"","time":"2026-03-06T19:22:42.281590933Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3526,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824961864707200_24?ts=1772537275000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":419.819131,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wann wärst du dann ready heut?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.284663082Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AAC771E5008F6154EAE","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T11:27:55Z","event_id":"$KM2HAUnb5PvKKO85cAec_7ZOGmQYEQaJwzRQQwMmUks","part_id":"","time":"2026-03-06T19:22:42.28480102Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3546,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157088529567880:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-157088529567880%3Amatrix.theocloud.dev","duration":126.456858,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yasmine (WA)"},"time":"2026-03-06T19:22:42.289147231Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:42.289698495Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3549,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73736032112697:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-73736032112697%3Amatrix.theocloud.dev","duration":142.006318,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sidonie (WA)"},"time":"2026-03-06T19:22:42.329472794Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:42.330306081Z","message":""} +{"level":"debug","transaction_id":"1622","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.335255868Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1622","time":"2026-03-06T19:22:42.335386194Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3552,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655578514:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917655578514%3Amatrix.theocloud.dev","duration":125.729103,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nasser (WA)"},"time":"2026-03-06T19:22:42.349777251Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:42.350678844Z","message":""} +{"level":"debug","transaction_id":"1623","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.383803745Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1623","time":"2026-03-06T19:22:42.383917448Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3530,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824961973921135_301?ts=1772741478605&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":421.880035,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$sxoyWutqY-Xr7sbSD8VTuIUCXYdc6ymdjfxSL5dJRs0","key":"❤️"}},"time":"2026-03-06T19:22:42.396020684Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AFC3A51C70FA89D3318","target_part_id":"","reaction_sender_id":{"user_id":"4917641870516","is_from_me":true},"reaction_ts":"2026-03-05T20:11:18.605Z","event_id":"$cGQybHXd-8nti27kgC-pRZYDcAPgLEPf45cdsWm6SbQ","time":"2026-03-06T19:22:42.396216312Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3532,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962022702424_302?ts=1770820684000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":385.884409,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oke supi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.408723375Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A076AF17ADE189F32EB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-11T14:38:04Z","event_id":"$SxuwhX_LUpqBKD5CA0NL0ZxevECR7Eeo4YnG62Anidg","part_id":"","time":"2026-03-06T19:22:42.408901403Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3533,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962038431937_303?ts=1772479228000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":390.729642,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber nur deswegen morgen insgesamt 4h Bahn fahren?","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$3jMZc8F4LmUEuX-bsx9EI_bEqTgoG6Kgaetr6wpBAdc"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.429346661Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A5A6A4A4A50EDFB2109","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:20:28Z","event_id":"$zGttNzr9q_fepC_SA4PIEKAHivpC5XDyP_Zz--8Tfzs","part_id":"","time":"2026-03-06T19:22:42.429515539Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3534,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962053725285_304?ts=1771831798000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":377.536938,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"sofortkauf auf ebay, funktioniert top","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.431394784Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A633823F69D713EF3FA","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:29:58Z","event_id":"$aK9c3MjuVyR8okTyDLf94v5bv5TUKH_4lUAsl1YjYgo","part_id":"","time":"2026-03-06T19:22:42.431536843Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3536,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962063535531_305?ts=1769768388000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":375.781315,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oh achso","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.439431317Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A83910A4B233D533DDB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-30T10:19:48Z","event_id":"$yjoCxlHvD0_gCaOvXr0wyvysuQqJxOv5ZwUCYi9JgpI","part_id":"","time":"2026-03-06T19:22:42.439606621Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:42.458256236Z","message":""} +{"level":"debug","transaction_id":"1624","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.470239762Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1624","time":"2026-03-06T19:22:42.470376024Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3538,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962096413121_306?ts=1770410801000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":380.08122,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Rühl Bestes haste da noch reingeschüttet haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.476666851Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A47B8AE44688004BCC0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T20:46:41Z","event_id":"$2oGCQGSzE7Lwz8Jg95ZyCRl4SbjvK25hAOXzg_DeI94","part_id":"","time":"2026-03-06T19:22:42.476820923Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:42.487425554Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:42.500831207Z","message":""} +{"level":"debug","transaction_id":"1625","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.511037109Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1625","time":"2026-03-06T19:22:42.511221144Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3562,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917655578514:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917655578514%3Amatrix.theocloud.dev","duration":13.570201,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:42.514707178Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3550,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962197066427_23?ts=1765813104000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":370.03344,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Der war so nach 20min weg!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.56721378Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AC3096169B58F2C9199","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:38:24Z","event_id":"$n11ks5nBwLPr64drnjh5WMFVQksZl4CKLPp6NzbSOak","part_id":"","time":"2026-03-06T19:22:42.567352836Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3478,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":1833.171033,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_lid-195790463058158:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363400918258753@g.us","displayname":"Mediathek 🎥","avatar_url":"mxc://matrix.theocloud.dev/ZybhLOCVuUBXyRbbUGqQlNlq"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"channel":{"id":"120363400918258753@g.us","displayname":"Mediathek 🎥","avatar_url":"mxc://matrix.theocloud.dev/ZybhLOCVuUBXyRbbUGqQlNlq"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2},"m.room.avatar":{"level":2},"m.room.name":{"level":2},"m.room.topic":{"level":2}},"member_actions":{"invite":2,"kick":2,"leave":2},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"Hier teilen wir Fotos \u0026 Videos von unseren Trainings, Fortschritten und Events."}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"Mediathek 🎥"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/ZybhLOCVuUBXyRbbUGqQlNlq"}}],"preset":"private_chat","power_level_content_override":{"users":{"@whatsapp_lid-21079833710744:matrix.theocloud.dev":75,"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0},"state_default":99,"ban":99},"com.beeper.local_room_id":"!120363400918258753@g.us.:matrix.theocloud.dev"},"time":"2026-03-06T19:22:42.598893717Z","message":"Request completed"} +{"level":"info","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","room_id":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","time":"2026-03-06T19:22:42.599323386Z","message":"Matrix room created"} +{"level":"info","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","time":"2026-03-06T19:22:42.599714153Z","message":"Parent portal doesn't exist, creating in background"} +{"level":"info","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","time":"2026-03-06T19:22:42.599903565Z","message":"Creating Matrix room"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:42.600011262Z","message":""} +{"level":"debug","transaction_id":"1626","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.63488606Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1626","time":"2026-03-06T19:22:42.634971617Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3566,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":56.023507,"status_code":200,"response_length":389,"response_mime":"application/json","time":"2026-03-06T19:22:42.656073881Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3553,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962282552031_307?ts=1770382662000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":403.976544,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"So und nicht anders","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.686671612Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5DC7DA7FED082D48EC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T12:57:42Z","event_id":"$s8T3VaA8PgsB9g_r8bAP15C0WqUxX3Yjugf3ykQsV3I","part_id":"","time":"2026-03-06T19:22:42.686783639Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3560,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-157088529567880%3Amatrix.theocloud.dev","duration":224.46978,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64989 bytes>","time":"2026-03-06T19:22:42.690842309Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3554,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962285623691_308?ts=1772537293000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":407.653387,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Eig bald","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.693411734Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEF5B69B6B73926C7E9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:28:13Z","event_id":"$x0QOzQSWl118Vd6Ft2GSKj0E7D0wggCKU0HxKY-oPC0","part_id":"","time":"2026-03-06T19:22:42.693536751Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3567,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.430898,"status_code":200,"response_length":330,"response_mime":"application/json","time":"2026-03-06T19:22:42.715028106Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3569,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157088529567880:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-157088529567880%3Amatrix.theocloud.dev","duration":28.005956,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:42.719186372Z","message":"Request completed"} +{"level":"debug","transaction_id":"1627","content":{"pdu":14,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.725790791Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1627","time":"2026-03-06T19:22:42.72642377Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3572,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/kasbJAazrRqiareSLijNArfp?user_id=%40whatsapp_lid-157088529567880%3Amatrix.theocloud.dev","duration":22.51601,"status_code":200,"response_length":64989,"response_mime":"image/jpeg","time":"2026-03-06T19:22:42.741907229Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3571,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":41.945274,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:42.757619002Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:42.758664679Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3574,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491783561145%3Amatrix.theocloud.dev","duration":25.528165,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491783561145","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:42.784474029Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3573,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-157088529567880:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-157088529567880%3Amatrix.theocloud.dev","duration":50.802523,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kasbJAazrRqiareSLijNArfp"},"time":"2026-03-06T19:22:42.79294938Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3575,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783561145:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783561145%3Amatrix.theocloud.dev","duration":20.216804,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:42.805454278Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3576,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917652878401%3Amatrix.theocloud.dev","duration":25.69837,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917652878401","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:42.819850014Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3555,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962396954125_309?ts=1772741465000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":441.766835,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yippiee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.838874403Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9E21EC2BD78FBE38B0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:11:05Z","event_id":"$cTK-36a9GTnlsp_yR50Q0qgtFGm7kj5aHaMXNFyxEP8","part_id":"","time":"2026-03-06T19:22:42.839042443Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3564,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-73736032112697%3Amatrix.theocloud.dev","duration":289.744725,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<123141 bytes>","time":"2026-03-06T19:22:42.846123535Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3556,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962409821993_310?ts=1770820768000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":441.441998,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok DHL ist da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.85139306Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5D26E9D60A20BC1520","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-11T14:39:28Z","event_id":"$yD8260gBUnEXp2nDc2TqG13eCfoG2Arhf6mtk-Aakk4","part_id":"","time":"2026-03-06T19:22:42.851485531Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3578,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917652878401:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917652878401%3Amatrix.theocloud.dev","duration":31.982632,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:42.852268951Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3557,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962430461831_311?ts=1772479243000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":437.847081,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"da lauf ich lieber mit meinem Rucksack rum","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.868425758Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A285C4DD3699254388C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:20:43Z","event_id":"$fB0p8933S6GDSWbbN3A3fNutgQI9wqhccBLKquG9Bqo","part_id":"","time":"2026-03-06T19:22:42.868538344Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3580,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73736032112697:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-73736032112697%3Amatrix.theocloud.dev","duration":29.423194,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:42.875870239Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3558,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962433023783_27?ts=1771831854000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":445.946751,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"das geht echt fit","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$z7WGFVyqa1be7eEVxTEjxuGG0HqaoBaoSbz2dfLuVkY"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.879113781Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AB47B72F6F5BD489833","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:30:54Z","event_id":"$hc5o1jxdlRTMVmEJz3JaW5JU0LuqtjC816_Q6cYqxd8","part_id":"","time":"2026-03-06T19:22:42.879230068Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3559,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962440491103_312?ts=1769768394000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":440.554653,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ja dann gute Besserung :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.881158551Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4EF5462550A8549923","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-01-30T10:19:54Z","event_id":"$Wtkj34-sHDV03ilG3tBMpYOmmh7rX5wY9h9tF-ELKds","part_id":"","time":"2026-03-06T19:22:42.881266807Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3584,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/xRHsxcXYcAQLZmBBRwywFmDt?user_id=%40whatsapp_lid-73736032112697%3Amatrix.theocloud.dev","duration":22.337004,"status_code":200,"response_length":123141,"response_mime":"image/jpeg","time":"2026-03-06T19:22:42.898317524Z","message":"Request completed"} +{"level":"debug","transaction_id":"1628","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.912176523Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1628","time":"2026-03-06T19:22:42.912271369Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3561,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962477804092_313?ts=1770410805000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":444.945564,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kranker Bums","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:42.922897232Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A02BCDE177A0317395D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T20:46:45Z","event_id":"$neHYI2360UiZJaRtvBXaV8lBEHvRSaBA6pWddyo34eY","part_id":"","time":"2026-03-06T19:22:42.923033773Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3587,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73736032112697:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-73736032112697%3Amatrix.theocloud.dev","duration":44.994655,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xRHsxcXYcAQLZmBBRwywFmDt"},"time":"2026-03-06T19:22:42.943620811Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:42.944282846Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3589,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-208057309085944%3Amatrix.theocloud.dev","duration":20.84713,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-208057309085944","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:42.965352703Z","message":"Request completed"} +{"level":"debug","transaction_id":"1629","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:42.972802492Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1629","time":"2026-03-06T19:22:42.972954329Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3577,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783561145:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783561145%3Amatrix.theocloud.dev","duration":174.444322,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Kadl (WA)"},"time":"2026-03-06T19:22:42.980135505Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:42.980797748Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3590,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-208057309085944:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-208057309085944%3Amatrix.theocloud.dev","duration":18.785947,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:42.984561475Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3582,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917652878401:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917652878401%3Amatrix.theocloud.dev","duration":144.602283,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yasmine (WA)"},"time":"2026-03-06T19:22:42.997055897Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:42.997796643Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3565,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962568055519_314?ts=1765813105000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":451.751756,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Krass haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.019992427Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A71DC762BB21A0889E2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:38:25Z","event_id":"$d7BZzVmMVyiy8FbJi_JdckTBFpW4iZW42o9eHWJy-0Y","part_id":"","time":"2026-03-06T19:22:43.020135673Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1630","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.069145975Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1630","time":"2026-03-06T19:22:43.06923684Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3568,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962687417457_26?ts=1770382678000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":403.66393,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich habe das Gegnteil davon","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.091224144Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACE14806A74346B4F5A6FF5BA9C68503","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:57:58Z","event_id":"$flu1BcwSUZ633u2H6MS-XmTj-zBqM_Uq85afWW2ZP7Y","part_id":"","time":"2026-03-06T19:22:43.091429829Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3570,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962694270933_315?ts=1772537302000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":403.558957,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber die Strat backfires","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.097933396Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1E69CDD0E4DF955D8F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:28:22Z","event_id":"$U99DZ0M9YMvJPudkxCkSoqRtAELpf0ZxstJh0eCVgec","part_id":"","time":"2026-03-06T19:22:43.098048286Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3591,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-208057309085944:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-208057309085944%3Amatrix.theocloud.dev","duration":119.676926,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917675622090 (WA)"},"time":"2026-03-06T19:22:43.104474957Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:43.105149353Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:43.130255252Z","message":"all_member_shareadmin_add"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:22:43.130375939Z","message":"Unknown element in group node 120363373705450816@g.us: all_member_share"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:43.131095314Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3563,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-140325221875807:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":620.817669,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iOdArJhUbYJYWuEglwVvRVfa","com.beeper.exclude_from_timeline":true,"displayname":"Jens B. (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:43.13665615Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:43.136826007Z","message":""} +{"level":"debug","transaction_id":"1631","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.143281801Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1631","time":"2026-03-06T19:22:43.143395854Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:43.146612646Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3596,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783561145:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491783561145%3Amatrix.theocloud.dev","duration":25.306276,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:43.164215606Z","message":"Request completed"} +{"level":"debug","transaction_id":"1632","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.206054231Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1632","time":"2026-03-06T19:22:43.206356368Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3579,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962839968691_316?ts=1772741467000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":374.625565,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yippiee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.214737293Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7543CB7755A029765A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:11:07Z","event_id":"$B1-cXJ4Pz1mRpyAJOeEuw_-c_lgYKsCpqpYC7DJs4Ck","part_id":"","time":"2026-03-06T19:22:43.214887873Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3581,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962852039519_317?ts=1770820893000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":374.097977,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"also fehlt nur noch Amazon und das würde auch in nen Briefkasten passen bzw sollte kommen, wenn du dann da bist","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.226237162Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A713972F7C549B7B465","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-11T14:41:33Z","event_id":"$aqMOl2V0lXoERC5hrTZp0iRgdstlsPDc-2OZJCejp9Q","part_id":"","time":"2026-03-06T19:22:43.226341995Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3583,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962869223426_9?ts=1772479250000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":377.278452,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alex hat extra letzten Mittwoch nachgefragt 🙁","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.246606711Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AB15CB30A5B14F3AF9C","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:20:50Z","event_id":"$TyBbVVpKF7mOTkmE5J5JtQCwd002Q1z0h-_Fj8Ga-I0","part_id":"","time":"2026-03-06T19:22:43.246725443Z","message":"Sent message part to Matrix"} +{"level":"warn","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"120363192861790277@g.us:27956059590853@lid:3EB0FCF251131B73F651AD","PartID":null},"time":"2026-03-06T19:22:43.24777999Z","message":"Reply target message not found in database"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:43.254592609Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3586,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962881945114_16?ts=1769768394000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":380.894043,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":49542},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"EcjN8/PNU0GL1sKhZU1BkV3W5CZh5ZmiYy2gGoFjVjc=","length":49542,"type":"WhatsApp Image Keys","sha256":"S5IyVI2ErBpJllPmWrpjpXI71BT8d3wTwR7+LKEieok=","enc_sha256":"E82sQXnDNAr6D2jRKRujeizMVqVGE1p6mNUKa1fHt78=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:43.263042678Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A36E837400BF47182F0","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-30T10:19:54Z","event_id":"$XEaME7w5ChcZ_pxrqlQxMAFZYHtcRziitI7fiwiJl-w","part_id":"","time":"2026-03-06T19:22:43.263199124Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3602,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-208057309085944:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-208057309085944%3Amatrix.theocloud.dev","duration":23.050373,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:43.277919836Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:43.278853836Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1633","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.294756487Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1633","time":"2026-03-06T19:22:43.294848051Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3604,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-243632070254676%3Amatrix.theocloud.dev","duration":33.336524,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-243632070254676","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:43.312444864Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3588,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962923777383_318?ts=1770410811000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":392.830076,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"2000 kcal","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.316721023Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF5FF92C4790E01F0C8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T20:46:51Z","event_id":"$ixgIV3S1-xQF3Q2Q0hks4ESkzxHGsc4CG1JRGpv4y1w","part_id":"","time":"2026-03-06T19:22:43.316865038Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3605,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-243632070254676:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-243632070254676%3Amatrix.theocloud.dev","duration":27.118961,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:43.339941881Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:43.34921504Z","message":""} +{"level":"debug","transaction_id":"1634","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.363346982Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1634","time":"2026-03-06T19:22:43.363652193Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3597,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917652878401%3Amatrix.theocloud.dev","duration":235.074621,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64989 bytes>","time":"2026-03-06T19:22:43.390279883Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3609,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917652878401:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917652878401%3Amatrix.theocloud.dev","duration":19.862495,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:43.410453386Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3592,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963020982649_24?ts=1765813110000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":405.273164,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ah nach einer Stunde nvm","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.426412958Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A25635E8B0682AAB924","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:38:30Z","event_id":"$hJqoQJ4ZhqzyjcGrMvOg3FEApUzb4T_FjirrTSqCBe8","part_id":"","time":"2026-03-06T19:22:43.426570872Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1635","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.426796532Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1635","time":"2026-03-06T19:22:43.426855129Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3610,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/QLiiRpieezhgrRkjHPSyFQBC?user_id=%40whatsapp_4917652878401%3Amatrix.theocloud.dev","duration":30.065743,"status_code":200,"response_length":64989,"response_mime":"image/jpeg","time":"2026-03-06T19:22:43.440674178Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3612,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917652878401:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917652878401%3Amatrix.theocloud.dev","duration":44.925511,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QLiiRpieezhgrRkjHPSyFQBC"},"time":"2026-03-06T19:22:43.485929484Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"157088529567880@lid","alternate_jid":"4917652878401@s.whatsapp.net","time":"2026-03-06T19:22:43.486378639Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3607,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-243632070254676:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-243632070254676%3Amatrix.theocloud.dev","duration":146.373271,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491738002445 (WA)"},"time":"2026-03-06T19:22:43.486499746Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:43.489129933Z","message":""} +{"level":"debug","transaction_id":"1636","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.491346306Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1636","time":"2026-03-06T19:22:43.49146399Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3613,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491624155301%3Amatrix.theocloud.dev","duration":21.299079,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491624155301","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:43.50809335Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3593,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963092407620_27?ts=1770382689000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":425.966153,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😅","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.518508708Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC5832383A0D8FB39659232CD5ADF212","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T12:58:09Z","event_id":"$mZ4rY5kjh7HGxC46hNBSUtoSNn3XOLPooIPt6a48EGw","part_id":"","time":"2026-03-06T19:22:43.518605859Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3594,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963098817598_25?ts=1772537311000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":423.386181,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.522327471Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AD53EC80C51446B8F94","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T11:28:31Z","event_id":"$3GjoUh7YkDNq4Nkz8bZ2bi0TW0n4C0_T41F-dyY6dFE","part_id":"","time":"2026-03-06T19:22:43.522435656Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3614,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624155301:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491624155301%3Amatrix.theocloud.dev","duration":23.624266,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:43.532027715Z","message":"Request completed"} +{"level":"debug","transaction_id":"1637","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.578145781Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1637","time":"2026-03-06T19:22:43.578227148Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3608,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":231.062395,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38132 bytes>","time":"2026-03-06T19:22:43.596752793Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3585,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824962879983177_28?ts=1771831860000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":742.431878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"für die aktuelle lage","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.622506408Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AA3979FD1C24FDFF578","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:31:00Z","event_id":"$W96GUur3dS5nLsuTGyuwM6ja6akLZAVGOMKCjCoaqzU","part_id":"","time":"2026-03-06T19:22:43.622599159Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1638","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.670720439Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1638","time":"2026-03-06T19:22:43.670792935Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3599,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963215798615_319?ts=1772741471000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":458.902481,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"macht so viel Spaß","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.674833866Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7B831186F3DEBAB628","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:11:11Z","event_id":"$rtJkX_fMg6h8dcLDCHkfeFt6_XfwtMObx9zyVJ5Lw54","part_id":"","time":"2026-03-06T19:22:43.674947848Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3600,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963226909184_320?ts=1770820901000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":467.539028,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Passt also perfekt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.694577559Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEE5013377C9710550D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-11T14:41:41Z","event_id":"$kxqSkxV2bHVWvAanXX1Z21cHbtpa9mkFZk_ZDpT6Qq4","part_id":"","time":"2026-03-06T19:22:43.694731142Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3601,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963248072979_10?ts=1772479264000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":455.291987,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hier 😗","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.703508492Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3ACFEC075F4CA4866AD3","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:21:04Z","event_id":"$IIaqvnKl_GFD91exvSUuw0dKncTK8-Q_1tvvPOt_JeI","part_id":"","time":"2026-03-06T19:22:43.703700069Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3603,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963264412353_17?ts=1769768401000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":467.504526,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":18962},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"DmHlzWL7fy4WjXnFdWbKKJdAd3tCugsJO+YlJ2gaQ4w=","length":18962,"type":"WhatsApp Image Keys","sha256":"OqHPcmjpPMNGWB4slYWm/QfW/jYNIYqD5iLGMCzlcxk=","enc_sha256":"6oSxfsk9BsSBpznlIziok9uxWRBnbeYkM8VdE8LkOCM=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$Wtkj34-sHDV03ilG3tBMpYOmmh7rX5wY9h9tF-ELKds"}},"msgtype":"m.notice"},"time":"2026-03-06T19:22:43.732199461Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3FED028E0DDF789225","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-01-30T10:20:01Z","event_id":"$02-UAX-zNC5YoMBSyyKtMXM-GDCEHertaw-eZCTQ61E","part_id":"","time":"2026-03-06T19:22:43.732427496Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3617,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624155301:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491624155301%3Amatrix.theocloud.dev","duration":204.361929,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mahmoud (WA)"},"time":"2026-03-06T19:22:43.736527094Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"165339312693343@lid","alternate_jid":"491624155301@s.whatsapp.net","time":"2026-03-06T19:22:43.736980369Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"251745280225436@lid","alternate_jid":"4917655091547@s.whatsapp.net","time":"2026-03-06T19:22:43.737095539Z","message":"Synced alternate ghost with info"} +{"level":"debug","transaction_id":"1639","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.764748653Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1639","time":"2026-03-06T19:22:43.764867664Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3624,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915733181520%3Amatrix.theocloud.dev","duration":31.450225,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915733181520","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:43.769066438Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3595,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-140325221875807:matrix.theocloud.dev?user_id=%40whatsapp_lid-140325221875807%3Amatrix.theocloud.dev","duration":638.140631,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iOdArJhUbYJYWuEglwVvRVfa","com.beeper.exclude_from_timeline":true,"displayname":"Jens B. (WA)","membership":"join"},"time":"2026-03-06T19:22:43.775443171Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3606,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963317714529_321?ts=1770410816000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":464.391449,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"200g Eiweiß","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.782211859Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2748185592728B00C0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T20:46:56Z","event_id":"$PjoAMa8mmJpYDpUcBtHcGT4hv2cvEmTLdsCYGlkLU4o","part_id":"","time":"2026-03-06T19:22:43.782354616Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3625,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915733181520:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915733181520%3Amatrix.theocloud.dev","duration":22.148709,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:43.791650125Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3598,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-239363409617131:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":648.269427,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XyldaycAVTHtGdCrZPqAFuuq","com.beeper.exclude_from_timeline":true,"displayname":"Artur (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:43.813524355Z","message":"Request completed"} +{"level":"debug","transaction_id":"1640","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.822179201Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1640","time":"2026-03-06T19:22:43.822500685Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3611,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963427520376_25?ts=1765813114000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":444.032376,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber trotzdem so schnell weg!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.871700748Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A607209B8591956A703","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:38:34Z","event_id":"$XMkfHb8cCtqM_NHVC0RrxByUmB-8sETrDgQGUmxI5AE","part_id":"","time":"2026-03-06T19:22:43.871849512Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1641","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.883237633Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1641","time":"2026-03-06T19:22:43.883378435Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:43.889903443Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3631,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-243632070254676:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-243632070254676%3Amatrix.theocloud.dev","duration":28.632651,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:43.918886632Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:43.91987022Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3628,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915733181520:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915733181520%3Amatrix.theocloud.dev","duration":139.2655,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Stefan Strolch (WA)"},"time":"2026-03-06T19:22:43.931133184Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"30653349408787@lid","alternate_jid":"4915733181520@s.whatsapp.net","time":"2026-03-06T19:22:43.931533519Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"33994833981513@lid","alternate_jid":"4915119111000@s.whatsapp.net","time":"2026-03-06T19:22:43.931613139Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3632,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-247824025391160%3Amatrix.theocloud.dev","duration":19.715547,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-247824025391160","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:43.939865974Z","message":"Request completed"} +{"level":"debug","transaction_id":"1642","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:43.950928281Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1642","time":"2026-03-06T19:22:43.951247669Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3633,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_393351986428%3Amatrix.theocloud.dev","duration":24.841197,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_393351986428","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:43.956810112Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3634,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-247824025391160:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-247824025391160%3Amatrix.theocloud.dev","duration":21.297613,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:43.961465724Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3615,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963519128907_322?ts=1770383065000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":449.953529,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Find ich voll ok, deutlich besser als gut auszusehen wegen des Trainings, aber dann zu denken man ist immernoch ein Stock, geht mir da auch so mittlerweile","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.969216672Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD39A93B395561C2014","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T13:04:25Z","event_id":"$06z91RVwAkjZt4LzFTbrzwCydJwrDqRVelt71mwOBj0","part_id":"","time":"2026-03-06T19:22:43.969397424Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3616,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963522955352_323?ts=1772537314000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":450.712434,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"die wollen vllt doch was bei uns machen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:43.973778486Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABD3E5B3044C53D0482","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:28:34Z","event_id":"$oUY07vl3OSNMN9k0syzoOLVuuMR1r83aTCgDTa0v-j8","part_id":"","time":"2026-03-06T19:22:43.973924666Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3635,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393351986428:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393351986428%3Amatrix.theocloud.dev","duration":21.782039,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:43.978968391Z","message":"Request completed"} +{"level":"debug","transaction_id":"1643","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.02146011Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1643","time":"2026-03-06T19:22:44.021571229Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3620,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963675613235_32?ts=1772742406000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":407.171545,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Supi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.082906864Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A5911A28FFB24CC6730","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T20:26:46Z","event_id":"$VllhAKQpEk-sOX2vke9TM-7P2ZrkRuGee9PLpOJ_FIY","part_id":"","time":"2026-03-06T19:22:44.0830462Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1644","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.084026435Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1644","time":"2026-03-06T19:22:44.084128474Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3621,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963695492283_20?ts=1770821015000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":409.68761,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"👍","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.105297857Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A8873E19A309140FDF0","sender_id":{"user_id":"491628947581"},"message_ts":"2026-02-11T14:43:35Z","event_id":"$mIIEJiF9xOYr2A85vfeB8ay9Ja7HCGxn7ox-bAq1RHI","part_id":"","time":"2026-03-06T19:22:44.105435795Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3636,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-247824025391160:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-247824025391160%3Amatrix.theocloud.dev","duration":145.252513,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Pat (WA)"},"time":"2026-03-06T19:22:44.106933142Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:44.107739051Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3622,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963704725283_11?ts=1772479294000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":407.431638,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mein Papa kommt vielleicht um 14 Uhr zum Kaffeetrinken, mir würde 15 Uhr sehr gut passen 😋","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.11228117Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AAC2D880F34893378A3","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:21:34Z","event_id":"$iWK8qAWCifqopgK7dqJjCIu6I62DLpN40lT71sTUiyc","part_id":"","time":"2026-03-06T19:22:44.112419457Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3639,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393351986428:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393351986428%3Amatrix.theocloud.dev","duration":148.615556,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"davidevo_ (WA)"},"time":"2026-03-06T19:22:44.127787536Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:44.12866238Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3623,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824963733297590_324?ts=1769768408816&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":408.122516,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$02-UAX-zNC5YoMBSyyKtMXM-GDCEHertaw-eZCTQ61E","key":"❤️"}},"time":"2026-03-06T19:22:44.141607842Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3FED028E0DDF789225","target_part_id":"","reaction_sender_id":{"user_id":"4917641870516","is_from_me":true},"reaction_ts":"2026-01-30T10:20:08.816Z","event_id":"$Dg0OYNknN0QlcbQDaBOdnL4g12JNtmh8o82pCua0pkM","time":"2026-03-06T19:22:44.141748644Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"1645","content":{"pdu":4,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:44.145688862Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1645","time":"2026-03-06T19:22:44.145883443Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3627,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963783059045_325?ts=1770410821000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":384.793264,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ana musste auch schon lachen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.16799779Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE9457EE981446AED99","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T20:47:01Z","event_id":"$RF-0mEIS0GlL2SWtXYiHig9L-6MeJ25TUMGA8zwz8l0","part_id":"","time":"2026-03-06T19:22:44.168176097Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3619,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963623121718_29?ts=1771831873000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":558.986153,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"meine haben glaube sigar nur 2,4ghz also recht low","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.182238616Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AF610AF3F1504BCF233","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:31:13Z","event_id":"$vxNj8XU3G3l6BCAyJG0PxIO_Fg4RE2aMC2WRe8fg28k","part_id":"","time":"2026-03-06T19:22:44.182417901Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1646","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.210308408Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1646","time":"2026-03-06T19:22:44.21063087Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:44.267881086Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3630,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963872746146_326?ts=1765813118000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":398.488971,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja ne der hat nur Multiple Choice gemacht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.271387933Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC8578C4F42F7CDC3D5","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:38:38Z","event_id":"$ugdFc92kVo7DJstJKtlhZBA-Kbqt3jm7UX3jhvS_wgU","part_id":"","time":"2026-03-06T19:22:44.271501845Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1647","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.281127638Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1647","time":"2026-03-06T19:22:44.281241062Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:44.286645591Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3646,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-247824025391160:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-247824025391160%3Amatrix.theocloud.dev","duration":30.401125,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:44.298642178Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:44.299572057Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3648,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-102886059073748%3Amatrix.theocloud.dev","duration":33.951135,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-102886059073748","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:44.333800046Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3650,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102886059073748:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-102886059073748%3Amatrix.theocloud.dev","duration":18.851948,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:44.353051911Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3626,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-218845914619936:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":586.474091,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lvAacnCeqsPNaXeWWjNufdBM","com.beeper.exclude_from_timeline":true,"displayname":"Jonas (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:44.3626967Z","message":"Request completed"} +{"level":"debug","transaction_id":"1648","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.371449745Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1648","time":"2026-03-06T19:22:44.371545149Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3629,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-239363409617131:matrix.theocloud.dev?user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":560.62556,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XyldaycAVTHtGdCrZPqAFuuq","com.beeper.exclude_from_timeline":true,"displayname":"Artur (WA)","membership":"join"},"time":"2026-03-06T19:22:44.374912591Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3637,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963970312147_28?ts=1770397521000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":422.325907,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Heute wird nix","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.392834241Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC7637A60865816F1DF1A7A355F06332","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T17:05:21Z","event_id":"$QvF9X0UcHC7vhAjyBX6xNqNrICpp1-Ev3Wf1ZHXho-w","part_id":"","time":"2026-03-06T19:22:44.39303413Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3638,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824963974842532_327?ts=1772537319000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":435.055976,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"weil du nicht mehr mitkommst","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.410016751Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2AC585DD973DD17B71","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:28:39Z","event_id":"$PbrR4DvpJqtc0hMCyh7G_GTFrfL8TK-7nU5mVQerIP0","part_id":"","time":"2026-03-06T19:22:44.410131921Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1649","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.453202562Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1649","time":"2026-03-06T19:22:44.453347136Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1650","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.517596658Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1650","time":"2026-03-06T19:22:44.51903408Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3640,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964083884097_328?ts=1772742420000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":449.003046,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"🥰🥰","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.532986528Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADA62DF2156F99BA4D0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:27:00Z","event_id":"$wBWIb6gYkAH5o4Wtdl7iM_gIwbYYBTMm0_nVQu5U6VA","part_id":"","time":"2026-03-06T19:22:44.533070688Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3651,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102886059073748:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-102886059073748%3Amatrix.theocloud.dev","duration":183.659162,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Viktor Tevosyan (WA)"},"time":"2026-03-06T19:22:44.536906631Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:44.537346567Z","message":""} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3641,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964106362950_329?ts=1771334095000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":448.722,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Mama, hab mich entschieden, wenn ich morgen Frühstück hab, was ich mir heute abend mache dann, reicht es auch morgen naxh der Uni vor dem Training Mealprep zu machen. Unter Woche ist mir das immer so viel Zeit die dafür drauf geht und heute will ich noch Zeit eher mit Ana verbringen eben :).","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.555238534Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC7F40D2E8A00349CCB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-17T13:14:55Z","event_id":"$6hFwQxxD0Ge2FLW-L-FdSKE6NG6cB7k-l2qIC-WiQgM","part_id":"","time":"2026-03-06T19:22:44.555408391Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3642,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964113152730_4?ts=1772479295000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":466.915546,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja genau na der grund war ja weil chrissi vorher maybe nt kann","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.580222349Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A5D42F66B91ED418B40","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:21:35Z","event_id":"$qIG9e8m7b9n-LXNes-Pg5jbR6_EGu85h0IN13ejUH4A","part_id":"","time":"2026-03-06T19:22:44.580435018Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3649,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_393351986428%3Amatrix.theocloud.dev","duration":270.716914,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34842 bytes>","time":"2026-03-06T19:22:44.584849954Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3659,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393351986428:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_393351986428%3Amatrix.theocloud.dev","duration":17.038356,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:44.602207069Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3643,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964142225457_330?ts=1769970266000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":468.080375,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wie siehts mit der Erkältung aus Bro?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.610429802Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF376B9CE65961B299A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-01T18:24:26Z","event_id":"$QLdkS4WJkun0gZEYKa6vhJtj25Qi_ZfNvRPMCGQwZ6w","part_id":"","time":"2026-03-06T19:22:44.610543435Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1651","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.61294915Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1651","time":"2026-03-06T19:22:44.613087577Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3660,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/oKerALTMHuTRmmaWzVJNmUoB?user_id=%40whatsapp_393351986428%3Amatrix.theocloud.dev","duration":23.036474,"status_code":200,"response_length":34842,"response_mime":"image/jpeg","time":"2026-03-06T19:22:44.625376872Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3644,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964169083836_331?ts=1770411373000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":474.882378,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber nächste Woche würd ich mich auch wieder bei ner Schnitzery Bowl sehen mit euch zsm","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.644105479Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5E47865B7833585FA6","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T20:56:13Z","event_id":"$K46XsIqlCN2HeTyqnPn5BDyzbSisTCHF_clDljg3_Sk","part_id":"","time":"2026-03-06T19:22:44.644200814Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:44.692401574Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3662,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393351986428:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_393351986428%3Amatrix.theocloud.dev","duration":67.014017,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oKerALTMHuTRmmaWzVJNmUoB"},"time":"2026-03-06T19:22:44.692707483Z","message":"Request completed"} +{"level":"debug","transaction_id":"1652","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.700434406Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1652","time":"2026-03-06T19:22:44.700677038Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3645,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964183398066_30?ts=1771831878000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":526.586214,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber juckt ja beim server null","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.710126758Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3ACEFEF1361A95FDD957","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:31:18Z","event_id":"$IcpsQvqfS2fCcYhlnSXhuVRm0Y-Gam47pqLJ4vZjGb8","part_id":"","time":"2026-03-06T19:22:44.710231731Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3664,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-191890615967944%3Amatrix.theocloud.dev","duration":25.793984,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-191890615967944","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:44.719524656Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3666,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-191890615967944:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-191890615967944%3Amatrix.theocloud.dev","duration":28.028795,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:44.747867392Z","message":"Request completed"} +{"level":"debug","transaction_id":"1653","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.775348414Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1653","time":"2026-03-06T19:22:44.775485724Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3647,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964272214934_26?ts=1765813123000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":507.025437,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Vielleicht auch einfach überflieger","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.779390602Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3ACDF383D5D0D194D644","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:38:43Z","event_id":"$VxKPyEjQYsSfarzGvt8iwVXLi2A9d_XIvy26XPmPQDU","part_id":"","time":"2026-03-06T19:22:44.779516807Z","message":"Sent message part to Matrix"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":3531,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s3002_990_8_391_443_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2840.641303,"status_code":200,"response_length":209,"response_mime":"application/json","time":"2026-03-06T19:22:44.830722878Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:22:44.831043","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:22:44.831056723Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:22:44.831043","time":"2026-03-06T19:22:44.831263875Z","message":"Finished handling device list changes"} +{"level":"debug","transaction_id":"1654","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.83639169Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1654","time":"2026-03-06T19:22:44.836485279Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3654,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964393978117_29?ts=1770397530000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":465.060328,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber morgen bin ich safe da. Mal gucken wann","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.859166047Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC152A3E245B5877655B2F1BEE681773","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T17:05:30Z","event_id":"$_FDMEHZ6DRZAf667W7-mFOUZbmZu8x_eA_m-4oVHjB8","part_id":"","time":"2026-03-06T19:22:44.859286664Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3655,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964417666149_332?ts=1772537325000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":457.077643,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und dann hab ich keine Ausrede mehe","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.874869718Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA096E84E9574E563C2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:28:45Z","event_id":"$l4Za17PWZYE-wE_XLcGuca6XvpQMskk0AsRgAPQUIO8","part_id":"","time":"2026-03-06T19:22:44.874991034Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3668,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-191890615967944:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-191890615967944%3Amatrix.theocloud.dev","duration":138.082373,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"davidevo_ (WA)"},"time":"2026-03-06T19:22:44.88613792Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:44.88692106Z","message":""} +{"level":"debug","transaction_id":"1655","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:44.920388189Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1655","time":"2026-03-06T19:22:44.920483104Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3667,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-102886059073748%3Amatrix.theocloud.dev","duration":220.837846,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<44057 bytes>","time":"2026-03-06T19:22:44.948291617Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3673,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102886059073748:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-102886059073748%3Amatrix.theocloud.dev","duration":32.546748,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:44.981161594Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3656,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964533568034_333?ts=1772743588000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":461.060954,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"https://youtu.be/JEMyu2ZdfuU?si=Gpnuw8nfb0ocYKcU","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"Tiramisu Brownies ☕ combine two beloved desserts into one","og:type":"video.other","og:description":"Hiii! Make rich and creamy tiramisu brownies with me :) These tiramisu brownies are made with a rich and fudgy brown butter brownie layer with soft espresso-...","og:image":"mxc://matrix.theocloud.dev/MAsJnxYOCodThhIjxiCJdTzW","matrix:image:size":756132,"og:image:width":1024,"og:image:height":576,"og:image:type":"image/jpeg","matched_url":"https://youtu.be/JEMyu2ZdfuU?si=Gpnuw8nfb0ocYKcU"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:44.994781942Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3EB09D3D1027989C2D75A8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:46:28Z","event_id":"$T9zXmHKdoQKHka_Z5muZgRQJIwqbNZanyAGRxj72ut0","part_id":"","time":"2026-03-06T19:22:44.994942719Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1656","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.005553845Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1656","time":"2026-03-06T19:22:45.005668177Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3652,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-218845914619936:matrix.theocloud.dev?user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":646.067302,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lvAacnCeqsPNaXeWWjNufdBM","com.beeper.exclude_from_timeline":true,"displayname":"Jonas (WA)","membership":"join"},"time":"2026-03-06T19:22:45.00930947Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3674,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/mpxMFrBTkgnEXCsuBbAGPUsX?user_id=%40whatsapp_lid-102886059073748%3Amatrix.theocloud.dev","duration":37.568333,"status_code":200,"response_length":44057,"response_mime":"image/jpeg","time":"2026-03-06T19:22:45.018860462Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3657,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964556245449_21?ts=1771344100000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":466.421902,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.022806267Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A78599E8E2FDA2044DF","sender_id":{"user_id":"491628947581"},"message_ts":"2026-02-17T16:01:40Z","event_id":"$42JngREbmL9Y575HQx6HiG2oHg7h_2T6UfAbR8LqAXE","part_id":"","time":"2026-03-06T19:22:45.02288931Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:45.05092006Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3658,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964581351139_12?ts=1772479309000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":473.495939,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Er wird geimpft","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.054975727Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A25EF286C3350C98A92","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:21:49Z","event_id":"$gTkQoiaA_W-S7F6eZhG2LVnAOmmm7n-Ik6vWHMgazzQ","part_id":"","time":"2026-03-06T19:22:45.055083983Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3677,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-102886059073748:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-102886059073748%3Amatrix.theocloud.dev","duration":66.25595,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mpxMFrBTkgnEXCsuBbAGPUsX"},"time":"2026-03-06T19:22:45.085414568Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:45.086481966Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3653,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-100738508263616:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":711.458185,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UfrLlxiCRoIcIlQeDeyHFFSX","com.beeper.exclude_from_timeline":true,"displayname":"Nemanja (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:45.0872327Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3661,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964611365687_18?ts=1769978667000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":478.309534,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Schlaf die ganze Zeit damit es besser wird, bin bis Dienstag krankgeschrieben","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.089782569Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A2CB60FBE03C65A52C5","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-01T20:44:27Z","event_id":"$DlUBN5PFYQRtqFH1yQvFlMiD3VzmMskGT_ja5qgXTsw","part_id":"","time":"2026-03-06T19:22:45.089868196Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1657","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.108109304Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1657","time":"2026-03-06T19:22:45.10827937Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3681,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-189768969261225%3Amatrix.theocloud.dev","duration":32.250687,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-189768969261225","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:45.119032765Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3663,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964644780853_334?ts=1770411403000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":495.2682,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Würd die mit Pommes statt MacNCheese","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.140179309Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A728C45E5A70EE23E57","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T20:56:43Z","event_id":"$j8PSSsdiVVJSJYEkngz17gTCPqUNT3mw--VeO4AvzsM","part_id":"","time":"2026-03-06T19:22:45.14029364Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3684,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-189768969261225:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-189768969261225%3Amatrix.theocloud.dev","duration":30.819131,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:45.150158154Z","message":"Request completed"} +{"level":"debug","transaction_id":"1658","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.194635696Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1658","time":"2026-03-06T19:22:45.195134998Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3665,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964711111254_335?ts=1771831915000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":539.70698,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"absolut nicht","m.mentions":{"user_ids":["@whatsapp_4917620338641:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$IcpsQvqfS2fCcYhlnSXhuVRm0Y-Gam47pqLJ4vZjGb8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.250971538Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6300A2998AEEF1A46F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:31:55Z","event_id":"$pTJaujWC-Wu5eNPX-hFSfZf9hYSjU1guhhQ4zcEHBHc","part_id":"","time":"2026-03-06T19:22:45.251130429Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3669,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964780369929_27?ts=1765813137000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":479.582618,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":77724},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"XfdkMRpoxED32kXBdMobMfYQhiLLoK5n8Ndw2LJSeDw=","length":77724,"type":"WhatsApp Image Keys","sha256":"JCpAMUPmOUC7t1HNwmpV64Eiy6AbrFzGXuOH2gKcWDk=","enc_sha256":"Gpw8GWxnLPt4yutDjt/3vE8szv/bdrbOVhNMS4Mgk40=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:45.260205725Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA0C564EDFFD0ACFB20","sender_id":{"user_id":"491731828379"},"message_ts":"2025-12-15T15:38:57Z","event_id":"$6wEm7iBSoe4i6qJ4L9vuQH1CaiBV38fDIFYYucBooEg","part_id":"","time":"2026-03-06T19:22:45.260437601Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1659","content":{"pdu":1,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:45.268048097Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1659","time":"2026-03-06T19:22:45.268178003Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3680,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-191890615967944%3Amatrix.theocloud.dev","duration":270.717403,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34842 bytes>","time":"2026-03-06T19:22:45.332417818Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3686,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-189768969261225:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-189768969261225%3Amatrix.theocloud.dev","duration":188.171178,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491631390112 (WA)"},"time":"2026-03-06T19:22:45.338540884Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:45.339416775Z","message":""} +{"level":"debug","transaction_id":"1660","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.348449328Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1660","time":"2026-03-06T19:22:45.348598232Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3689,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-191890615967944:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-191890615967944%3Amatrix.theocloud.dev","duration":18.453638,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:45.351244902Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3671,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964860545081_336?ts=1770397778000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":513.145709,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles klar","m.mentions":{"user_ids":["@whatsapp_4917657607100:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$QvF9X0UcHC7vhAjyBX6xNqNrICpp1-Ev3Wf1ZHXho-w"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.373860996Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A45787D0813D6A204D3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T17:09:38Z","event_id":"$e1gzsAM7Op0V2k3Hy9vRyAK6l4eEzK2m3VL_3ggKq8k","part_id":"","time":"2026-03-06T19:22:45.374060395Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3690,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WXFCwGrYJjAqeVGOQlsciqpp?user_id=%40whatsapp_lid-191890615967944%3Amatrix.theocloud.dev","duration":32.721982,"status_code":200,"response_length":34842,"response_mime":"image/jpeg","time":"2026-03-06T19:22:45.384137299Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3672,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964875751895_26?ts=1772537327000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":518.487242,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja hab ich mir gedacht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.394386712Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AAF7F49201DEFBCA972","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T11:28:47Z","event_id":"$S7fVgeOONoq4LLwz8KbjWil1Zf1wjBaBjInUrikB96w","part_id":"","time":"2026-03-06T19:22:45.3945294Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3692,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-191890615967944:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-191890615967944%3Amatrix.theocloud.dev","duration":42.172889,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WXFCwGrYJjAqeVGOQlsciqpp"},"time":"2026-03-06T19:22:45.42657056Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"393351986428@s.whatsapp.net","alternate_jid":"191890615967944@lid","time":"2026-03-06T19:22:45.426976972Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491608358183@s.whatsapp.net","alternate_jid":"213099231596676@lid","time":"2026-03-06T19:22:45.427052681Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915141346015@s.whatsapp.net","alt_jid":"131061430358216@lid","source_push_name":"Lori 🦉","alt_push_name":"Loredana Strano","time":"2026-03-06T19:22:45.42709738Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915141346015@s.whatsapp.net","alternate_jid":"131061430358216@lid","time":"2026-03-06T19:22:45.427171413Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:45.427635165Z","message":""} +{"level":"debug","transaction_id":"1661","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.43349318Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1661","time":"2026-03-06T19:22:45.433595289Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3675,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824964995787740_337?ts=1772743602000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":490.861016,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"können wir die mal zsm machen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.486798638Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3EB04E7808D6B19E9FA6B7","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:46:42Z","event_id":"$Q-07460hfChTkd2VHkzQtH9mCASZ389aOVtko_Vbsd0","part_id":"","time":"2026-03-06T19:22:45.486936995Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1662","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.492764489Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1662","time":"2026-03-06T19:22:45.492878542Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3678,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965023450212_338?ts=1771670203000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":482.445869,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Einkauf:\n- 1kg Kartoffeln\n- BBQ Sauce\n- ⁠900g Bio Hack","format":"org.matrix.custom.html","formatted_body":"Einkauf:\u003cbr\u003e\u003cul\u003e\u003cli\u003e1kg Kartoffeln\u003c/li\u003e\u003cli\u003eBBQ Sauce\u003c/li\u003e\u003cli\u003e⁠900g Bio Hack\u003c/li\u003e\u003c/ul\u003e","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.506024521Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF57C9EE08CAE2AB01D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T10:36:43Z","event_id":"$Ht2vFlSBRQZprZhtxKzyzRMc0QoBrDBHNfNWn0UsJsw","part_id":"","time":"2026-03-06T19:22:45.506147024Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:45.515947981Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3679,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965055936826_339?ts=1772479310000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":481.811911,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ahhh","m.mentions":{"user_ids":["@whatsapp_lid-65244881764452:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$qIG9e8m7b9n-LXNes-Pg5jbR6_EGu85h0IN13ejUH4A"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.537870891Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3ACB80A94CA4D0AC628B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:21:50Z","event_id":"$NAxYk9ISwLATPaiLTncew-cFi4Wpf-RBdq0rTa3wrw4","part_id":"","time":"2026-03-06T19:22:45.538011344Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3696,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-189768969261225:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-189768969261225%3Amatrix.theocloud.dev","duration":31.737207,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:45.548087409Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:45.549300568Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3683,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965090472820_340?ts=1769979174000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":474.576887,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"I see","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.565184083Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE2DA340F9CE0D97360","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-01T20:52:54Z","event_id":"$yX5TiMnn1ooYLpTixhKWFq_rqVnD7v2WpT6MrY9Lm9g","part_id":"","time":"2026-03-06T19:22:45.565396264Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3698,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-237340027011205%3Amatrix.theocloud.dev","duration":26.667989,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-237340027011205","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:45.576280264Z","message":"Request completed"} +{"level":"debug","transaction_id":"1663","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.582131364Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1663","time":"2026-03-06T19:22:45.58222628Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:45.58942338Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3700,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-237340027011205:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-237340027011205%3Amatrix.theocloud.dev","duration":31.238674,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:45.607915012Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3618,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2013.962682,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","creation_content":{"type":"m.space"},"initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"network":{"id":"120363373705450816@g.us","displayname":"BO9K Calisthenics e.V","avatar_url":"mxc://matrix.theocloud.dev/ESGsxDpvHUKdCUZbADklcwiU"},"channel":{"id":"120363373705450816@g.us","displayname":"BO9K Calisthenics e.V","avatar_url":"mxc://matrix.theocloud.dev/ESGsxDpvHUKdCUZbADklcwiU"},"com.beeper.room_type.v2":"space"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"network":{"id":"120363373705450816@g.us","displayname":"BO9K Calisthenics e.V","avatar_url":"mxc://matrix.theocloud.dev/ESGsxDpvHUKdCUZbADklcwiU"},"channel":{"id":"120363373705450816@g.us","displayname":"BO9K Calisthenics e.V","avatar_url":"mxc://matrix.theocloud.dev/ESGsxDpvHUKdCUZbADklcwiU"},"com.beeper.room_type.v2":"space"}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2},"m.room.avatar":{"level":2},"m.room.name":{"level":2},"m.room.topic":{"level":2}},"member_actions":{"invite":2,"kick":2,"leave":2},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"Willkommen in der Calisthenics-Community \n\nBars over 9000!\n\nSchön, dass du dabei bist! Damit hier alles übersichtlich bleibt, haben wir unsere Community in thematische Gruppen unterteilt. Bitte schreib deine Beiträge in die passende Gruppe, damit alle den Überblick behalten – danke!\nBei Fragen einfach hier melden oder einen Admin direkt anschreiben.\n\nViel Spaß und starke Gains!"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"BO9K Calisthenics e.V"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/ESGsxDpvHUKdCUZbADklcwiU"}}],"preset":"private_chat","power_level_content_override":{"users":{"@whatsapp_lid-168212561981526:matrix.theocloud.dev":50,"@whatsapp_lid-21079833710744:matrix.theocloud.dev":50,"@whatsapp_lid-239363409617131:matrix.theocloud.dev":50,"@whatsapp_lid-275883097071617:matrix.theocloud.dev":50,"@whatsapp_lid-38504566390811:matrix.theocloud.dev":50,"@whatsapp_lid-44419206123644:matrix.theocloud.dev":75,"@whatsapp_lid-80358888464591:matrix.theocloud.dev":50,"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":0,"m.room.avatar":0,"m.room.encryption":100,"m.room.name":0,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":0},"state_default":99,"ban":99},"com.beeper.local_room_id":"!120363373705450816@g.us.:matrix.theocloud.dev"},"time":"2026-03-06T19:22:45.611710237Z","message":"Request completed"} +{"level":"info","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","room_id":"!ySyjKrWRRJvodFFEZK:matrix.theocloud.dev","time":"2026-03-06T19:22:45.612362773Z","message":"Matrix room created"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3685,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965140994507_341?ts=1770412534000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":473.364496,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"dann aber essen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.614474801Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A859364236C1B5B2E85","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T21:15:34Z","event_id":"$wB44nnkNqhBYFsQVsW_snPTG0OmyBhC831yvTvbGJD8","part_id":"","time":"2026-03-06T19:22:45.614611622Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1664","content":{"pdu":13,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.6535189Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1664","time":"2026-03-06T19:22:45.654247424Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3703,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":41.758376,"status_code":200,"response_length":722,"response_mime":"application/json","time":"2026-03-06T19:22:45.65482921Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3705,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.create/?format=event&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":34.467548,"status_code":200,"response_length":347,"response_mime":"application/json","time":"2026-03-06T19:22:45.689737043Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3688,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965261305111_343?ts=1765813140000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":448.882359,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Glaub eher weniger aber weiß man nicht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.710374507Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7097BBAAE789FCDB3B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:39:00Z","event_id":"$TpOY1yEuS6oSZTwa0xi1zYVWW9PW6oUNmOJr51Qvedo","part_id":"","time":"2026-03-06T19:22:45.710512445Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3682,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-100738508263616:matrix.theocloud.dev?user_id=%40whatsapp_lid-100738508263616%3Amatrix.theocloud.dev","duration":640.092511,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UfrLlxiCRoIcIlQeDeyHFFSX","com.beeper.exclude_from_timeline":true,"displayname":"Nemanja (WA)","membership":"join"},"time":"2026-03-06T19:22:45.727982845Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:45.72861345Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3687,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965252637763_342?ts=1771831923000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":481.224748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"dacht ich auch","m.mentions":{"user_ids":["@whatsapp_4917620338641:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$hc5o1jxdlRTMVmEJz3JaW5JU0LuqtjC816_Q6cYqxd8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.734026431Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4DA41E43217E49D734","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:32:03Z","event_id":"$8ijgbE50Nyyu5ojKODskl11VNnxAh7LTP1QPYNgsQEM","part_id":"","time":"2026-03-06T19:22:45.734209278Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3676,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-173804609343590:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":739.200768,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nasser (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:45.749188406Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3706,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.605658,"status_code":200,"response_length":480,"response_mime":"application/json","time":"2026-03-06T19:22:45.769018703Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3708,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_33628246935%3Amatrix.theocloud.dev","duration":49.520499,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_33628246935","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:45.778378118Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3702,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-237340027011205:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-237340027011205%3Amatrix.theocloud.dev","duration":182.527229,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917679096203 (WA)"},"time":"2026-03-06T19:22:45.790644505Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:45.791605673Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3712,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33628246935:matrix.theocloud.dev/displayname?user_id=%40whatsapp_33628246935%3Amatrix.theocloud.dev","duration":29.815638,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:22:45.808619654Z","message":"Request completed"} +{"level":"debug","transaction_id":"1665","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.811895812Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1665","time":"2026-03-06T19:22:45.812014334Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3691,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965375630937_344?ts=1770397799000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":467.7415,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oke ich sag dir Bescheid, wenn ich losgehe morgen","m.mentions":{"user_ids":["@whatsapp_4917657607100:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$_FDMEHZ6DRZAf667W7-mFOUZbmZu8x_eA_m-4oVHjB8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.843544738Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5C84458C89AFC4A36D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T17:09:59Z","event_id":"$UoZ9wmEwSSdytL-d9XjxG_U4P1QZuxShdXnt0Dd4KDo","part_id":"","time":"2026-03-06T19:22:45.843722417Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3693,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965395324484_345?ts=1772537330000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":464.023311,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ich glaub ich sag trz ab","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.859499143Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB93C0B51CA4BA16F91","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:28:50Z","event_id":"$kiHHXXZp9R8U2GNKDVxSBrzmAfTETOCvzqKHNQ17DOc","part_id":"","time":"2026-03-06T19:22:45.859632262Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3701,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491624155301%3Amatrix.theocloud.dev","duration":275.035957,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<89322 bytes>","time":"2026-03-06T19:22:45.873209238Z","message":"Request completed"} +{"level":"debug","transaction_id":"1666","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.879835796Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1666","time":"2026-03-06T19:22:45.88037421Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3716,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624155301:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491624155301%3Amatrix.theocloud.dev","duration":29.618544,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:45.903228256Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3717,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/UXupWioxUikZezxYoDLnRDex?user_id=%40whatsapp_491624155301%3Amatrix.theocloud.dev","duration":24.41907,"status_code":200,"response_length":89322,"response_mime":"image/jpeg","time":"2026-03-06T19:22:45.927838066Z","message":"Request completed"} +{"level":"debug","transaction_id":"1667","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:45.945064367Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1667","time":"2026-03-06T19:22:45.945198533Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3713,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33628246935:matrix.theocloud.dev/displayname?user_id=%40whatsapp_33628246935%3Amatrix.theocloud.dev","duration":160.383898,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+33628246935 (WA)"},"time":"2026-03-06T19:22:45.9692297Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:45.970110131Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3718,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624155301:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491624155301%3Amatrix.theocloud.dev","duration":43.496539,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UXupWioxUikZezxYoDLnRDex"},"time":"2026-03-06T19:22:45.971585408Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:45.972669988Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3694,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965487751635_33?ts=1772743669000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":498.253954,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Safe","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.986198982Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A866DF505831E300CA0","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T20:47:49Z","event_id":"$ZFLiqb3CS5_yCxGizfNmDVxmQ_p3kwQK4NOZxz_1X78","part_id":"","time":"2026-03-06T19:22:45.986359619Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3695,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965506975702_346?ts=1772204851000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":485.548469,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Einkauf:\n- Rispentomaten\n- ⁠Cherrytomaten\n- ⁠Knoblauch\n- 2 Feta\n- ⁠Tagliatelle\n- ⁠TK Lachs (kein Wildlachs)","format":"org.matrix.custom.html","formatted_body":"Einkauf:\u003cbr\u003e\u003cul\u003e\u003cli\u003eRispentomaten\u003c/li\u003e\u003cli\u003e⁠Cherrytomaten\u003c/li\u003e\u003cli\u003e⁠Knoblauch\u003c/li\u003e\u003cli\u003e2 Feta\u003c/li\u003e\u003cli\u003e⁠Tagliatelle\u003c/li\u003e\u003cli\u003e⁠TK Lachs (kein Wildlachs)\u003c/li\u003e\u003c/ul\u003e","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:45.992696612Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6078E6760D7A36F8B1","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-27T15:07:31Z","event_id":"$Mn76AeTy22fpkCbzKi4cipSxOyetdMbt8RxV169otIU","part_id":"","time":"2026-03-06T19:22:45.99289231Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3697,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965538875292_347?ts=1772479317000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":482.410179,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Man Chrissi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.021417054Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A12F0B26732627E59CC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:21:57Z","event_id":"$K-0KVa5h5rRUEHCZVr7s7i_N3erwu80_uK0lEGGO9Lw","part_id":"","time":"2026-03-06T19:22:46.021545145Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3699,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965566354569_19?ts=1769981211000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":483.846764,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":15004},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"nz41CQ/nL6p7c1/tBnOAo9U+YbkUPhFPNV8Q3YA4fLE=","length":15004,"type":"WhatsApp Image Keys","sha256":"z28HA6a10TA0mO4Lnmu7KT086efvJFZxNDPMXnocKaE=","enc_sha256":"M8Jf8xkKzQo2DF5uXqMXrKIuVd3Sk7P7K+wozsFIES8=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:46.050466384Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF2B88C73AAC21F1728","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-01T21:26:51Z","event_id":"$glzjcE22MRfRjiLCvSkmFL6gJx67T7Bfogc6r5GHmhI","part_id":"","time":"2026-03-06T19:22:46.050654399Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1668","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.065285363Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1668","time":"2026-03-06T19:22:46.065438108Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3704,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965615487583_18?ts=1770413024000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":476.237036,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hahahha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.091868565Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A5E8C3E2B3FE54044D0","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T21:23:44Z","event_id":"$7_kMOWnk4XDjK0o1OvwamM66fS3b6Vbp35OBtEh1nJk","part_id":"","time":"2026-03-06T19:22:46.092021938Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1669","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.115694116Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1669","time":"2026-03-06T19:22:46.115924595Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:46.126393593Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:46.131589434Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491624155301@s.whatsapp.net","alternate_jid":"165339312693343@lid","time":"2026-03-06T19:22:46.131678413Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491736748726@s.whatsapp.net","alternate_jid":"65244881764452@lid","time":"2026-03-06T19:22:46.131792954Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917684488832@s.whatsapp.net","alternate_jid":"61169360498824@lid","time":"2026-03-06T19:22:46.131884727Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:46.132598863Z","message":"04012338ad0e79efa6c43c"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:46.145839339Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3707,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965711411943_348?ts=1765813152000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":452.633304,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":405944},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"1Ttlznoy7xA+0p/WcwQmuF831PPCXZnb4bQlW85cwqg=","length":405944,"type":"WhatsApp Image Keys","sha256":"PhOWCc9eWXeXwY+uDZAHmT6zTMH8JwjdqGmT07WrbBc=","enc_sha256":"/jm5r2Kp0b9QjP03TTJMWQZ/yCY3RklNj8nZx6qsFkA=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:46.164290742Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A784250C748A5F81E0A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2025-12-15T15:39:12Z","event_id":"$WNfMaahyetOXicPA_oMIpHvv74u0_GEiU8Y37-UqNaE","part_id":"","time":"2026-03-06T19:22:46.164497894Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3709,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965735163741_31?ts=1771832271000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":468.324543,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"wieso hast du uni","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.203646547Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AD41CF4F9EB7A4D2000","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:37:51Z","event_id":"$yhu4oXAHZrJGiOEonP5X5DGQSPfcdF-o_PEI1gTh3Go","part_id":"","time":"2026-03-06T19:22:46.203783507Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1670","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.230425445Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1670","time":"2026-03-06T19:22:46.230544666Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3714,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965844714944_30?ts=1770406497000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":435.180924,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich schreib dir aucz","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.280054759Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACA600EA6ED8DEEF53EFFBF03C228FBA","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-06T19:34:57Z","event_id":"$kSWBICj3Ew6HWpY3jBRWwEE09OtKCktllwWk87iLNSI","part_id":"","time":"2026-03-06T19:22:46.280241726Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3715,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965861106491_27?ts=1772537336000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":434.705927,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ey minjung","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$l4Za17PWZYE-wE_XLcGuca6XvpQMskk0AsRgAPQUIO8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.295964045Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3ABAFC99C78284290BBC","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T11:28:56Z","event_id":"$mylbGQqV4JvRHNZmFPi7SAm8Rk4FavbMgikMjEM9l6o","part_id":"","time":"2026-03-06T19:22:46.29609933Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:46.298165332Z","message":""} +{"level":"debug","transaction_id":"1671","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.31940316Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1671","time":"2026-03-06T19:22:46.319524825Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1672","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.410319135Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1672","time":"2026-03-06T19:22:46.410463778Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3710,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-173804609343590:matrix.theocloud.dev?user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":684.394959,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nasser (WA)","membership":"join"},"time":"2026-03-06T19:22:46.434243722Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3711,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21079833710744:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":672.08939,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VnmYzoNKYWXdotaucesMOFXO","com.beeper.exclude_from_timeline":true,"displayname":"Burak C. (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:46.442451928Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3724,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_33628246935%3Amatrix.theocloud.dev","duration":310.252562,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40767 bytes>","time":"2026-03-06T19:22:46.4481565Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3725,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-237340027011205%3Amatrix.theocloud.dev","duration":302.791738,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<25412 bytes>","time":"2026-03-06T19:22:46.45876602Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3719,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965987108327_349?ts=1772743682000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":484.911717,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yippieee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.472152466Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3EB063C5639EE9AA158FB2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:48:02Z","event_id":"$1_xSWGo-SBHT3Y1ReDUoP1chDQYXz4y1ZvD3PAuWpT4","part_id":"","time":"2026-03-06T19:22:46.472251712Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3720,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824965993831408_350?ts=1772271752000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":483.031077,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Einkauf:\n- Frische Hefe\n- ⁠2 Dosen Thunfisch\n- ⁠Agavendicksaft\n- ⁠800g Bio Rinderhack\n- ⁠3 Dosen stückige Tomaten\n- ⁠Geriebener Mozzarella\n- ⁠2 Mozzarellakugeln\n- ⁠300g Ricotta","format":"org.matrix.custom.html","formatted_body":"Einkauf:\u003cbr\u003e\u003cul\u003e\u003cli\u003eFrische Hefe\u003c/li\u003e\u003cli\u003e⁠2 Dosen Thunfisch\u003c/li\u003e\u003cli\u003e⁠Agavendicksaft\u003c/li\u003e\u003cli\u003e⁠800g Bio Rinderhack\u003c/li\u003e\u003cli\u003e⁠3 Dosen stückige Tomaten\u003c/li\u003e\u003cli\u003e⁠Geriebener Mozzarella\u003c/li\u003e\u003cli\u003e⁠2 Mozzarellakugeln\u003c/li\u003e\u003cli\u003e⁠300g Ricotta\u003c/li\u003e\u003c/ul\u003e","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.477032131Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8D4D6192AF4F2C1DCF","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-28T09:42:32Z","event_id":"$Vcs93Go8LkVKFnX3Irz-69jNrDq-ooDaejFVCOqenUo","part_id":"","time":"2026-03-06T19:22:46.477195143Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3733,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33628246935:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_33628246935%3Amatrix.theocloud.dev","duration":33.185105,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:46.481646466Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3734,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-237340027011205:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-237340027011205%3Amatrix.theocloud.dev","duration":34.305235,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:46.493443513Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3737,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/CXbwkplKmdpvVEfYvqkXIpsW?user_id=%40whatsapp_33628246935%3Amatrix.theocloud.dev","duration":22.335119,"status_code":200,"response_length":40767,"response_mime":"image/jpeg","time":"2026-03-06T19:22:46.504131327Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3721,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966022283237_5?ts=1772479325000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":485.172718,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber ich checke theo sehr weil für mich wer direkt nach der uni auch einfacher","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.507577481Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3ADA5ED132D3A2C47125","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:22:05Z","event_id":"$hmgiTKgtKDe1LAc_pUnGka2-81z4gZJ6PD6r6i8fAN4","part_id":"","time":"2026-03-06T19:22:46.507710949Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3738,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/NPSYsdNXCPPbyqMwvLdofOLK?user_id=%40whatsapp_lid-237340027011205%3Amatrix.theocloud.dev","duration":26.635932,"status_code":200,"response_length":25412,"response_mime":"image/jpeg","time":"2026-03-06T19:22:46.520242457Z","message":"Request completed"} +{"level":"debug","transaction_id":"1673","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.524175202Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1673","time":"2026-03-06T19:22:46.524278149Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3722,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966051562976_351?ts=1769981247000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":485.129136,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":105988},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"LYu4t/VmmB7Py5KPBYd+AybgaAZHyvwA67kQml2aDHc=","length":105988,"type":"WhatsApp Image Keys","sha256":"I2EXQ6PTnQFBspsCghEybUHDDwH8NCnpBh9kutK9I3c=","enc_sha256":"Da7TLIauAF7eAupnnWK3UnMLw622hwRhoAfPXlbDgR4=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:46.536941589Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC2EB82DE3B3386CEAD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-01T21:27:27Z","event_id":"$hVXdJbOJXa7Ff8YSURt8D_AB2Sw_oJy_JTrnqm25Wao","part_id":"","time":"2026-03-06T19:22:46.53710935Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3739,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33628246935:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_33628246935%3Amatrix.theocloud.dev","duration":61.598173,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CXbwkplKmdpvVEfYvqkXIpsW"},"time":"2026-03-06T19:22:46.565981699Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3741,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-237340027011205:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-237340027011205%3Amatrix.theocloud.dev","duration":53.990331,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NPSYsdNXCPPbyqMwvLdofOLK"},"time":"2026-03-06T19:22:46.574574246Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:46.57559925Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3723,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966092782869_19?ts=1770413081000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":485.861921,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":951,"mimetype":"image/jpeg","size":60147,"w":1179},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/sOLGuTrPYJdDcWDzENzgPbnB"},"time":"2026-03-06T19:22:46.578851872Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A4699DD70CA10948EC4","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T21:24:41Z","event_id":"$zosVqItu2dUDieuxtDpeOfm_iG_mi7mBvIYbvTofGgA","part_id":"","time":"2026-03-06T19:22:46.579422273Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1674","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.592294052Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1674","time":"2026-03-06T19:22:46.592638304Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3744,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-12395695087726%3Amatrix.theocloud.dev","duration":26.256968,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-12395695087726","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:46.602106603Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3730,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-130898087411771%3Amatrix.theocloud.dev","duration":307.99177,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<85321 bytes>","time":"2026-03-06T19:22:46.620728421Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3746,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12395695087726:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12395695087726%3Amatrix.theocloud.dev","duration":21.500434,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:46.623958483Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3747,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130898087411771:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-130898087411771%3Amatrix.theocloud.dev","duration":19.305923,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:46.640316296Z","message":"Request completed"} +{"level":"debug","transaction_id":"1675","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.660044625Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1675","time":"2026-03-06T19:22:46.660196462Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3749,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/bUlHBxfaRnbdoxMjYjlMpatE?user_id=%40whatsapp_lid-130898087411771%3Amatrix.theocloud.dev","duration":23.894905,"status_code":200,"response_length":85321,"response_mime":"image/jpeg","time":"2026-03-06T19:22:46.664356892Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3726,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966165397113_352?ts=1771221469000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":513.984584,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"moin, wollen wir uns dann um 7:30 Uhr treffen am Breitenbachplatz?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.679503501Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEDC4F6DCE56A74BD91","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T05:57:49Z","event_id":"$s3JdB4RGhlcAs_3nMIbZSeHQ661XgB8sp3nKmiDTsYw","part_id":"","time":"2026-03-06T19:22:46.679635224Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3750,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-130898087411771:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-130898087411771%3Amatrix.theocloud.dev","duration":64.597126,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/bUlHBxfaRnbdoxMjYjlMpatE"},"time":"2026-03-06T19:22:46.729186803Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:46.730177445Z","message":"04012338ad0e79efa6c43c"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3727,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966204617702_32?ts=1771832282000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":554.969947,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"wenn gerade überall vorlesungsfreie zeit ist","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.759726216Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AEEBA6BF92A2179B267","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:38:02Z","event_id":"$JcpOLxpi44WkE2vKwl6B6yFC4PLwmx1IQnzBPAxI7Co","part_id":"","time":"2026-03-06T19:22:46.759858846Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1676","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.769095129Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1676","time":"2026-03-06T19:22:46.76920513Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966281115522_353?ts=1770406777000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":523.817459,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Top","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.80506631Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A802148E6270E66DF77","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T19:39:37Z","event_id":"$44eFwe8myvWHch_ftwZAqlOlcjj2mgCkUIj1InhCzwY","part_id":"","time":"2026-03-06T19:22:46.805185949Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3748,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12395695087726:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12395695087726%3Amatrix.theocloud.dev","duration":182.449425,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915159400259 (WA)"},"time":"2026-03-06T19:22:46.806589289Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:46.807147398Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3729,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966296970891_354?ts=1772537337000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":520.661708,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"will mit dir zocke","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.817823827Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6FED95E2645FFD9450","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:28:57Z","event_id":"$xSwUODwZFPxH2Rhx_rVJAPw32tU_y92oU8TrHfURePI","part_id":"","time":"2026-03-06T19:22:46.81795066Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1677","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.822962816Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1677","time":"2026-03-06T19:22:46.823077218Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:46.88167036Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3735,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966473139266_34?ts=1772744022000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":408.393155,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gute Nacht ❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.881675528Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"130898087411771@lid","alternate_jid":"491628947581@s.whatsapp.net","time":"2026-03-06T19:22:46.881766672Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A714493F98F65E59AF2","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T20:53:42Z","event_id":"$mPBr_eAF-5Bo7J5ceb9fJ5L63ujbzrT8VTaxevrh_wA","part_id":"","time":"2026-03-06T19:22:46.881812419Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3736,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966478010551_22?ts=1772553913000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":404.934359,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Theo,\nhast du eine Idee, was wir heute essen wollen? Ich würde noch zu Lidl einkaufen gehen.","format":"org.matrix.custom.html","formatted_body":"Hey Theo,\u003cbr\u003ehast du eine Idee, was wir heute essen wollen? Ich würde noch zu Lidl einkaufen gehen.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.883104639Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A332E29F1299E5AA4A8","sender_id":{"user_id":"491628947581"},"message_ts":"2026-03-03T16:05:13Z","event_id":"$BNRfpSNxJ6uaCyLABRZO0E1rYucY25un2WVkv9B2VdA","part_id":"","time":"2026-03-06T19:22:46.883274705Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3755,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-170402944921672%3Amatrix.theocloud.dev","duration":32.51888,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-170402944921672","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:46.915125894Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3740,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966508610657_355?ts=1772479340000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":414.01182,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"was soll ich 4h in der Bahn machen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:46.922748961Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A63D15C08696EF17136","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:22:20Z","event_id":"$6L1CYdH4c0lV4NTsT-RApTuU7VR5RXYCvEXg4WAA48A","part_id":"","time":"2026-03-06T19:22:46.92284269Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3758,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-170402944921672:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-170402944921672%3Amatrix.theocloud.dev","duration":31.559109,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:46.947151689Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3742,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966537971901_20?ts=1769981873000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":418.204099,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":10322},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"51G/5cTaHV9E7cwmn1WQ4tTbdJIRiJnH27Z/EOJvrF0=","length":10322,"type":"WhatsApp Image Keys","sha256":"Hibpa+ayH2z7YohXNFQNtg6LJXZNhV9VRMuwO2s49Ys=","enc_sha256":"VPZqphMYMH/nVYjvyKJSPwOPgDz9aVat4Plg0b1LjDM=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:46.956432531Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A1DF87FAFDDDB86F5D9","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-01T21:37:53Z","event_id":"$WRWf4NTX5IqQXsvw1E_zOn5lL6XeirILLGIKDcas5wk","part_id":"","time":"2026-03-06T19:22:46.956587999Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1678","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:46.962662176Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1678","time":"2026-03-06T19:22:46.962770082Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3745,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966580238659_20?ts=1770413092000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":421.212203,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Fett heute etwas übertrieben 😅","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.001586356Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3ABCFA1359665FBFDD0A","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T21:24:52Z","event_id":"$ZS9zUy0fbIZ2i-tZlwH3yLLcBdwfUI-Kks9OLmg6FbU","part_id":"","time":"2026-03-06T19:22:47.001710884Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1679","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.043258616Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1679","time":"2026-03-06T19:22:47.043404936Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3732,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21079833710744:matrix.theocloud.dev?user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":604.472287,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VnmYzoNKYWXdotaucesMOFXO","com.beeper.exclude_from_timeline":true,"displayname":"Burak C. (WA)","membership":"join"},"time":"2026-03-06T19:22:47.047650085Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3731,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127753970032737:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":627.324028,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sYSbpNQTvisKpJOIimOumfcj","com.beeper.exclude_from_timeline":true,"displayname":"Josh (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:47.062529757Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:47.07290328Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3765,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12395695087726:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12395695087726%3Amatrix.theocloud.dev","duration":22.579147,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:47.095726107Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:47.096829125Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3751,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966680465787_356?ts=1771223646000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":416.803762,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"video.mp4","info":{"duration":1000,"fi.mau.autoplay":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":498,"mimetype":"video/mp4","size":114137,"w":498},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/eSBwNOSQCEhiQPbGQPpYvOFL"},"time":"2026-03-06T19:22:47.097478797Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2CDAA45DB7F638CA32","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-16T06:34:06Z","event_id":"$YIjJQ8kb-BxknaFI8qvm3oXk0jZejH6WpXaZlx6z5lU","part_id":"","time":"2026-03-06T19:22:47.097607098Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1680","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.101845262Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1680","time":"2026-03-06T19:22:47.102377809Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3760,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-170402944921672:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-170402944921672%3Amatrix.theocloud.dev","duration":160.819783,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Marco (WA)"},"time":"2026-03-06T19:22:47.108144331Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:47.108845896Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3766,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-177803660156957%3Amatrix.theocloud.dev","duration":18.449796,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-177803660156957","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:47.11557205Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3768,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177803660156957:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-177803660156957%3Amatrix.theocloud.dev","duration":20.552816,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:47.136515143Z","message":"Request completed"} +{"level":"debug","transaction_id":"1681","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.157315829Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1681","time":"2026-03-06T19:22:47.157454954Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3752,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966760745144_357?ts=1771832916000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":406.732726,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"weil die hwr keine normale uni ist","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.167632081Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC4ABD67F3D8135E54F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:48:36Z","event_id":"$mO118n_L3aydRhHT6f3KTi7nAAYceZ54zwi-J_EPmpA","part_id":"","time":"2026-03-06T19:22:47.167781404Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3753,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966806008970_31?ts=1770474510000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":390.741514,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"So bro, mache mich gleich rdy","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.196861115Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC1BFBFF872CCF1BE12461B364A9D67A","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-07T14:28:30Z","event_id":"$0CSxguIbHueoiJEoWjbVjihHpPf1JDn-UF7WZNJtUoU","part_id":"","time":"2026-03-06T19:22:47.197003383Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3743,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-11373224415308:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":636.118838,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Harun (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:47.203073649Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3754,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966818687775_28?ts=1772537342000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":392.06719,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yessir","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.210868109Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A09BB7A6EB19E0EBECE","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T11:29:02Z","event_id":"$cIKDs569e6hosErVhP8G8CqddB-CxNm-YOpmA8R3nos","part_id":"","time":"2026-03-06T19:22:47.210983558Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1682","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.233610757Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1682","time":"2026-03-06T19:22:47.233702739Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3769,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177803660156957:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-177803660156957%3Amatrix.theocloud.dev","duration":139.100463,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915751234074 (WA)"},"time":"2026-03-06T19:22:47.275802783Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:47.276718345Z","message":""} +{"level":"debug","transaction_id":"1683","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.302298821Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1683","time":"2026-03-06T19:22:47.302673036Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3756,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966884237829_358?ts=1772554112000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":433.826893,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Schau dir dieses köstliche Rezept an, das ich auf Cookidoo® gefunden habe: Knuspriger koreanischer Tofu https://cookidoo.de/recipes/recipe/de-DE/r447427","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"Knuspriger koreanischer Tofu","og:type":"video.other","og:description":"Eine ganze Welt voller Thermomix® Rezepte – Cookidoo® bringt Köstlichkeiten aus aller Welt zu dir nach Hause.\nEine riesige Auswahl an Rezepten und Ideen – hier findest du garantiert bei jedem Besuch kulinarische Inspirationen.","matched_url":"https://cookidoo.de/recipes/recipe/de-DE/r447427"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.318247289Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:4AE4E86F29BD45792C3D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T16:08:32Z","event_id":"$IyCfvwpg-zbIHA-r0Lm94OnihHq0-12rHq-MCB6ssdw","part_id":"","time":"2026-03-06T19:22:47.318406948Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3757,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966885509236_359?ts=1772744034000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":433.617575,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gutee Nacht Maus ❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.319254134Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF6477BAA9F42C9C47A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:53:54Z","event_id":"$lRmGGmjy2SeIl0aBjErqgqjCVF-lEvFkPgqIr27CaoI","part_id":"","time":"2026-03-06T19:22:47.31942001Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3759,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966923486774_360?ts=1772479348000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":436.026084,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ganze Serie durchgucken","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.359641508Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A040BEA3284E21F193C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:22:28Z","event_id":"$3OlgAgFCL6nzsfSGimfymBrBjixkcGTtZWiMM01Pw9k","part_id":"","time":"2026-03-06T19:22:47.359785243Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3761,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824966957534431_361?ts=1770150831000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":419.055685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bin jetzt am PC","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.376718137Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE57AEB89D6B8511E00","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T20:33:51Z","event_id":"$UUQvWJdzwUhftFQLcHCm2r7KmbbHqIDQjm3jkIx1FtQ","part_id":"","time":"2026-03-06T19:22:47.37684497Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1684","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.387566028Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1684","time":"2026-03-06T19:22:47.387680011Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3762,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967002527759_362?ts=1770413774000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":419.586346,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.422243173Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A6C7F45E2CDEA04AE9A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T21:36:14Z","event_id":"$OUrfPS8jUM9urkgheGDUaPlPKYM9zwexpjzCq-ejRx0","part_id":"","time":"2026-03-06T19:22:47.422432585Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1685","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.451874078Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1685","time":"2026-03-06T19:22:47.451968994Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:47.457677337Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3767,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967098428512_28?ts=1771227931000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":400.126422,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":82142},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"80E670HJPo091U+jPvbNtio6Znn+WQXFbR50yyA8LR8=","length":82142,"type":"WhatsApp Image Keys","sha256":"vgBnqmPU5/5J2rDZyUe3zLOMzwrFu7e4IrNuj+VrOiU=","enc_sha256":"CYUEbKIM2Oxb3nkw90bhQrhUmKWmTiadCtWUZEkeA3U=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:47.498768022Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA2F4552846D5B5C4E4","sender_id":{"user_id":"491731828379"},"message_ts":"2026-02-16T07:45:31Z","event_id":"$6sNTbKe-27rMgcc44ru2IIL1uAMF5mCPvakt1uLRW4Y","part_id":"","time":"2026-03-06T19:22:47.498923421Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:47.538660912Z","message":""} +{"level":"debug","transaction_id":"1686","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.550219798Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1686","time":"2026-03-06T19:22:47.550359831Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3770,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967168729582_363?ts=1771832923000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":421.931647,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"die hat ihre eigenen zeiten","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.590794278Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A60D7A2B90565256866","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:48:43Z","event_id":"$H-ZTYKph-d967LTJF2Bb3PkXzwaPqUhzj213YWlN0Vw","part_id":"","time":"2026-03-06T19:22:47.590918737Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967197723875_32?ts=1770474514000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":396.474931,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Brauche ne pause haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.594320542Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC0E45D9AD9121EFDA5A2AAE977F0C84","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-07T14:28:34Z","event_id":"$SDcIEqOgHVlQ_op3VJRI7hbrOYlwBL5CTlify-fqHdM","part_id":"","time":"2026-03-06T19:22:47.594454359Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3764,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127753970032737:matrix.theocloud.dev?user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":538.686935,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sYSbpNQTvisKpJOIimOumfcj","com.beeper.exclude_from_timeline":true,"displayname":"Josh (WA)","membership":"join"},"time":"2026-03-06T19:22:47.601925939Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3763,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-239363409617131:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":560.163902,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XyldaycAVTHtGdCrZPqAFuuq","com.beeper.exclude_from_timeline":true,"displayname":"Artur (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:47.608935373Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3773,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967211832909_364?ts=1772537364000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":397.847889,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"die meinten in der bahn sie wollen es nochmal bereden nachher","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.609806375Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2A952EDCCE6D995546","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:29:24Z","event_id":"$Rs9BuW8zOZoVgv3rooEmUerD7XFPvwf76bjPXHAJiRs","part_id":"","time":"2026-03-06T19:22:47.609918821Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1687","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.65242374Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1687","time":"2026-03-06T19:22:47.652570129Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3774,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967319137358_365?ts=1772554120000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":391.995671,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wollen wir das machen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.711261748Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC5D5E12C037A72EE23","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T16:08:40Z","event_id":"$B2VPN5e4-TKTWAfF25EiQkKMVSavUB71Yfcy5vjjwJo","part_id":"","time":"2026-03-06T19:22:47.71142937Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3779,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-177803660156957%3Amatrix.theocloud.dev","duration":241.17876,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<105283 bytes>","time":"2026-03-06T19:22:47.712035181Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3775,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967320143575_366?ts=1772744043000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":397.374499,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Und viel Energy morgen ❤️❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.717655593Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A292CDE338C0D8B6FBB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:54:03Z","event_id":"$h1hl_0AzVftcLpb93iEE9vfDJhfcjNsXdKW-L1rghQo","part_id":"","time":"2026-03-06T19:22:47.717778306Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1688","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.722461645Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1688","time":"2026-03-06T19:22:47.72294621Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3788,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177803660156957:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-177803660156957%3Amatrix.theocloud.dev","duration":36.186574,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:47.750359625Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3776,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967360727554_367?ts=1772479353000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":396.904041,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Eigenes Buch schreiben","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.75776269Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A1CB0F0E6551F850D88","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:22:33Z","event_id":"$nZKFHoToTbYziev2Jj8Bhc2-r6b3Lh3uK8SLslK6QCY","part_id":"","time":"2026-03-06T19:22:47.757883447Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3790,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LgGHEriuKzTdbiwmIeibKsuW?user_id=%40whatsapp_lid-177803660156957%3Amatrix.theocloud.dev","duration":26.489822,"status_code":200,"response_length":105283,"response_mime":"image/jpeg","time":"2026-03-06T19:22:47.776957912Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3777,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967377768005_368?ts=1770150841000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":407.935409,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":10322},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"YkpB92gk68XQfuPea4j0JcAoBYeBeYDR8iV+7MmHgf8=","length":10322,"type":"WhatsApp Image Keys","sha256":"Hibpa+ayH2z7YohXNFQNtg6LJXZNhV9VRMuwO2s49Ys=","enc_sha256":"o+GLJ+W0ysUZGUFTRHDOwNjnvBQVs3nkIJl4fpqE1R0=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:47.785939061Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A48020C80A8DB626BD0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T20:34:01Z","event_id":"$vdZmG00aAIe_Wb3AlFaTGCzvFh96P77xWlxrNGEFWI0","part_id":"","time":"2026-03-06T19:22:47.786093552Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3772,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-11373224415308:matrix.theocloud.dev?user_id=%40whatsapp_lid-11373224415308%3Amatrix.theocloud.dev","duration":584.610001,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Harun (WA)","membership":"join"},"time":"2026-03-06T19:22:47.788320261Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3781,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-170402944921672%3Amatrix.theocloud.dev","duration":248.373903,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40525 bytes>","time":"2026-03-06T19:22:47.797906454Z","message":"Request completed"} +{"level":"debug","transaction_id":"1689","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.805096639Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1689","time":"2026-03-06T19:22:47.805221377Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3795,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-170402944921672:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-170402944921672%3Amatrix.theocloud.dev","duration":33.436957,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:47.831708405Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3792,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177803660156957:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-177803660156957%3Amatrix.theocloud.dev","duration":60.063948,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LgGHEriuKzTdbiwmIeibKsuW"},"time":"2026-03-06T19:22:47.837377358Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:47.838433372Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3778,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967423374407_369?ts=1770413776000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":415.076495,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"perfekt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.838575082Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5B3D6642CDE593C962","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T21:36:16Z","event_id":"$FIAMWsrQqjeqhzQkO5jApw5vk-4A4ipSr1i8Q6OO9ak","part_id":"","time":"2026-03-06T19:22:47.838697725Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3796,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/OPtpwVMKLbqVkJSrWYiBPROw?user_id=%40whatsapp_lid-170402944921672%3Amatrix.theocloud.dev","duration":24.653322,"status_code":200,"response_length":40525,"response_mime":"image/jpeg","time":"2026-03-06T19:22:47.85647955Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3797,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-232878009012475%3Amatrix.theocloud.dev","duration":28.236715,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-232878009012475","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:47.866968732Z","message":"Request completed"} +{"level":"debug","transaction_id":"1690","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.893838007Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1690","time":"2026-03-06T19:22:47.894163681Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3800,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-232878009012475:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-232878009012475%3Amatrix.theocloud.dev","duration":31.799227,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:47.899135469Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3799,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-170402944921672:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-170402944921672%3Amatrix.theocloud.dev","duration":65.200773,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OPtpwVMKLbqVkJSrWYiBPROw"},"time":"2026-03-06T19:22:47.92191199Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3802,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915161525298%3Amatrix.theocloud.dev","duration":26.768213,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915161525298","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:47.949400276Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3780,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967499822569_29?ts=1771309506000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":463.773555,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"7:35 fanmeet?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:47.96375711Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3ACE24131671A51F9FAB","sender_id":{"user_id":"491731828379"},"message_ts":"2026-02-17T06:25:06Z","event_id":"$YoqBPyJiHKNDh31bDrN6jEKHZrr3psZCMy8YIwCPd-0","part_id":"","time":"2026-03-06T19:22:47.963929201Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1691","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:47.971708995Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1691","time":"2026-03-06T19:22:47.971820952Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3803,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915161525298:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915161525298%3Amatrix.theocloud.dev","duration":36.449112,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:47.986245602Z","message":"Request completed"} +{"level":"debug","transaction_id":"1692","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.037699683Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1692","time":"2026-03-06T19:22:48.037809754Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3783,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967595054024_371?ts=1770474529000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":471.732702,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Omg bin noch mit Ana da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.066910278Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AAB8522C1DB67A5FDCF","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-07T14:28:49Z","event_id":"$2YBoP6DkAh3EKlG0j4JJO_9ZIU9ix6xv3mpvVSJFFBc","part_id":"","time":"2026-03-06T19:22:48.067052756Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3801,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-232878009012475:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-232878009012475%3Amatrix.theocloud.dev","duration":167.998304,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917661047280 (WA)"},"time":"2026-03-06T19:22:48.067374379Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:48.069145717Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3786,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967610545585_372?ts=1772537368000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":463.090288,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ich les es einfach nicht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.073739519Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4CF407327B650E51AA","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:29:28Z","event_id":"$9-TzCeUG5fay6GgdEA7xN9EkKmC3DkJZuCeLL3HjsRk","part_id":"","time":"2026-03-06T19:22:48.073848612Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3782,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967591659134_370?ts=1771832961000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":483.337265,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bzw ist die hwr ja eine hochschule und keine wirkliche uni","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.075099835Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC7082B170EF79D6925","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:49:21Z","event_id":"$hk52QpZJknMWvqUPIsmVhIkPwgbqgv3fZQtcwKTo6I0","part_id":"","time":"2026-03-06T19:22:48.075233444Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1693","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:48.105296602Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1693","time":"2026-03-06T19:22:48.105413658Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3805,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915161525298:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915161525298%3Amatrix.theocloud.dev","duration":138.301118,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Marco (WA)"},"time":"2026-03-06T19:22:48.124762952Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:48.125611605Z","message":""} +{"level":"debug","transaction_id":"1694","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.153905032Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1694","time":"2026-03-06T19:22:48.154007561Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3787,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967712207761_373?ts=1772554184000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":453.437955,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Da bräuchten wir nur:\n- Tofu Natur 400g\n- ⁠Ingwer","format":"org.matrix.custom.html","formatted_body":"Da bräuchten wir nur:\u003cbr\u003e\u003cul\u003e\u003cli\u003eTofu Natur 400g\u003c/li\u003e\u003cli\u003e⁠Ingwer\u003c/li\u003e\u003c/ul\u003e","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.165844138Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A90A42061081B56CE74","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T16:09:44Z","event_id":"$9sIW4Mg-LvnqyZga3Ten4KqtNfhf3eikvbAXmEhkgP0","part_id":"","time":"2026-03-06T19:22:48.165969575Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3789,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967718659225_35?ts=1772744080000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":452.50654,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dankee hab gar keine moti so früh aufzustehen 🥲","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.171304751Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A711D53EEE8F1A99B97","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T20:54:40Z","event_id":"$-w2XXqptsRg7_t2UBK3dEtoTJut-3cIkFIIKq4Vb2d0","part_id":"","time":"2026-03-06T19:22:48.171432842Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3791,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967758784341_6?ts=1772479418000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":447.896046,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kurzer pitch: also um 12 wird es in der East Side so VIEL leerer sein","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.206789062Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A2F88C50996093ACCA0","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:23:38Z","event_id":"$U6gKWNzKHBpZjIjcb0ri0FEcPEJ1ildri5ft_Ce_BKw","part_id":"","time":"2026-03-06T19:22:48.206909261Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3785,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-239363409617131:matrix.theocloud.dev?user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":614.51357,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XyldaycAVTHtGdCrZPqAFuuq","com.beeper.exclude_from_timeline":true,"displayname":"Artur (WA)","membership":"join"},"time":"2026-03-06T19:22:48.224095961Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","source_jid":"4917641523941@s.whatsapp.net","alt_jid":"239363409617131@lid","source_push_name":"Artur","alt_push_name":"A.","time":"2026-03-06T19:22:48.22484013Z","message":"Conflicting push names between JIDs"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:48.224967522Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:48.226416259Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3793,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967786859093_21?ts=1770150846000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":451.996832,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich geh schlafen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.239115597Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A0D99DCF80B9706E4CD","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-03T20:34:06Z","event_id":"$em1P_5-RHtxB8Z6OJy6HYULZMOBPQo7D4rN_oUZZDr0","part_id":"","time":"2026-03-06T19:22:48.239270298Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3784,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-102147257532455:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":640.364476,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qXVJUHNyOxuokCEzkiaQFcJo","com.beeper.exclude_from_timeline":true,"displayname":"FloJ (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:48.243145912Z","message":"Request completed"} +{"level":"debug","transaction_id":"1695","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.252675741Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1695","time":"2026-03-06T19:22:48.252836029Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3812,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917641523941%3Amatrix.theocloud.dev","duration":34.983892,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917641523941","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:48.260220446Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:48.287200141Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3816,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641523941:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641523941%3Amatrix.theocloud.dev","duration":26.97334,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:48.28763868Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3798,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967839426458_374?ts=1770413780000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":450.113466,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber wie ist der Kuchen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.289645875Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACE49CB3C679C81680C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T21:36:20Z","event_id":"$4aH6exhbni1PDNQR7qFEiMo7ePzbZsnWLBX_qKCp4vs","part_id":"","time":"2026-03-06T19:22:48.289759299Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1696","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.316385104Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1696","time":"2026-03-06T19:22:48.316924216Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3813,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-232878009012475%3Amatrix.theocloud.dev","duration":128.928644,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<12749 bytes>","time":"2026-03-06T19:22:48.363149909Z","message":"Request completed"} +{"level":"debug","transaction_id":"1697","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.376957085Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1697","time":"2026-03-06T19:22:48.377077492Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3804,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824967964846718_375?ts=1771912931000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":438.800775,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"7:30 uhr hwr meet am breitenbachplatz?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.403801216Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEF06C1E75BE8E74FCE","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-24T06:02:11Z","event_id":"$g7z2gGLrGAZlP0AiXlan7KILqeouW8XCwg-WlZz2h00","part_id":"","time":"2026-03-06T19:22:48.403957104Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3820,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-232878009012475:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-232878009012475%3Amatrix.theocloud.dev","duration":50.279824,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:48.413830836Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3822,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/NzntjkmaJiHVVWeTwBFxukpG?user_id=%40whatsapp_lid-232878009012475%3Amatrix.theocloud.dev","duration":41.589148,"status_code":200,"response_length":12749,"response_mime":"image/jpeg","time":"2026-03-06T19:22:48.455585022Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3817,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641523941:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641523941%3Amatrix.theocloud.dev","duration":193.725309,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Artur (WA)"},"time":"2026-03-06T19:22:48.481617657Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:48.482262859Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3794,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-4462622052463:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":694.919061,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fzFzEHxxDDIHweOqMltfFiNC","com.beeper.exclude_from_timeline":true,"displayname":"+4915756437140 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:48.48403301Z","message":"Request completed"} +{"level":"debug","transaction_id":"1698","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.497687371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1698","time":"2026-03-06T19:22:48.497764546Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3823,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-232878009012475:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-232878009012475%3Amatrix.theocloud.dev","duration":51.257685,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NzntjkmaJiHVVWeTwBFxukpG"},"time":"2026-03-06T19:22:48.507165237Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:48.508309462Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3806,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968067947295_376?ts=1770474533000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":475.308274,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"wie cool","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.54341439Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A93F85FD1ED62A1F70A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-07T14:28:53Z","event_id":"$QqgktPrKCCo_FEb-aFbiXJZutL7SV3I5NQIjnULawdU","part_id":"","time":"2026-03-06T19:22:48.543598983Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3825,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-19460647870473%3Amatrix.theocloud.dev","duration":37.554504,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-19460647870473","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:48.546213806Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3819,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915161525298%3Amatrix.theocloud.dev","duration":265.223755,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40525 bytes>","time":"2026-03-06T19:22:48.560897292Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3807,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968074637620_29?ts=1772537391000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":490.256811,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hahaha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.565020845Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AB3F1811D87B85D25F7","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T11:29:51Z","event_id":"$x44ZCM9f4V-iL1t0u93qVorKlGnRN1le62Qhg3_KlnI","part_id":"","time":"2026-03-06T19:22:48.565185673Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3827,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-19460647870473:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-19460647870473%3Amatrix.theocloud.dev","duration":28.749985,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:48.575374394Z","message":"Request completed"} +{"level":"debug","transaction_id":"1699","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.591047404Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1699","time":"2026-03-06T19:22:48.591441244Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3828,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915161525298:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915161525298%3Amatrix.theocloud.dev","duration":32.484239,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:48.593773136Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3808,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968075927256_33?ts=1771833076000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":526.672538,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"müll","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.602750164Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AAA2A5C36F7AB711AE1","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:51:16Z","event_id":"$4jQM1XGmF6fmD7o6xBWiq0Ulb0MsZMi1jjz-jhoqMB8","part_id":"","time":"2026-03-06T19:22:48.602913595Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3831,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/QHYFUulabTSsfaXZUTLOcwEZ?user_id=%40whatsapp_4915161525298%3Amatrix.theocloud.dev","duration":33.489897,"status_code":200,"response_length":40525,"response_mime":"image/jpeg","time":"2026-03-06T19:22:48.627380088Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:48.65915061Z","message":""} +{"level":"debug","transaction_id":"1700","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.67946666Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1700","time":"2026-03-06T19:22:48.679590979Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3833,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915161525298:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915161525298%3Amatrix.theocloud.dev","duration":56.775149,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QHYFUulabTSsfaXZUTLOcwEZ"},"time":"2026-03-06T19:22:48.684507312Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"170402944921672@lid","alternate_jid":"4915161525298@s.whatsapp.net","time":"2026-03-06T19:22:48.685009477Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"187849085329414@lid","alternate_jid":"491783743461@s.whatsapp.net","time":"2026-03-06T19:22:48.685126323Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3809,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968166704524_377?ts=1772554192000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":545.3899,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles andere hätten wir da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.712224541Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACB4703C89C1FBFF3D1","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T16:09:52Z","event_id":"$t6jUrI8hzDc0sD78tTjqw21FFI5BrzM_vFuoMVTPUZ4","part_id":"","time":"2026-03-06T19:22:48.712399495Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3810,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968171992627_378?ts=1772744093000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":543.742532,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Das glaub ich absolut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.715853262Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD152175A8CFA9D0F16","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:54:53Z","event_id":"$qKKrHCZnXa-A1OpNCqOnzIi7KS3MHWkbRK1QHPsVgsQ","part_id":"","time":"2026-03-06T19:22:48.715979258Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3835,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917645835716%3Amatrix.theocloud.dev","duration":35.979353,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917645835716","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:48.721758491Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3811,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968207639461_13?ts=1772479542000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":535.004434,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kurzer pitch: ich würde voll gerne Chrissi dabei haben und keinen Rucksack haben und meinen Papa sehen 😔","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.742766049Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A9F44192EC0C6F5FC9C","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:25:42Z","event_id":"$ENTuYsLGDgRuAipM7WErnI-9YIR0S06CSgDJgFeD_7E","part_id":"","time":"2026-03-06T19:22:48.742893161Z","message":"Sent message part to Matrix"} +{"level":"warn","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"120363192861790277@g.us:195790463058158@lid:3A63D15C08696EF17136","PartID":null},"time":"2026-03-06T19:22:48.744021811Z","message":"Reply target message not found in database"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3838,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917645835716:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917645835716%3Amatrix.theocloud.dev","duration":27.661983,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:48.749739514Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3814,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968240085636_379?ts=1770150851000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":536.189027,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo mach das","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.776416932Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A857E633BE9271029C0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T20:34:11Z","event_id":"$uA9k3TeavXIDuDZuCwdIHP8FyPSIsgY14NYok-PwLSU","part_id":"","time":"2026-03-06T19:22:48.776550819Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3830,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-19460647870473:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-19460647870473%3Amatrix.theocloud.dev","duration":201.828263,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yating (WA)"},"time":"2026-03-06T19:22:48.777389764Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:48.780035876Z","message":""} +{"level":"debug","transaction_id":"1701","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.781198818Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1701","time":"2026-03-06T19:22:48.781288426Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3818,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968290459048_21?ts=1770414593000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":533.043404,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1536,"mimetype":"image/jpeg","size":526254,"w":2048},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/rKOChUwBIrebowrRWDbSKepE"},"time":"2026-03-06T19:22:48.82374236Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A83EB38B113FA54FC42","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T21:49:53Z","event_id":"$cp_PGkDC1XNwPAcOVmRfuBQVuRXtK-DQQ4YwbZhdRC4","part_id":"","time":"2026-03-06T19:22:48.82390628Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1702","content":{"pdu":3,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:48.855812924Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1702","time":"2026-03-06T19:22:48.855986482Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3840,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917645835716:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917645835716%3Amatrix.theocloud.dev","duration":150.47713,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ben (WA)"},"time":"2026-03-06T19:22:48.900401516Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:48.901233057Z","message":""} +{"level":"debug","transaction_id":"1703","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.907265189Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1703","time":"2026-03-06T19:22:48.907411298Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3821,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968404871059_30?ts=1771914720000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":517.391207,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Basically. Da in 3minuten","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:48.922469069Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3ABA3F8A5AD7C224EA12","sender_id":{"user_id":"491731828379"},"message_ts":"2026-02-24T06:32:00Z","event_id":"$KjGbMLIEDqst_t9DOKInAKtw5RxVLsJxwhV4csELQDQ","part_id":"","time":"2026-03-06T19:22:48.92260589Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3815,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-102147257532455:matrix.theocloud.dev?user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":687.874008,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qXVJUHNyOxuokCEzkiaQFcJo","com.beeper.exclude_from_timeline":true,"displayname":"FloJ (WA)","membership":"join"},"time":"2026-03-06T19:22:48.931670989Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3834,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917641523941%3Amatrix.theocloud.dev","duration":270.872382,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45393 bytes>","time":"2026-03-06T19:22:48.93693339Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3845,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641523941:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917641523941%3Amatrix.theocloud.dev","duration":24.018665,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:48.961351901Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3846,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/OzeuxoxnexzqJhtVoBjxLxyz?user_id=%40whatsapp_4917641523941%3Amatrix.theocloud.dev","duration":10.983595,"status_code":200,"response_length":45393,"response_mime":"image/jpeg","time":"2026-03-06T19:22:48.972531613Z","message":"Request completed"} +{"level":"debug","transaction_id":"1704","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:48.975501583Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1704","time":"2026-03-06T19:22:48.975609001Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3826,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968544586971_33?ts=1770474884000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":479.186193,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bin so in ca. 30 min da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.023921299Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC8BD42C1DB1356AC968ED33A5CE5B3","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-07T14:34:44Z","event_id":"$lSXU1H0lys1FG30_eXwi0dlyir7ZfWbDvp5vD5Tm7Q8","part_id":"","time":"2026-03-06T19:22:49.024059727Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3847,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641523941:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917641523941%3Amatrix.theocloud.dev","duration":60.313634,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OzeuxoxnexzqJhtVoBjxLxyz"},"time":"2026-03-06T19:22:49.033126502Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3829,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968566020986_30?ts=1772537429000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":473.947119,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja gut ich hab jetzt abgesagt damit wir zsm zocken also brauch ich dich meister","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.040126018Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A78262546C826157420","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T11:30:29Z","event_id":"$oTnLEILYUwapaEyijWAXxhOMm1N9T-ie-ilRWRRGczY","part_id":"","time":"2026-03-06T19:22:49.040281138Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1705","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.073031336Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1705","time":"2026-03-06T19:22:49.073372026Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3832,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968603933850_34?ts=1771833120000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":493.503635,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"dafür musste die ganzen studis jetzt nicht ertragen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.097561595Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A7ED917A4F6C494021A","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:52:00Z","event_id":"$TG_njDEmI7fW2Tt5fUZEyWpSVC4GtTnJAYbqEevWWnE","part_id":"","time":"2026-03-06T19:22:49.097674041Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1706","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.152763688Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1706","time":"2026-03-06T19:22:49.152885772Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3824,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-4462622052463:matrix.theocloud.dev?user_id=%40whatsapp_lid-4462622052463%3Amatrix.theocloud.dev","duration":671.166495,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fzFzEHxxDDIHweOqMltfFiNC","com.beeper.exclude_from_timeline":true,"displayname":"+4915756437140 (WA)","membership":"join"},"time":"2026-03-06T19:22:49.155889616Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:49.156784574Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3836,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968713167620_23?ts=1772554400000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":459.062767,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hört sich gut an. Das machen wir.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.172377824Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A1A68EFA82F24CEB97C","sender_id":{"user_id":"491628947581"},"message_ts":"2026-03-03T16:13:20Z","event_id":"$lEQ9t-Kso-itCLYFDsK_lXREjC2gbCFolnyDwSYRQB4","part_id":"","time":"2026-03-06T19:22:49.172514226Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3837,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968716622574_380?ts=1772744108000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":456.605509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber dann am Wochenende wieder :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.173348351Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADD031F622BF5DBF01C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-05T20:55:08Z","event_id":"$13zsXnLvU2R71v56QcS3R3m48OV3P4FWjfLdhSU4VrA","part_id":"","time":"2026-03-06T19:22:49.173464569Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3852,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917631251200%3Amatrix.theocloud.dev","duration":34.22324,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917631251200","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:49.191311557Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3839,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968744308025_14?ts=1772479562000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":468.093434,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mit Alex und mir und (hahaha) Josh quatschen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.212585982Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AFCCB7CFC7B63AEFDD8","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:26:02Z","event_id":"$UIwKEIcVFtO070b7Xa38abbNKfunKfa5OFa5KS_FCuk","part_id":"","time":"2026-03-06T19:22:49.212739077Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3855,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631251200:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631251200%3Amatrix.theocloud.dev","duration":28.42515,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:49.220168751Z","message":"Request completed"} +{"level":"debug","transaction_id":"1707","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.232697535Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1707","time":"2026-03-06T19:22:49.232985494Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3841,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968777566814_22?ts=1770150851000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":463.250157,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":40730},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"hk/LBYKWRwKEmvPTTPGPDPZWGV03rIt/nn/suDiciOg=","length":40730,"type":"WhatsApp Image Keys","sha256":"RFcVahxES7LXtsMHyYe1qZ3EN9EiFfey9A/XbBvfFyI=","enc_sha256":"IHWCYVMjmHMwBMCnHNxTZHxGTJzhHYsOpuf5LDNnfi4=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:49.241055691Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AE0AC3CA67BA8510CD5","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-03T20:34:11Z","event_id":"$hG4jhqNSppvWcGJIshs7yGo3py0-ltweoOkQf9sunak","part_id":"","time":"2026-03-06T19:22:49.241267662Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:49.256249724Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3842,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968824827010_22?ts=1770414597000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":473.383423,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ist crazy nice","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.298372047Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AAE3B5DC17C661017F9","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T21:49:57Z","event_id":"$1cwBr3gLBB3WPIIc0hPIqfYNcgK6SEfa6rXdbqsXxgY","part_id":"","time":"2026-03-06T19:22:49.298500697Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1708","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.312867448Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1708","time":"2026-03-06T19:22:49.312979754Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:49.353712498Z","message":""} +{"level":"debug","transaction_id":"1709","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.405553155Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1709","time":"2026-03-06T19:22:49.405690185Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3857,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631251200:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631251200%3Amatrix.theocloud.dev","duration":195.961797,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917631251200 (WA)"},"time":"2026-03-06T19:22:49.416316607Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:49.417166517Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3843,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824968923426396_31?ts=1772444311000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":502.47829,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Finden wir diesbezüglich Einigung?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.426023417Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AF977DB2D849CD5C884","sender_id":{"user_id":"491731828379"},"message_ts":"2026-03-02T09:38:31Z","event_id":"$WDArrlSmYulMN2N2a7rULe3dif4laG0SG1VCVtTXrI8","part_id":"","time":"2026-03-06T19:22:49.426136072Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1710","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.503759679Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1710","time":"2026-03-06T19:22:49.503864093Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3848,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969024903840_34?ts=1770474888000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":528.739308,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also gegen 16 Uhr","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.553779131Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC0AD201D143249E10A16D27F9E1D6D7","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-02-07T14:34:48Z","event_id":"$GtO_6CjF6EwayWSgw4eytHtze57Rj3Xg5FfLWYu7kqY","part_id":"","time":"2026-03-06T19:22:49.553920212Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3859,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917645835716%3Amatrix.theocloud.dev","duration":295.410603,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<56766 bytes>","time":"2026-03-06T19:22:49.559874888Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3850,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969041147740_381?ts=1772538971000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":524.0911,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"Voice message.ogg","info":{"duration":88000,"mimetype":"audio/ogg; codecs=opus","size":189914},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":88000,"waveform":[48,87,60,84,50,97,69,35,76,61,86,66,68,77,79,50,100,64,59,61,69,52,62,88,89,74,65,61,50,43,88,50,66,89,18,76,44,67,66,46,59,84,90,52,17,68,51,73,54,37,84,94,71,63,94,40,70,44,80,82,91,89,94,81]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/NOHmVixECNyNguTGjmXGJgxn"},"time":"2026-03-06T19:22:49.565600343Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3CA507E3B1EED3CE82","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T11:56:11Z","event_id":"$HdHtUxz1uMuymWRkM9iUnVplS4c0KqrdR2LyauPdQqU","part_id":"","time":"2026-03-06T19:22:49.565775857Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:49.565934678Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3864,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917645835716:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917645835716%3Amatrix.theocloud.dev","duration":39.028733,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:49.599241658Z","message":"Request completed"} +{"level":"debug","transaction_id":"1711","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:49.601096597Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1711","time":"2026-03-06T19:22:49.601190186Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3866,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631251200:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917631251200%3Amatrix.theocloud.dev","duration":46.573647,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:49.615051349Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3867,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/AiVoEkllfeYOBsTGFPwckmih?user_id=%40whatsapp_4917645835716%3Amatrix.theocloud.dev","duration":28.08418,"status_code":200,"response_length":56766,"response_mime":"image/jpeg","time":"2026-03-06T19:22:49.627471598Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3851,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969098305554_382?ts=1771833335000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":564.13443,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.662587771Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABFA52E723801B4913D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:55:35Z","event_id":"$Fp7AgbGFUuIcrGsIi5C98B-iNnQonbJvUPFQEkC0qGU","part_id":"","time":"2026-03-06T19:22:49.66271642Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3861,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-19460647870473%3Amatrix.theocloud.dev","duration":301.069219,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<60715 bytes>","time":"2026-03-06T19:22:49.666916172Z","message":"Request completed"} +{"level":"debug","transaction_id":"1712","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.693314082Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1712","time":"2026-03-06T19:22:49.693534783Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3869,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917645835716:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917645835716%3Amatrix.theocloud.dev","duration":71.714048,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AiVoEkllfeYOBsTGFPwckmih"},"time":"2026-03-06T19:22:49.699523054Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3871,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-19460647870473:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-19460647870473%3Amatrix.theocloud.dev","duration":34.084813,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:49.70129963Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3844,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-116685805768767:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":775.018853,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QNDzRJhZgftWogJzkIiWZwhq","com.beeper.exclude_from_timeline":true,"displayname":"Katie Bird (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:49.70754485Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3853,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969173417914_383?ts=1772554438000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":534.977753,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Supii","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.708516216Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1835342B9AC83C2AD2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T16:13:58Z","event_id":"$8VLjvy8GSVP0T6RW7JZ_QERIqfYK1YlbQY6YHUh__cQ","part_id":"","time":"2026-03-06T19:22:49.708645074Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3854,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969174261538_36?ts=1772744121000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":543.624428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja 😴","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.717989822Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A82EE1DF088F17E6CB1","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-05T20:55:21Z","event_id":"$F5qp864IuYH9kvS-jQLkapbA_2hDf2fjKB84iZagmrs","part_id":"","time":"2026-03-06T19:22:49.718103525Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3872,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-40321186566338%3Amatrix.theocloud.dev","duration":26.867319,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-40321186566338","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:49.727319065Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3873,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/AQSGZhmBhAXoMQHinFfOGWiE?user_id=%40whatsapp_lid-19460647870473%3Amatrix.theocloud.dev","duration":28.887994,"status_code":200,"response_length":60715,"response_mime":"image/jpeg","time":"2026-03-06T19:22:49.730406719Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3856,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969214289574_7?ts=1772479666000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":540.086152,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber chrissi meinte nur das er maybe vorher nt kann","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$ENTuYsLGDgRuAipM7WErnI-9YIR0S06CSgDJgFeD_7E"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.754544325Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A69B21E29344030A41E","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:27:46Z","event_id":"$ZZ8X1XCWd_wzzmXDA-H35UV4XyfNKOSp0WOPuZQJPgU","part_id":"","time":"2026-03-06T19:22:49.75468841Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3877,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40321186566338:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-40321186566338%3Amatrix.theocloud.dev","duration":28.008401,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:49.755645178Z","message":"Request completed"} +{"level":"debug","transaction_id":"1713","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.772585754Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1713","time":"2026-03-06T19:22:49.772883841Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3858,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969242182106_384?ts=1770150858000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":533.665908,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Meine Mama hatte Geburtstag","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.77595606Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4F6F0A0818FCE812A7","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T20:34:18Z","event_id":"$T0a4Zjpg_Yp6lk-qPE6GIbhFPhqIuakbt1nBjbBasSw","part_id":"","time":"2026-03-06T19:22:49.776077166Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3878,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-19460647870473:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-19460647870473%3Amatrix.theocloud.dev","duration":47.664582,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AQSGZhmBhAXoMQHinFfOGWiE"},"time":"2026-03-06T19:22:49.778279431Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:49.779233405Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3882,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-239839731523825%3Amatrix.theocloud.dev","duration":18.891409,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-239839731523825","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:49.798406279Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3860,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969299372747_385?ts=1770414607000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":516.42047,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geil","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.815921447Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB7FFCCF4CE2092D69E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T21:50:07Z","event_id":"$6ojtBVXxEyw9psNIaCiBUJfsGGUpmCIKm2boZwhvxY8","part_id":"","time":"2026-03-06T19:22:49.816076147Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3883,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-239839731523825:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-239839731523825%3Amatrix.theocloud.dev","duration":22.857678,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:49.821656609Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3849,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-168212561981526:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":789.203456,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Dya (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:49.823451414Z","message":"Request completed"} +{"level":"debug","transaction_id":"1714","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.837123865Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1714","time":"2026-03-06T19:22:49.837242038Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1715","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.871670893Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1715","time":"2026-03-06T19:22:49.87195117Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3880,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40321186566338:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-40321186566338%3Amatrix.theocloud.dev","duration":121.05177,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ben (WA)"},"time":"2026-03-06T19:22:49.87689956Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:49.87778467Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3862,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969426915092_32?ts=1772444311000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":468.942925,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"GuMo 🤗\nIch würde ansteuern jetzt mich zum Breitenbachplatz zu begeben.","format":"org.matrix.custom.html","formatted_body":"GuMo 🤗\u003cbr\u003eIch würde ansteuern jetzt mich zum Breitenbachplatz zu begeben.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.895983035Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A9C2FC75173209875F5","sender_id":{"user_id":"491731828379"},"message_ts":"2026-03-02T09:38:31Z","event_id":"$TSLoDHZWpG7uKZkTKyE7-y0Iut4MpKfX5Xb-XLjJuSE","part_id":"","time":"2026-03-06T19:22:49.896090662Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3885,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-239839731523825:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-239839731523825%3Amatrix.theocloud.dev","duration":136.843441,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+573123344836 (WA)"},"time":"2026-03-06T19:22:49.958686111Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:49.959375803Z","message":""} +{"level":"debug","transaction_id":"1716","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:49.961854642Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1716","time":"2026-03-06T19:22:49.961943272Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3863,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969554808954_386?ts=1770474902000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":437.527203,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles klar","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:49.992503288Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A725CBC27A1E1BA34C0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-07T14:35:02Z","event_id":"$iLmBRzHWnm0rBuh-kgmySHwo0KuSIGcIPeh-Mj0ejXY","part_id":"","time":"2026-03-06T19:22:49.992624884Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3865,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969566643855_387?ts=1772569389000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":435.907492,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Heute doch kein zocken mehr?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.002683908Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE99040C57F10AD1EB3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T20:23:09Z","event_id":"$d9CoH7OmbYIYarQxeiAdkO1ggeoJcsuUMU8-ZwmxHxc","part_id":"","time":"2026-03-06T19:22:50.002801173Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:50.036141048Z","message":""} +{"level":"debug","transaction_id":"1717","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.047663266Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1717","time":"2026-03-06T19:22:50.0477681Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3870,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969663616686_388?ts=1771833371000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":423.352796,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"der vorlesungsraum ist bei uns auch deutlich leerer geworden","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.087105954Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7F013BD18C0B1B0F91","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T07:56:11Z","event_id":"$40XYm7Nk6Sf5xg-WcTF-cQyZlMKwsFokx2nTgL6NrIY","part_id":"","time":"2026-03-06T19:22:50.087199194Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3875,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969709389104_389?ts=1772646290000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":397.110495,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Mama, kannst du mir dieses Rezept schicken von diesem Hähnchen Reis Auflauf mit Sahnesose drin? Ana will das vllt heute machen, aber ich find das gerade nicht.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.106629295Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFA860641A4B7DBE228","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T17:44:50Z","event_id":"$uCIxlR7D3xc8ZW70jR27z7u0tctNwlSnpo_Cj3i9zC0","part_id":"","time":"2026-03-06T19:22:50.106768631Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3876,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969718807185_390?ts=1772793170000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":392.194302,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moin ❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.111127553Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A28ECC093AA3E62E363","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T10:32:50Z","event_id":"$ZWAG8e1W8leMYqkzFOpmDWIyZh9584bXfJPF_EATtNc","part_id":"","time":"2026-03-06T19:22:50.111263535Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1718","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.131506601Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1718","time":"2026-03-06T19:22:50.131578049Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3879,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969755465055_8?ts=1772479681000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":416.55212,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dein dad kann voll gern mitkommen!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.17214359Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3AE0F44F058083E26E9C","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:28:01Z","event_id":"$hk15vfIdBf1fBdgeCwYnidUPNeWR7sxnNNGgjodZURs","part_id":"","time":"2026-03-06T19:22:50.172263439Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3881,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969776829367_391?ts=1770150864000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":423.659194,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"hatte mit ihr noch gegessen zsm","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.200651293Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3B628C30CA2BF12866","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T20:34:24Z","event_id":"$6p71xdT9SpVqyA6MnrOuHj5GhIaL5fHq7HYYRKyKxbo","part_id":"","time":"2026-03-06T19:22:50.200841683Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:50.232642935Z","message":""} +{"level":"debug","transaction_id":"1719","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.237138608Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1719","time":"2026-03-06T19:22:50.237283461Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3896,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-239839731523825:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-239839731523825%3Amatrix.theocloud.dev","duration":30.858173,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:50.263872249Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:50.264620189Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3884,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969816816265_23?ts=1770415039000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":451.169969,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":15270},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"vEJidQcCb7clg3cZkVMxKwp22gB3l96TrdTBzGo3G38=","length":15270,"type":"WhatsApp Image Keys","sha256":"eHAw6lPg29H+otz5prURFHVwTF5MhGbOg8yJ2E0rSlU=","enc_sha256":"TdjNA7czCqFNPYvxbb30s/j1vW9YWVMaZQ7QWCW+9wo=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:50.268232847Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A3BA01BAF7AEA49D820","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-06T21:57:19Z","event_id":"$V0IYNizT9kC7f9wkA-A84b9oB4TsfdmI4DqPI2YOW8M","part_id":"","time":"2026-03-06T19:22:50.268421281Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3868,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38276949905550:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":670.494682,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KEUxPVqyNVnUIADeRCgdyddY","com.beeper.exclude_from_timeline":true,"displayname":"vladislavilcuk8 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:50.286538559Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3897,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-172988750102720%3Amatrix.theocloud.dev","duration":32.529497,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-172988750102720","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:50.297459087Z","message":"Request completed"} +{"level":"debug","transaction_id":"1720","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:50.319485782Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1720","time":"2026-03-06T19:22:50.319869146Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3900,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-172988750102720:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-172988750102720%3Amatrix.theocloud.dev","duration":24.288814,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:50.322137062Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3874,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-116685805768767:matrix.theocloud.dev?user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":615.877448,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QNDzRJhZgftWogJzkIiWZwhq","com.beeper.exclude_from_timeline":true,"displayname":"Katie Bird (WA)","membership":"join"},"time":"2026-03-06T19:22:50.324080422Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3890,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-40321186566338%3Amatrix.theocloud.dev","duration":289.195346,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<56766 bytes>","time":"2026-03-06T19:22:50.333051793Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3903,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40321186566338:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-40321186566338%3Amatrix.theocloud.dev","duration":23.558754,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:50.356906538Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3887,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969896622301_392?ts=1772444421000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":484.048887,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Würd auch so in 2min los","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.380785589Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4EA94C4CFDDF1FED91","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T09:40:21Z","event_id":"$AOcR-IlZteJLo4GgL6UhDsQ29EjX_spvFD-sadhqAgM","part_id":"","time":"2026-03-06T19:22:50.380921432Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3904,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/mbOvYBFlQuBmQbtJmGHmIbid?user_id=%40whatsapp_lid-40321186566338%3Amatrix.theocloud.dev","duration":25.551143,"status_code":200,"response_length":56766,"response_mime":"image/jpeg","time":"2026-03-06T19:22:50.382598902Z","message":"Request completed"} +{"level":"debug","transaction_id":"1721","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.389273233Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1721","time":"2026-03-06T19:22:50.389370034Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3906,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40321186566338:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-40321186566338%3Amatrix.theocloud.dev","duration":46.595648,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mbOvYBFlQuBmQbtJmGHmIbid"},"time":"2026-03-06T19:22:50.429484324Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917645835716@s.whatsapp.net","alternate_jid":"40321186566338@lid","time":"2026-03-06T19:22:50.429957016Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917662348078@s.whatsapp.net","time":"2026-03-06T19:22:50.430293796Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3907,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917662348078%3Amatrix.theocloud.dev","duration":25.860055,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917662348078","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:50.456403187Z","message":"Request completed"} +{"level":"debug","transaction_id":"1722","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.458890757Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1722","time":"2026-03-06T19:22:50.459148335Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-168212561981526:matrix.theocloud.dev?user_id=%40whatsapp_lid-168212561981526%3Amatrix.theocloud.dev","duration":647.4089,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Dya (WA)","membership":"join"},"time":"2026-03-06T19:22:50.471440284Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3901,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-172988750102720:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-172988750102720%3Amatrix.theocloud.dev","duration":165.491807,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Andrey (WA)"},"time":"2026-03-06T19:22:50.48780543Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3908,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662348078:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917662348078%3Amatrix.theocloud.dev","duration":31.348046,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:50.48804457Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:50.488647797Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3888,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824969993186625_35?ts=1772453796000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":512.679511,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Unser FitX schließt 🥲","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.505964893Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC052A13127BF9C2B7739A5E9EDDB6A7","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T12:16:36Z","event_id":"$0bcxhqxAjmlPVNCX9bAJ83rIg7PydbumOE6tZRC6g_I","part_id":"","time":"2026-03-06T19:22:50.506102133Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3889,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970003440787_31?ts=1772569400000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":508.372552,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dochdoch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.511922503Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AB137432DFE527F78A0","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T20:23:20Z","event_id":"$9VnDmBshWAvKgWZTb5l9P-YfjAb7sHsAxzQokm8VL3E","part_id":"","time":"2026-03-06T19:22:50.512026079Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1723","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.540258883Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1723","time":"2026-03-06T19:22:50.540380059Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1724","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.592609877Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1724","time":"2026-03-06T19:22:50.592850414Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3892,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970107669036_24?ts=1772647081000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":500.297885,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja, kann ich machen. Bin gerade bei Rewe.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.608109539Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:3A842225DC9B5811A61E","sender_id":{"user_id":"491628947581"},"message_ts":"2026-03-04T17:58:01Z","event_id":"$zSEXNxqgVUySmXwLibeHnYsRZGoo00v7ER0Q0rI2_To","part_id":"","time":"2026-03-06T19:22:50.608247338Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3893,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970112093889_37?ts=1772793700000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":500.141928,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"(Moin) 😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.612382206Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A1AEB8D575E78920B17","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-06T10:41:40Z","event_id":"$IaomBsu6metlwBV9wbfJYReqwTtpF0FjSy8t_4Bnc8c","part_id":"","time":"2026-03-06T19:22:50.612504709Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3891,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970088188648_35?ts=1771833426000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":527.974186,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"wieso","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$40XYm7Nk6Sf5xg-WcTF-cQyZlMKwsFokx2nTgL6NrIY"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.616394012Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A6DC3DC71D6CC8B5755","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T07:57:06Z","event_id":"$P_epYZiDy2XM_v75y8YhHrq_ZQl8aMfZSi_LApPmpoE","part_id":"","time":"2026-03-06T19:22:50.616673032Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:50.638469108Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3894,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970173075145_393?ts=1772480157000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":477.206376,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sicher dass Josh mitkommt?","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$UIwKEIcVFtO070b7Xa38abbNKfunKfa5OFa5KS_FCuk"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.650423091Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3AF2FD708D9FCAC27034","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:35:57Z","event_id":"$7T5pA9OSEjRbdC1MUYPWA35YT8yVYj3k9c1a1qqLEow","part_id":"","time":"2026-03-06T19:22:50.650576534Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3910,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662348078:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917662348078%3Amatrix.theocloud.dev","duration":169.416729,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Paul (WA)"},"time":"2026-03-06T19:22:50.657625708Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:50.65829759Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3895,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970201763321_23?ts=1770150865000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":473.611318,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ah Schere","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.67550224Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AE810C2CE254586F203","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-03T20:34:25Z","event_id":"$cclSANPVxv9HXBA9eOZ14XVVvNnmTTSfRBKYqdO_pD4","part_id":"","time":"2026-03-06T19:22:50.675609867Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1725","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.691890085Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1725","time":"2026-03-06T19:22:50.691999598Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3898,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970269232918_394?ts=1770415061000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":487.355845,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Des Bedarfs","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.756745139Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A25A19C67A00B1800D0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T21:57:41Z","event_id":"$Z4rdIKu88UIvj5V5_CsHOhPhPEzaH28nujJmdn8FdBQ","part_id":"","time":"2026-03-06T19:22:50.756884894Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1726","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.772983662Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1726","time":"2026-03-06T19:22:50.773144997Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:50.817021408Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3905,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824970382547498_33?ts=1772444452000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":441.287088,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":133376,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/HBAssqFSnWPgeuDOogCPuROa"},"time":"2026-03-06T19:22:50.824049769Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A2A1156A8F545DB8C83","sender_id":{"user_id":"491731828379"},"message_ts":"2026-03-02T09:40:52Z","event_id":"$UKkwWzYG9AH4I_7eV8oKMTOXQj90owlZj7qSirxIpj8","part_id":"","time":"2026-03-06T19:22:50.824206774Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1727","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:50.897636216Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1727","time":"2026-03-06T19:22:50.897743704Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3916,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-172988750102720%3Amatrix.theocloud.dev","duration":266.763914,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41234 bytes>","time":"2026-03-06T19:22:50.913873063Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3899,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38276949905550:matrix.theocloud.dev?user_id=%40whatsapp_lid-38276949905550%3Amatrix.theocloud.dev","duration":648.615563,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KEUxPVqyNVnUIADeRCgdyddY","com.beeper.exclude_from_timeline":true,"displayname":"vladislavilcuk8 (WA)","membership":"join"},"time":"2026-03-06T19:22:50.935835992Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:50.936409676Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3922,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-172988750102720:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-172988750102720%3Amatrix.theocloud.dev","duration":31.951273,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:50.946210982Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3923,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917663325906%3Amatrix.theocloud.dev","duration":43.309432,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917663325906","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:50.979932406Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3911,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970506789380_395?ts=1772453803000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":481.655255,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo hab ich gesehen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:50.988570001Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8AFB648E47B82EF3E9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T12:16:43Z","event_id":"$ZjLD3kVZJiLkXr4hLPiXVLizY7gxvkbHjej9Z53hQxw","part_id":"","time":"2026-03-06T19:22:50.988689781Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3924,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KAEUAtBAxjRWKWwzruAphSmY?user_id=%40whatsapp_lid-172988750102720%3Amatrix.theocloud.dev","duration":45.653686,"status_code":200,"response_length":41234,"response_mime":"image/jpeg","time":"2026-03-06T19:22:50.992054778Z","message":"Request completed"} +{"level":"debug","transaction_id":"1728","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:50.997642225Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1728","time":"2026-03-06T19:22:50.997727292Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3912,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970512741193_32?ts=1772569406000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":496.453631,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Les noch das chapter zuende","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.009359652Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3AA4F7B138DBCBD9FF9B","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T20:23:26Z","event_id":"$gDspHy4yVWtEJndTFEacR0c-mOHpLxabpmaRS8j4yuM","part_id":"","time":"2026-03-06T19:22:51.009548994Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3925,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663325906:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663325906%3Amatrix.theocloud.dev","duration":32.08104,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:51.012413083Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3927,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-172988750102720:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-172988750102720%3Amatrix.theocloud.dev","duration":56.753009,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KAEUAtBAxjRWKWwzruAphSmY"},"time":"2026-03-06T19:22:51.049071441Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:51.050047346Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-151054134034515:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":745.265933,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jannic (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:51.077892666Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3930,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-232237605900456%3Amatrix.theocloud.dev","duration":29.847696,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-232237605900456","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:51.080158417Z","message":"Request completed"} +{"level":"debug","transaction_id":"1729","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.081735314Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1729","time":"2026-03-06T19:22:51.08199415Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3921,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917662348078%3Amatrix.theocloud.dev","duration":263.668159,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<33959 bytes>","time":"2026-03-06T19:22:51.090612678Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3932,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-232237605900456:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-232237605900456%3Amatrix.theocloud.dev","duration":27.432133,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:51.10795785Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3933,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662348078:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917662348078%3Amatrix.theocloud.dev","duration":27.666663,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:51.118679677Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3913,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970609040117_396?ts=1772647150000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":515.076636,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Supi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.124246729Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:4917641870516@s.whatsapp.net:3A100DDA47BC4A77327F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T17:59:10Z","event_id":"$9DbB6_64TJezhz-51jb82donrzG53UdlmFPazQ7dlOw","part_id":"","time":"2026-03-06T19:22:51.12437028Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3914,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970613283171_397?ts=1772793717000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":513.230078,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.126682127Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5CC18F9400452A3735","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T10:41:57Z","event_id":"$GMop7hPCxi_XODFE0h9JAfoAzHJXt6pukCQNjyLVbU8","part_id":"","time":"2026-03-06T19:22:51.126820275Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3935,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/geSwuCMUrKmseYIvZhNaXGIs?user_id=%40whatsapp_4917662348078%3Amatrix.theocloud.dev","duration":25.751171,"status_code":200,"response_length":33959,"response_mime":"image/jpeg","time":"2026-03-06T19:22:51.144546646Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3915,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970617698525_398?ts=1771842890000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":543.680791,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"naja sind noch leute im 3. oder 4. versuch vom dritten Mathemodul rausgeflogen oder wegen anderer Module","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.161532969Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF3FB566A9926993B65","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-23T10:34:50Z","event_id":"$Hy3B3-pShkig3JiWRRld5_sJvK6ECK_op-OuAMB3EeQ","part_id":"","time":"2026-03-06T19:22:51.161614544Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1730","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.165239704Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1730","time":"2026-03-06T19:22:51.165326448Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3917,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970651439086_399?ts=1772480164000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":523.475929,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hast du Rana gefragt?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.175020197Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A6D10006D645FB76265","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:36:04Z","event_id":"$vDDVrSLvnC963Gkmj_JnXUjLH8obdU8-9oeKh81G6Kc","part_id":"","time":"2026-03-06T19:22:51.175105964Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3918,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970676846912_24?ts=1770150873000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":521.611981,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":19870},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"hH/y7dqsEgITybuOzZGXbHE5aOOX15vHbe3N1nEuzJk=","length":19870,"type":"WhatsApp Image Keys","sha256":"FOApAcRlfDgbY+M+Yfr3MaIzPcwGBYjVGUQfL3JZQgs=","enc_sha256":"Cc4U7pfVtJiuzfFWneitmNslaZEYkM2I0GKIJszpO6g=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$T0a4Zjpg_Yp6lk-qPE6GIbhFPhqIuakbt1nBjbBasSw"}},"msgtype":"m.notice"},"time":"2026-03-06T19:22:51.198720172Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A5C5B3DF8AFCFCD0F3F","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-03T20:34:33Z","event_id":"$jPweuZREcO5Pmsc2xaFd15I1aKQlYNrDSwmjqBp7DxA","part_id":"","time":"2026-03-06T19:22:51.198933401Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3909,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38504566390811:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":736.499898,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wwYmacyEqsOYwkZsEJSbjqKM","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Al koudsi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:51.208774936Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3938,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662348078:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917662348078%3Amatrix.theocloud.dev","duration":64.963659,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/geSwuCMUrKmseYIvZhNaXGIs"},"time":"2026-03-06T19:22:51.209772771Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3929,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663325906:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663325906%3Amatrix.theocloud.dev","duration":199.678659,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Leander (WA)"},"time":"2026-03-06T19:22:51.212257897Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:51.213197484Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3943,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917670876760%3Amatrix.theocloud.dev","duration":24.9593,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917670876760","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:51.235698757Z","message":"Request completed"} +{"level":"debug","transaction_id":"1731","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.253197652Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1731","time":"2026-03-06T19:22:51.253494551Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3919,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970757729286_400?ts=1770415071000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":507.47494,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Muss net schmegge muss wirge","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.265323796Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD76E067668354E6EE4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T21:57:51Z","event_id":"$lFpQrR4FzK3ZklbZoaerHU7d2zGh-SCCZq90IbQakTs","part_id":"","time":"2026-03-06T19:22:51.265492325Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3944,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670876760:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670876760%3Amatrix.theocloud.dev","duration":29.828698,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:51.265966274Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3934,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-232237605900456:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-232237605900456%3Amatrix.theocloud.dev","duration":184.714826,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915120791916 (WA)"},"time":"2026-03-06T19:22:51.292872146Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:51.293788127Z","message":""} +{"level":"debug","transaction_id":"1732","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.32027725Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1732","time":"2026-03-06T19:22:51.320701123Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3920,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970825095726_401?ts=1772520048000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":506.466978,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"GuMo 🥸","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.331726344Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC0299BD9E9224B64C9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T06:40:48Z","event_id":"$_QnDJq7SZrJJ9BPzvtgQRZ9HXlbVva8RgNKn9EXbzlk","part_id":"","time":"2026-03-06T19:22:51.331871825Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:51.378692224Z","message":""} +{"level":"debug","transaction_id":"1733","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.379496527Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1733","time":"2026-03-06T19:22:51.379595703Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3948,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663325906:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917663325906%3Amatrix.theocloud.dev","duration":15.593949,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:51.394665416Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3945,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670876760:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670876760%3Amatrix.theocloud.dev","duration":132.327724,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yazan Elahmad (WA)"},"time":"2026-03-06T19:22:51.398509531Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:51.399390032Z","message":""} +{"level":"debug","transaction_id":"1734","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.427538816Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1734","time":"2026-03-06T19:22:51.427638132Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3926,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824970989432273_36?ts=1772453806000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":454.564649,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich wusste, dass wir die nächsten sind","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.444138982Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACA08806150D99822BCB034AC79ECE17","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T12:16:46Z","event_id":"$0JThZqpLvoYwYh7BZomzEVR8KA52sPxFxlaJa4wHa-A","part_id":"","time":"2026-03-06T19:22:51.444279574Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3928,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971010478594_33?ts=1772569409000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":439.860979,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ist spannend","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.450474578Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A28EB1151489C7B6B62","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T20:23:29Z","event_id":"$mAQTuGy_CoeblWwcGb0xXJM4WdBA5sVNdInzeJgSGiE","part_id":"","time":"2026-03-06T19:22:51.450626135Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1735","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.494963644Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1735","time":"2026-03-06T19:22:51.495065334Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","req_id":3936,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21xRkqecNmTFOMvkWiXu:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971124982098_25?ts=1772647151000&user_id=%40whatsapp_491628947581%3Amatrix.theocloud.dev","duration":420.612956,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Quelle: Leckerschmecker https://share.google/ypju5GJ3kTQSJs8QY","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.545718465Z","message":"Request completed"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","message_id":"491628947581@s.whatsapp.net:491628947581@s.whatsapp.net:4AFB1B506CCA02D9CEEC","sender_id":{"user_id":"491628947581"},"message_ts":"2026-03-04T17:59:11Z","event_id":"$eLj4wURTcEQ0VIPzfEw4zq3JPvo1gICwM_R2H6rbiFs","part_id":"","time":"2026-03-06T19:22:51.545862549Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:51.547287819Z","message":"Backfill finished"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","time":"2026-03-06T19:22:51.547409414Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"error","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:51.547573544Z","message":"Failed to get membership"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","started_at":"2026-03-06T19:22:00.220374097Z","duration":"51.327262514s","time":"2026-03-06T19:22:51.547658262Z","message":"Event that took long finished handling"} +{"level":"error","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.name","time":"2026-03-06T19:22:51.547693044Z","message":"Failed to set room metadata"} +{"level":"error","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:51.54779655Z","message":"Failed to get membership"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3937,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971127671442_402?ts=1772802036000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":419.952668,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Maus bis wann arbeitest du dann heute?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.547816106Z","message":"Request completed"} +{"level":"error","portal_id":"491628947581@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491628947581@s.whatsapp.net","latest_message_ts":"2026-03-04T17:59:11Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.avatar","time":"2026-03-06T19:22:51.547887065Z","message":"Failed to set room metadata"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5C1BCD9B6F89925549","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T13:00:36Z","event_id":"$ZdRPNCEBgEhoHURgErjQb0jJhEsuU6mQsmrSkuyIrR0","part_id":"","time":"2026-03-06T19:22:51.547923453Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1736","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.56570919Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1736","time":"2026-03-06T19:22:51.565794118Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3940,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971175648917_403?ts=1772480175000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":412.742019,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Und was macht Domi bei der ganzen Fahrzeit","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.588502404Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3AC1311D5B937B77EE0D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:36:15Z","event_id":"$BBBYzcAf7oXlgLe-MCo4NC3NZynZXpPflRpaBj0PR_8","part_id":"","time":"2026-03-06T19:22:51.588669466Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3939,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971162438543_36?ts=1771845838000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":440.24155,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aua","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$Hy3B3-pShkig3JiWRRld5_sJvK6ECK_op-OuAMB3EeQ"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.602808881Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A9891B88B6DB09E5EDB","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T11:23:58Z","event_id":"$qSkUlpXxFv24JtM9UVnKgKupmDoJoYe4V71kGb-DWi0","part_id":"","time":"2026-03-06T19:22:51.602948845Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3941,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971200276815_404?ts=1770150879000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":414.415228,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂","m.mentions":{"user_ids":["@whatsapp_4917623702252:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$jPweuZREcO5Pmsc2xaFd15I1aKQlYNrDSwmjqBp7DxA"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.61483983Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD6F47D078DB19B3E75","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T20:34:39Z","event_id":"$6EkA-4yCwMhwaqhusEnATePv49J2FboqHyLKQqjeeW0","part_id":"","time":"2026-03-06T19:22:51.614956955Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1737","content":{"pdu":5,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:51.64565505Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1737","time":"2026-03-06T19:22:51.645867579Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:51.651677473Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3946,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971266296977_24?ts=1770585071000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":407.208351,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":297262,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/kZNYpyoxkYjqTnuDBfbhZHQp"},"time":"2026-03-06T19:22:51.673728963Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A22926841EBC777893E","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:11:11Z","event_id":"$afLX6Wz5ZRxrWips1wugYCTbwrLUAzQfryTDbAj6uho","part_id":"","time":"2026-03-06T19:22:51.673855167Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3931,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-151054134034515:matrix.theocloud.dev?user_id=%40whatsapp_lid-151054134034515%3Amatrix.theocloud.dev","duration":624.218913,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jannic (WA)","membership":"join"},"time":"2026-03-06T19:22:51.702965748Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:51.70369525Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:51.720652519Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3957,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491794397891%3Amatrix.theocloud.dev","duration":21.779524,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491794397891","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:51.725771743Z","message":"Request completed"} +{"level":"debug","transaction_id":"1738","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.731899Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1738","time":"2026-03-06T19:22:51.732017662Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3947,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971332762173_405?ts=1772520074000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":412.303829,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"U3 in 2min am Breitenbachplatz?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.745203661Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA7E3B60260F526BDDD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T06:41:14Z","event_id":"$cnsbj05uUqO2GMbC4h-hFifxKCJupTundgY692L5qcw","part_id":"","time":"2026-03-06T19:22:51.745372679Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3958,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794397891:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491794397891%3Amatrix.theocloud.dev","duration":22.527883,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:51.748711625Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3942,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38504566390811:matrix.theocloud.dev?user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":564.625141,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wwYmacyEqsOYwkZsEJSbjqKM","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Al koudsi (WA)","membership":"join"},"time":"2026-03-06T19:22:51.774128951Z","message":"Request completed"} +{"level":"debug","transaction_id":"1739","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.802426778Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1739","time":"2026-03-06T19:22:51.802659981Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1740","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.849069219Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1740","time":"2026-03-06T19:22:51.84943624Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3950,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971445184519_406?ts=1772453818000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":416.784556,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab schon mit Ana gesagt wir gehen dann Schöneberg","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.862124124Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA2D70CE8F6B25F7180","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T12:16:58Z","event_id":"$1p1q-wyL9uQlOIOIpDyf4jYNKqYJo5M-HsOg_If5CLw","part_id":"","time":"2026-03-06T19:22:51.862269676Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3951,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971452075501_407?ts=1772569416000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":415.241113,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"dachte du bist mit eingepennt so","m.mentions":{"user_ids":["@whatsapp_491736748726:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$9VnDmBshWAvKgWZTb5l9P-YfjAb7sHsAxzQokm8VL3E"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.867460977Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A739B85974F6245A07D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T20:23:36Z","event_id":"$0OMCsyo_YrwmLRfGpx279swz2ILqur7DLiflL9V_QLY","part_id":"","time":"2026-03-06T19:22:51.867608344Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3961,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794397891:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491794397891%3Amatrix.theocloud.dev","duration":147.29861,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491794397891 (WA)"},"time":"2026-03-06T19:22:51.896227864Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:51.897137559Z","message":""} +{"level":"debug","transaction_id":"1741","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.914921131Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1741","time":"2026-03-06T19:22:51.915029666Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3959,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917670876760%3Amatrix.theocloud.dev","duration":211.641232,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<59233 bytes>","time":"2026-03-06T19:22:51.93915945Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3952,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971548712391_38?ts=1772807078000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":410.316957,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"So 16","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:51.959177134Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A6271E34F8C9D41AEC1","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-06T14:24:38Z","event_id":"$8ZmhBmD4K0VC1fGcT7XHJxLu7lUcYamEIywUFFqNfdw","part_id":"","time":"2026-03-06T19:22:51.959327574Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3966,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670876760:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917670876760%3Amatrix.theocloud.dev","duration":23.337424,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:51.962894695Z","message":"Request completed"} +{"level":"debug","transaction_id":"1742","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:51.983435428Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1742","time":"2026-03-06T19:22:51.983569036Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3968,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YZOKAHrWwxxrLzbQLwHIAdkl?user_id=%40whatsapp_4917670876760%3Amatrix.theocloud.dev","duration":26.469847,"status_code":200,"response_length":59233,"response_mime":"image/jpeg","time":"2026-03-06T19:22:51.98949382Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3953,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971589520144_408?ts=1772480188000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":410.839028,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"mit uns quatschen wird ja nichts","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.00049718Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A32FCF852C09BF945E2","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:36:28Z","event_id":"$uyvq0CfIHgnFsNZxfN6g-ACbGDLHiVaYHf22q1DiSWk","part_id":"","time":"2026-03-06T19:22:52.000635119Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3955,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971615678774_25?ts=1770150883000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":397.671746,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles Gute für Mami","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.013517444Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A7CEEDC553F590FE971","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-03T20:34:43Z","event_id":"$7QG23McwCtbIr48LgLUhO1wNMZ9Jh9uIx9DLJLA4ILk","part_id":"","time":"2026-03-06T19:22:52.013701688Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3963,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-232237605900456%3Amatrix.theocloud.dev","duration":227.202635,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26690 bytes>","time":"2026-03-06T19:22:52.022423024Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3949,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-219241135489206:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":630.068826,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Seyyid (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:52.025780967Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3954,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971603766767_37?ts=1771845841000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":436.966788,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"die armen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.040861227Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A6BAA025E77BB8E84B9","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-23T11:24:01Z","event_id":"$MKCdLyJ0JtHrm5cUt28OswxPgZya7ey1FmSMvwCCzZM","part_id":"","time":"2026-03-06T19:22:52.040973812Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3969,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670876760:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917670876760%3Amatrix.theocloud.dev","duration":56.724583,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YZOKAHrWwxxrLzbQLwHIAdkl"},"time":"2026-03-06T19:22:52.046444762Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3972,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-232237605900456:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-232237605900456%3Amatrix.theocloud.dev","duration":24.15346,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:52.046938965Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.047316532Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.063500159Z","message":""} +{"level":"debug","transaction_id":"1743","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.065711084Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1743","time":"2026-03-06T19:22:52.066043114Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3975,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/DQwjhcGHiXwPkgUghDxSUdzv?user_id=%40whatsapp_lid-232237605900456%3Amatrix.theocloud.dev","duration":30.541857,"status_code":200,"response_length":26690,"response_mime":"image/jpeg","time":"2026-03-06T19:22:52.077660247Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3956,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971674654302_25?ts=1770585077000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":411.334349,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Rate, was gleich spawnt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.086105427Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A26550849AC32359168","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:11:17Z","event_id":"$HKec_BbZZli0ql3mxJcHXki4Mk_M-eRJdQvM0TUZzAs","part_id":"","time":"2026-03-06T19:22:52.086190704Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3977,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-232237605900456:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-232237605900456%3Amatrix.theocloud.dev","duration":37.310685,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DQwjhcGHiXwPkgUghDxSUdzv"},"time":"2026-03-06T19:22:52.115279844Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:52.116506552Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1744","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.117298772Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1744","time":"2026-03-06T19:22:52.117411428Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3979,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-54739391742165%3Amatrix.theocloud.dev","duration":15.942182,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-54739391742165","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:52.13276065Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","req_id":3960,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971746267218_34?ts=1772520088000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":396.728667,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"En route","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.143161202Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AF50465CE1583BCDD3C","sender_id":{"user_id":"491731828379"},"message_ts":"2026-03-03T06:41:28Z","event_id":"$0dxaqeTOIMf7eba__iC-epqGUld1q3ucIMpybHbe3S0","part_id":"","time":"2026-03-06T19:22:52.143269876Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:52.144161063Z","message":"Backfill finished"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","time":"2026-03-06T19:22:52.144208625Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"error","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:52.144436451Z","message":"Failed to get membership"} +{"level":"error","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.name","time":"2026-03-06T19:22:52.144564821Z","message":"Failed to set room metadata"} +{"level":"error","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:22:52.144662111Z","message":"Failed to get membership"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.14474236Z","message":"c21b56757154172b4294edba87c206a149a2fe2586c7e713bc6d24dcf9c90e2e0f0f1a7ecc6c86919c8e23cab2f162d12146"} +{"level":"error","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.avatar","time":"2026-03-06T19:22:52.144769528Z","message":"Failed to set room metadata"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA2F4552846D5B5C4E4","time":"2026-03-06T19:22:52.144889168Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.145356622Z","message":"d56319e00df7a8a55283c6198f3c364273e8a7eea7b664684fd53c9f7622882af3a5117b4887b4f3bcbdc926af53ea7fb930"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A784250C748A5F81E0A","time":"2026-03-06T19:22:52.145461874Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.145883442Z","message":"39324a1b376b54cc897e6260a7b55908330357542eabd1a3accabefffa6e545ad0d17fe38f9b504a8618b55731a0a7bff44b"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA0C564EDFFD0ACFB20","time":"2026-03-06T19:22:52.145973817Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.146390775Z","message":"61979bfe7574c6fb5d5f04ec520e53a7e49491ef5889dbd492938f5d64819b303d2c03bef144f102c0fcef51afb9ef5c7248"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A3210434A9C9C6ADDC0","time":"2026-03-06T19:22:52.146485481Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","started_at":"2026-03-06T19:22:00.506431718Z","duration":"51.640368682s","time":"2026-03-06T19:22:52.146817651Z","message":"Event that took long finished handling"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.14726946Z","message":"3363581acda41b7b432882f49eb38186b2a19af3579bb39d2853b5504db130a5a89d4285d5a4c6356fd6d0047e258a40da13"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A60839E8F41DE22F400","time":"2026-03-06T19:22:52.147382814Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.147806826Z","message":"2c8f1e40c7f770898d3768e8f0d882cc5de6d444bf0996d89d745eed6766c70c920ca98e8ce7641fdd550f48912ebdb7046a"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A4245D0317426999C63","time":"2026-03-06T19:22:52.147898878Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.148299283Z","message":"01af755552885e0efcd3525e616d3baf2c6273c93ccc9097c058667f5c298861fb1ad36cd3bfa3a6c4909fca87675dc5b6d5"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A2C6F27B9AFAB5105A6","time":"2026-03-06T19:22:52.148410263Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.148827989Z","message":"22ce831f3bc48e86419037d6c6c3579c8a74333654d065249d0db5501f84718dc7fc52b2727f81ccbe4eb5f58d28b5dca53c"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491731828379@s.whatsapp.net","latest_message_ts":"2026-03-03T06:41:28Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A544C629AEBA9B6C72E","time":"2026-03-06T19:22:52.148929679Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3980,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54739391742165:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-54739391742165%3Amatrix.theocloud.dev","duration":21.039406,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:52.154101355Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.189435295Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.190114232Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.19166864Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.192370763Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.193861895Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.194587206Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.196149157Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.197583437Z","message":""} +{"level":"debug","transaction_id":"1745","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.205919104Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1745","time":"2026-03-06T19:22:52.206036369Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3964,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971863124544_37?ts=1772453824000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":405.412917,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Die machen das immer alle 5-6 Jahre","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.268695235Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACF1EED3670765016C1F63493666789D","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T12:17:04Z","event_id":"$FDHD1aoTx7UZX84t45hu7we9qZY4aO82bTFLHJMsK8k","part_id":"","time":"2026-03-06T19:22:52.268865161Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3965,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971868411320_34?ts=1772569417000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":418.713736,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"5 min","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.28728744Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A258F670DE6A3E6140D","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T20:23:37Z","event_id":"$GP_jIUISgPgYmcb67JL3jFo-5KMRj6gUj0rCXoXuri4","part_id":"","time":"2026-03-06T19:22:52.287504649Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1746","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:52.295274525Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1746","time":"2026-03-06T19:22:52.295404571Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3976,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491794397891%3Amatrix.theocloud.dev","duration":250.168707,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<75802 bytes>","time":"2026-03-06T19:22:52.322960045Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3981,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54739391742165:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-54739391742165%3Amatrix.theocloud.dev","duration":173.518003,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491775603928 (WA)"},"time":"2026-03-06T19:22:52.327773151Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.328562089Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3984,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794397891:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491794397891%3Amatrix.theocloud.dev","duration":21.710729,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:52.345092621Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3985,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/MGRiBbQwOqqdNLmdyoBSojPH?user_id=%40whatsapp_491794397891%3Amatrix.theocloud.dev","duration":31.477114,"status_code":200,"response_length":75802,"response_mime":"image/jpeg","time":"2026-03-06T19:22:52.376719547Z","message":"Request completed"} +{"level":"debug","transaction_id":"1747","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.381739875Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1747","time":"2026-03-06T19:22:52.381871877Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3962,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-44419206123644:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":621.79427,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SXNeSLsfibUWbhwpGmCpbXKH","com.beeper.exclude_from_timeline":true,"displayname":"Nes The One (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:52.396859106Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3967,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824971960213104_39?ts=1772807144000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":454.848767,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Überlege danach aber auch ins gym zu gehen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.415210844Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A383A054660EAA73547","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-06T14:25:44Z","event_id":"$22b7Jv5W2bmzJ4pSX9E2OzghGiKXT3etphzFV9qDcyw","part_id":"","time":"2026-03-06T19:22:52.415367291Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3986,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794397891:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491794397891%3Amatrix.theocloud.dev","duration":67.033153,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MGRiBbQwOqqdNLmdyoBSojPH"},"time":"2026-03-06T19:22:52.444039961Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.449633623Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917670876760@s.whatsapp.net","alternate_jid":"10501648023786@lid","time":"2026-03-06T19:22:52.44991411Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3970,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972002052147_409?ts=1772480249000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":454.754481,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"musstest schon selben lachen, Josh wird doch niemals so lange hin und her fahren mit Bahn 😂","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$UIwKEIcVFtO070b7Xa38abbNKfunKfa5OFa5KS_FCuk"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.456961817Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A0DC71DA0481701DF13","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:37:29Z","event_id":"$YIF5U8zsjrYDvq07xAnRaCjr4p_PZph7XYCR_qecA9M","part_id":"","time":"2026-03-06T19:22:52.45713328Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3971,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972014678431_410?ts=1770150893000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":448.102499,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Richte ich ihr aus dankee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.462908252Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD322672DF64B46559C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T20:34:53Z","event_id":"$8oXC9zjCvnZw_BbSgbZN7rHHFGFMSZHNkYTuz_ManS0","part_id":"","time":"2026-03-06T19:22:52.463027194Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1748","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.47374888Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1748","time":"2026-03-06T19:22:52.473837091Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3990,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-84533647044725%3Amatrix.theocloud.dev","duration":27.693413,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-84533647044725","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:52.478374599Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.493916516Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3993,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84533647044725:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-84533647044725%3Amatrix.theocloud.dev","duration":19.928007,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:52.498715933Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3974,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972041617897_38?ts=1771974201000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":465.486155,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Noch wach?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.507214193Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A30C8C5DC642864A560","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-24T23:03:21Z","event_id":"$Vdnq2Hc7u48e6lGRoufUaBbNtqe_W5y7YDhsrbNoNiA","part_id":"","time":"2026-03-06T19:22:52.507362118Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3978,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972086700064_411?ts=1770585098000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":439.14789,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Masse Haferkuchen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.52596906Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1B6D72DDBEBA994313","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:11:38Z","event_id":"$9aXEPMlVCplJOry61wtPZo0X0LdNy5r9vbL2P_o0IWU","part_id":"","time":"2026-03-06T19:22:52.526109373Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1749","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.543593671Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1749","time":"2026-03-06T19:22:52.543889802Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1750","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.579414132Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1750","time":"2026-03-06T19:22:52.57952581Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3973,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-219241135489206:matrix.theocloud.dev?user_id=%40whatsapp_lid-219241135489206%3Amatrix.theocloud.dev","duration":588.307306,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Seyyid (WA)","membership":"join"},"time":"2026-03-06T19:22:52.614814563Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":3994,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84533647044725:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-84533647044725%3Amatrix.theocloud.dev","duration":116.259686,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Martin Ryu (WA)"},"time":"2026-03-06T19:22:52.61518759Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:52.615731242Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.617831467Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3998,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491723891168%3Amatrix.theocloud.dev","duration":26.553169,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491723891168","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:52.642604009Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":3999,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723891168:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491723891168%3Amatrix.theocloud.dev","duration":12.735936,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:52.655684266Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":3982,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972269847561_412?ts=1772453828000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":416.393928,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"da geht auch Melvin von Gornation hin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.686414628Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEFB0A7D13E8BC0F914","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T12:17:08Z","event_id":"$Rms_8Us3otf6aNBfU4GDxkf3aKtjeDgSOz044dzKLS8","part_id":"","time":"2026-03-06T19:22:52.686555569Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1751","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.689692742Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1751","time":"2026-03-06T19:22:52.689997952Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":3983,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972288312444_413?ts=1772569424000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":409.392247,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Okok Sohnemann","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.697863791Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC08C5EE23A44882125","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T20:23:44Z","event_id":"$WfvjlI5eAth8LLfsQEVexF9F9cdhQ9zJhgdzRSpepn0","part_id":"","time":"2026-03-06T19:22:52.697974491Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":3996,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-54739391742165%3Amatrix.theocloud.dev","duration":210.179714,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<36518 bytes>","time":"2026-03-06T19:22:52.721653164Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4003,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54739391742165:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-54739391742165%3Amatrix.theocloud.dev","duration":11.885746,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:52.733887004Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.745192153Z","message":"4c26b5938e47636300146953"} +{"level":"debug","transaction_id":"1752","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.745527046Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1752","time":"2026-03-06T19:22:52.74564494Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.746074679Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A784250C748A5F81E0A","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A784250C748A5F81E0A","time":"2026-03-06T19:22:52.746175321Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4004,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ZeleidfvltubiOwieBqQPyiZ?user_id=%40whatsapp_lid-54739391742165%3Amatrix.theocloud.dev","duration":17.79775,"status_code":200,"response_length":36518,"response_mime":"image/jpeg","time":"2026-03-06T19:22:52.751925081Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":3988,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972416257220_414?ts=1772807432000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":353.83333,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"I see","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.770221854Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A520CB84064F78A2195","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T14:30:32Z","event_id":"$EKcIroACzKRN_IRrrex345-RDvWQxUP9CicN7CTlmYI","part_id":"","time":"2026-03-06T19:22:52.770375017Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4000,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723891168:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491723891168%3Amatrix.theocloud.dev","duration":133.731972,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491723891168 (WA)"},"time":"2026-03-06T19:22:52.789644273Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.790493065Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4005,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54739391742165:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-54739391742165%3Amatrix.theocloud.dev","duration":45.458197,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZeleidfvltubiOwieBqQPyiZ"},"time":"2026-03-06T19:22:52.797618088Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:52.798566754Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":3991,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972458074543_15?ts=1772480275000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":361.40199,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich glaube nicht dass Josh mitkommt, aber ich würde mich ENORM freuen!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.819585836Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AA708B81331D36E58A3","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:37:55Z","event_id":"$rCEaJnsHwZasTjDEvqu4B-Tv8DnPTmLFpICn65bMjgU","part_id":"","time":"2026-03-06T19:22:52.819698981Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4008,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-245101485920469%3Amatrix.theocloud.dev","duration":22.395672,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-245101485920469","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:52.82122615Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":3992,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972463837922_26?ts=1770150959000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":364.668371,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kussi wir sehen uns dann vielleicht am Wochenende im Gym muss noch bisschen gesund werd","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.828640599Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A707CBF834C31974CB2","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-03T20:35:59Z","event_id":"$zX5ohFxAeEnBxWwXxFTG6ANlAlVD1rX-5RvP-MnSPGM","part_id":"","time":"2026-03-06T19:22:52.828760378Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1753","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.849977533Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1753","time":"2026-03-06T19:22:52.850076709Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4010,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-245101485920469:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-245101485920469%3Amatrix.theocloud.dev","duration":35.346791,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:52.85688381Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":3997,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972526974997_26?ts=1770585276000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":362.770688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Cheesecake","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.8899029Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A869D3B2A8E4C0D2412","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:14:36Z","event_id":"$p4INmtPxlfbFRfNkPrNp7O28ALIpERqG1FiW760gfkY","part_id":"","time":"2026-03-06T19:22:52.890076737Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.89219114Z","message":"857b2b1dcf7e4f34d994385e"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.892951233Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":3995,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972508250092_415?ts=1771998723000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":392.02689,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ne musste früh ins Bett, weil 8:15 Uhr Vorlesung, was jetzt aufstehen bedeutet","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:52.900430076Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9245551C86663DAE0C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-25T05:52:03Z","event_id":"$hMzYc7mmytwvcXANujeQIKsJu_Q7CtRLWqmb3GdAMzk","part_id":"","time":"2026-03-06T19:22:52.900572205Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1754","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.922394752Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1754","time":"2026-03-06T19:22:52.922544563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.923655473Z","message":"6c1eddfd985375d325dcd12f"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.924371286Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.927475423Z","message":"c2de72440eed516eac64a07d"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.928399994Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.934395598Z","message":"17c15d0cbbd68295aa27d1e0"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.934965231Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":3987,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-44419206123644:matrix.theocloud.dev?user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":538.909939,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SXNeSLsfibUWbhwpGmCpbXKH","com.beeper.exclude_from_timeline":true,"displayname":"Nes The One (WA)","membership":"join"},"time":"2026-03-06T19:22:52.936539056Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.941634603Z","message":""} +{"level":"debug","transaction_id":"1755","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:52.981996484Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1755","time":"2026-03-06T19:22:52.982403804Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:52.985142247Z","message":"5de3b8d32875e7980bd8ccd2"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:52.985712718Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:53.009940421Z","message":"49d8f8f9f2626b10620bbf99"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:53.010486587Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":3989,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198041059483854:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":569.73333,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GpmbnAzaYSAXefYtDeDCQleb","com.beeper.exclude_from_timeline":true,"displayname":"Vale (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:53.01488071Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4012,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-245101485920469:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-245101485920469%3Amatrix.theocloud.dev","duration":160.904781,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+380963593256 (WA)"},"time":"2026-03-06T19:22:53.01794769Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:53.018805702Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A784250C748A5F81E0A","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A784250C748A5F81E0A","req_id":4006,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":268.353523,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<405944 bytes>","time":"2026-03-06T19:22:53.032755775Z","message":"Request completed"} +{"level":"debug","transaction_id":"1756","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:53.050056038Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1756","time":"2026-03-06T19:22:53.050190694Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4001,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972687421403_38?ts=1772453836000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":431.043261,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich wahrscheinlich turmstraße","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.118612101Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACF7A8F4F4DFD14D4E5471C8B536993C","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T12:17:16Z","event_id":"$iiPenYMqvo4Ru_l_l8llpBl7cJGd1cqfIICDaYdKvYg","part_id":"","time":"2026-03-06T19:22:53.118753741Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4002,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972698694913_416?ts=1772569436000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":421.418795,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber nur 5min sonst kein Taschengeld diesen Monat","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.120234116Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1F739ED11A807B9BE4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T20:23:56Z","event_id":"$WFcflyD9OQUP-B44YcAqd96B5JYYN9tKj674-nK6tqQ","part_id":"","time":"2026-03-06T19:22:53.12042297Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1757","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:53.129771209Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1757","time":"2026-03-06T19:22:53.130076839Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:53.159185045Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:53.170411132Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4016,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491723891168%3Amatrix.theocloud.dev","duration":231.979003,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<16966 bytes>","time":"2026-03-06T19:22:53.180547611Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4022,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-245101485920469:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-245101485920469%3Amatrix.theocloud.dev","duration":23.434714,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:53.194138346Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:53.195125775Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4023,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723891168:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491723891168%3Amatrix.theocloud.dev","duration":22.640748,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:53.203593863Z","message":"Request completed"} +{"level":"debug","transaction_id":"1758","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:53.207845996Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1758","time":"2026-03-06T19:22:53.207973947Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4024,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-119460253987062%3Amatrix.theocloud.dev","duration":22.480111,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-119460253987062","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:53.217872683Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:53.231234405Z","message":"842a0a4bb093db447ff6c516"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4007,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972771095649_417?ts=1772807450000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":460.444175,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich war bis gerade im Gym wegen der 16 Uhr Vorlesung bald","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.231648918Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A219077E20A0FF350C6","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T14:30:50Z","event_id":"$Vjl3oGhA4ris3NgqGJMO4rJABb0--2zaqL1PgdWuLsU","part_id":"","time":"2026-03-06T19:22:53.231749142Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:53.232205072Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4025,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/nePuBbEkcnsxDOvyGZrDWMoY?user_id=%40whatsapp_491723891168%3Amatrix.theocloud.dev","duration":29.708849,"status_code":200,"response_length":16966,"response_mime":"image/jpeg","time":"2026-03-06T19:22:53.233450428Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4026,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-119460253987062:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-119460253987062%3Amatrix.theocloud.dev","duration":40.566658,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:53.258775701Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4027,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723891168:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491723891168%3Amatrix.theocloud.dev","duration":64.921963,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nePuBbEkcnsxDOvyGZrDWMoY"},"time":"2026-03-06T19:22:53.298702465Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4009,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972820539322_16?ts=1772480277000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":479.612998,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jedenfalls","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.300295566Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3ACD14EF60FA959C7ADC","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:37:57Z","event_id":"$snEkSP3-ihS2M1hz3xrFomeouPkBp63wGqwnryELHj8","part_id":"","time":"2026-03-06T19:22:53.300428266Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4011,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972829405441_418?ts=1770150973000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":478.950964,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hat sich ganz doll bedankt und liebe Grüße","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.308500489Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0E4ED6BCD97507D994","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T20:36:13Z","event_id":"$4W-PWb4YVYl69WUpOojTw-2ykBICoW014PQxcvuRNPY","part_id":"","time":"2026-03-06T19:22:53.308649742Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1759","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:53.332632368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1759","time":"2026-03-06T19:22:53.332734338Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4013,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972890991810_27?ts=1770585293000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":478.598191,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Diesmal aber etwas slimmer, nur 1200kcal , 100g Eiweiß","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.36974505Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A66DBBC957E12100ADF","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:14:53Z","event_id":"$srgdUK7ECFkMfReKaERnLM66K4I9xS5KHdyTx-ZABw8","part_id":"","time":"2026-03-06T19:22:53.369912462Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1760","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:53.412767081Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1760","time":"2026-03-06T19:22:53.412913261Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4014,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824972901536586_419?ts=1772107168000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":522.171975,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bro die zwei Mullvad Geräte von dir sind dein Iphone und dein PC oder? Hatte Ana auch mal ein Gerät gegeben, als ich weniger brauchte, aber jetzt hab ich auch Iphone + PC und damit kommen wir halt auf 5 Geräte leider","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.423885052Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AA54CAF7DB791482934","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T11:59:28Z","event_id":"$NVsxm3awY30SvXADlFO7osH6mI0nkenAefJs1iypiMI","part_id":"","time":"2026-03-06T19:22:53.424065874Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4021,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-84533647044725%3Amatrix.theocloud.dev","duration":273.748973,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40858 bytes>","time":"2026-03-06T19:22:53.441526286Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4029,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-119460253987062:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-119460253987062%3Amatrix.theocloud.dev","duration":200.61224,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917634409352 (WA)"},"time":"2026-03-06T19:22:53.459577004Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:53.46070768Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4035,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84533647044725:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-84533647044725%3Amatrix.theocloud.dev","duration":25.686357,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:53.467606553Z","message":"Request completed"} +{"level":"debug","transaction_id":"1761","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:53.494106083Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1761","time":"2026-03-06T19:22:53.49418717Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4036,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/xuXwDpEPvVNdgnvHGCkogLQz?user_id=%40whatsapp_lid-84533647044725%3Amatrix.theocloud.dev","duration":27.599265,"status_code":200,"response_length":40858,"response_mime":"image/jpeg","time":"2026-03-06T19:22:53.495354792Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4037,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-84533647044725:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-84533647044725%3Amatrix.theocloud.dev","duration":44.054508,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xuXwDpEPvVNdgnvHGCkogLQz"},"time":"2026-03-06T19:22:53.53967931Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A784250C748A5F81E0A","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A784250C748A5F81E0A","req_id":4018,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973033182999_420?ts=1772824972000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":545.100123,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/rjEuLYKVrfzUIHtvLWFWCOmX"},"m.relates_to":{"event_id":"$WNfMaahyetOXicPA_oMIpHvv74u0_GEiU8Y37-UqNaE","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/rjEuLYKVrfzUIHtvLWFWCOmX"},"time":"2026-03-06T19:22:53.578547196Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A784250C748A5F81E0A","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A784250C748A5F81E0A","event_id":"$pfVmNPOR7V_aR6PaOR12elGVggjQb8DIlxJDtVYJu8Y","part_id":"491731828379@s.whatsapp.net:4917641870516@s.whatsapp.net:3A784250C748A5F81E0A","time":"2026-03-06T19:22:53.578683179Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA0C564EDFFD0ACFB20","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA0C564EDFFD0ACFB20","time":"2026-03-06T19:22:53.579383487Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4038,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491636730324%3Amatrix.theocloud.dev","duration":40.685599,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491636730324","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:53.581564519Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4039,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491636730324:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491636730324%3Amatrix.theocloud.dev","duration":25.856772,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:53.607794738Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:53.627899516Z","message":""} +{"level":"debug","transaction_id":"1762","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:53.632771708Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1762","time":"2026-03-06T19:22:53.632923405Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4019,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973119719030_421?ts=1772453842000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":522.465591,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"I see","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.642346865Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A67FB039A4E0176D43C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T12:17:22Z","event_id":"$bah3PXY57vlb-scAt9QQl7n4sceT0ZCELuf4MWdkjCA","part_id":"","time":"2026-03-06T19:22:53.642490949Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4020,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973121326448_35?ts=1772569540000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":524.809007,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ulli","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.646276606Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A2280526528E16DCFCD","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T20:25:40Z","event_id":"$cJxy1I3En3Q0JYp_k1CdH5SjVHBHOoW17Mx2-Rk0iic","part_id":"","time":"2026-03-06T19:22:53.646401484Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4042,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-119460253987062:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-119460253987062%3Amatrix.theocloud.dev","duration":41.435565,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:53.669684501Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:53.670457655Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4015,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80358888464591:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":743.055426,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QCXIwVHDANbLEfrPboJQeaoY","com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:53.680700713Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4045,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-95575957610651%3Amatrix.theocloud.dev","duration":35.075524,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-95575957610651","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:53.705731671Z","message":"Request completed"} +{"level":"debug","transaction_id":"1763","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:53.725479066Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1763","time":"2026-03-06T19:22:53.725590324Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4047,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95575957610651:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-95575957610651%3Amatrix.theocloud.dev","duration":27.416209,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:53.733492411Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4017,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198041059483854:matrix.theocloud.dev?user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":719.72778,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GpmbnAzaYSAXefYtDeDCQleb","com.beeper.exclude_from_timeline":true,"displayname":"Vale (WA)","membership":"join"},"time":"2026-03-06T19:22:53.735085721Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4028,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973233729029_422?ts=1772807462000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":538.936898,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Fahre jetzt wieder mit dem Rad nach Hause","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.772800303Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8E49BE26A4721F3496","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T14:31:02Z","event_id":"$E7LqiZhWan36PpYvlcbNfYYozhesWRwxYcIxXahRI0A","part_id":"","time":"2026-03-06T19:22:53.772939639Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4041,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491636730324:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491636730324%3Amatrix.theocloud.dev","duration":199.057343,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Martin Ryu (WA)"},"time":"2026-03-06T19:22:53.80705595Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:53.807929816Z","message":""} +{"level":"debug","transaction_id":"1764","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:53.809364864Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1764","time":"2026-03-06T19:22:53.809851524Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4031,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973301084853_17?ts=1772480292000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":538.40463,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kommt ihr mit, auch wenn wir wie geplant 15 Uhr machen? 😁","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.839621136Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A3500F10EF79C224CD1","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:38:12Z","event_id":"$VR0R5JjvdXy38GMntjRt-1FemSZRaOWSFKSsKuYE0_0","part_id":"","time":"2026-03-06T19:22:53.839773462Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4032,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973310259954_423?ts=1770150981000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":530.917267,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Joo","m.mentions":{"user_ids":["@whatsapp_4917623702252:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$zX5ohFxAeEnBxWwXxFTG6ANlAlVD1rX-5RvP-MnSPGM"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.841323889Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABD70A8EBB17E5A3384","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-03T20:36:21Z","event_id":"$7X3Jla3E7FjN6Z2QD0mt4cgu8Tl-JNGAEQh0yzP3JEs","part_id":"","time":"2026-03-06T19:22:53.841478869Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA0C564EDFFD0ACFB20","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA0C564EDFFD0ACFB20","req_id":4040,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":279.840889,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<77724 bytes>","time":"2026-03-06T19:22:53.874852828Z","message":"Request completed"} +{"level":"debug","transaction_id":"1765","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:53.887538757Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1765","time":"2026-03-06T19:22:53.887686124Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4033,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973370875516_424?ts=1770585496000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":524.067353,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geilll","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.895062089Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3B79EE0EF6A7A0205D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:18:16Z","event_id":"$0lnVPU-OsT_WWelRMZHPCxs0_bR2Jlv9ESLoqhjTQME","part_id":"","time":"2026-03-06T19:22:53.895152116Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4048,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95575957610651:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-95575957610651%3Amatrix.theocloud.dev","duration":178.221806,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491754714679 (WA)"},"time":"2026-03-06T19:22:53.911914315Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:53.912904119Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4034,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973425017474_39?ts=1772107790000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":532.681342,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ne ich hab nur pc","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:53.957875167Z","message":"Request completed"} +{"level":"debug","transaction_id":"1766","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:53.957969593Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1766","time":"2026-03-06T19:22:53.958073728Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AEEAE6E30485E85BE2A","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T12:09:50Z","event_id":"$uVM_J3ECh10Q3CDce--r5mEsFNG058fSsx_L7rU-SpU","part_id":"","time":"2026-03-06T19:22:53.958047537Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1767","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.025180565Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1767","time":"2026-03-06T19:22:54.025299576Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4030,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80522080477241:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":745.818873,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BGFNBeGGNGSHJjqGowzMuqpx","com.beeper.exclude_from_timeline":true,"displayname":"Makhkam (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:54.045734358Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:54.070519541Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4043,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973643888352_39?ts=1772453848000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":465.820768,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ach der","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$Rms_8Us3otf6aNBfU4GDxkf3aKtjeDgSOz044dzKLS8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.109889313Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACE902841E08C3A794B614AF311F7929","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T12:17:28Z","event_id":"$qcBL7xQfFzXyYKLcMYjFsvkxA5ulV6y7TU0QgBW3T4E","part_id":"","time":"2026-03-06T19:22:54.110087316Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4044,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973647020566_425?ts=1772569556000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":471.341655,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.118492476Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A21964F27E0B8CF81F7","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T20:25:56Z","event_id":"$_pU3Yq8idZlPtYSRXZJSGj977J18mXW40GnRoOH8Bcc","part_id":"","time":"2026-03-06T19:22:54.118638307Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1768","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.122766121Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1768","time":"2026-03-06T19:22:54.123070563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1769","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.183287606Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1769","time":"2026-03-06T19:22:54.18346256Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4050,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973773803307_40?ts=1772807531000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":449.299315,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Achso Oki","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.223229176Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A388FDAB03DB712F4CB","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-06T14:32:11Z","event_id":"$gsLprpqj2i6jbR4NGuEdiI4qMiO21bo1u4oNgJIp_eo","part_id":"","time":"2026-03-06T19:22:54.22334693Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1770","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:54.265215447Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1770","time":"2026-03-06T19:22:54.265326566Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4051,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973840722478_9?ts=1772480330000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":434.023707,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gegenfrage! Würdest du mitkommen wenn wir das auf nach der uni vorziehen? 🤙🏼","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.27488559Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A7C34A47159E9298DB5","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:38:50Z","event_id":"$U3rlDZwwP6Ew5FhDHtKMGmBIUpwjYgG8dzSYHGiU9pg","part_id":"","time":"2026-03-06T19:22:54.275025763Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4052,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824973842191609_27?ts=1770151330751&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":461.84982,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$7X3Jla3E7FjN6Z2QD0mt4cgu8Tl-JNGAEQh0yzP3JEs","key":"❤️"}},"time":"2026-03-06T19:22:54.304187748Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABD70A8EBB17E5A3384","target_part_id":"","reaction_sender_id":{"user_id":"4917623702252"},"reaction_ts":"2026-02-03T20:42:10.751Z","event_id":"$DcME7RJdrctNAYdCrdx7sONp-ux6-jMTbYR-d1bllog","time":"2026-03-06T19:22:54.304358931Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:54.311193131Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4046,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80358888464591:matrix.theocloud.dev?user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":635.49724,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QCXIwVHDANbLEfrPboJQeaoY","com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","membership":"join"},"time":"2026-03-06T19:22:54.316701097Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","source_jid":"4917656979328@s.whatsapp.net","alt_jid":"38504566390811@lid","source_push_name":"Ahmad Al koudsi","alt_push_name":"Al koudsi","time":"2026-03-06T19:22:54.317499672Z","message":"Conflicting push names between JIDs"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:54.317610652Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA0C564EDFFD0ACFB20","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA0C564EDFFD0ACFB20","req_id":4053,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973875228020_35?ts=1772824972000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":482.814913,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":77724,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":77724,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AmCiPXRbRVzGjBYKIndEkMYi"},"m.relates_to":{"event_id":"$6wEm7iBSoe4i6qJ4L9vuQH1CaiBV38fDIFYYucBooEg","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AmCiPXRbRVzGjBYKIndEkMYi"},"time":"2026-03-06T19:22:54.35838076Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA0C564EDFFD0ACFB20","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA0C564EDFFD0ACFB20","event_id":"$RdOhifU4NbT_QD8Z8Xii7QmflVOoOPtdHCT_jCiGueQ","part_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA0C564EDFFD0ACFB20","time":"2026-03-06T19:22:54.358558788Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A544C629AEBA9B6C72E","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A544C629AEBA9B6C72E","time":"2026-03-06T19:22:54.359318462Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4063,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917656979328%3Amatrix.theocloud.dev","duration":44.431656,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917656979328","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:54.362325239Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4054,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973895673907_426?ts=1770585506000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":469.042589,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"\"Nur\"","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.364833552Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A719BB2685232BECBFB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:18:26Z","event_id":"$kKINdiAiAlz4NMWPtP5yxhiyaoTyuIv3J1VjVoMFYlA","part_id":"","time":"2026-03-06T19:22:54.364965903Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1771","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.36928257Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1771","time":"2026-03-06T19:22:54.369402978Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4057,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-95575957610651%3Amatrix.theocloud.dev","duration":285.856329,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<51824 bytes>","time":"2026-03-06T19:22:54.37468256Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4065,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656979328:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656979328%3Amatrix.theocloud.dev","duration":23.439813,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:54.386138637Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4068,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95575957610651:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-95575957610651%3Amatrix.theocloud.dev","duration":24.869412,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:54.399909774Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4070,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XxJNIiGmETkqWJeqwzopvXag?user_id=%40whatsapp_lid-95575957610651%3Amatrix.theocloud.dev","duration":28.75662,"status_code":200,"response_length":51824,"response_mime":"image/jpeg","time":"2026-03-06T19:22:54.428809362Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4049,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-276351164624932:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":702.09828,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZDFCsTYRdxovxPMMbdNXIlnB","com.beeper.exclude_from_timeline":true,"displayname":"+491794397891 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:54.438009536Z","message":"Request completed"} +{"level":"debug","transaction_id":"1772","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.447690085Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1772","time":"2026-03-06T19:22:54.448124853Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4055,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824973958978394_40?ts=1772107794000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":494.874776,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und server teilen wir uns","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.453986011Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AB9FEEE1C888825C283","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T12:09:54Z","event_id":"$RLyiAbAdH2yYgafKu-3Xofnoz4lgxq_SGxq5U4nvVeI","part_id":"","time":"2026-03-06T19:22:54.454135473Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4071,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95575957610651:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-95575957610651%3Amatrix.theocloud.dev","duration":52.940533,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XxJNIiGmETkqWJeqwzopvXag"},"time":"2026-03-06T19:22:54.482009777Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:54.48314611Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4074,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-4157629010109%3Amatrix.theocloud.dev","duration":41.484525,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-4157629010109","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:54.524952328Z","message":"Request completed"} +{"level":"debug","transaction_id":"1773","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.545264746Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1773","time":"2026-03-06T19:22:54.545600687Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4075,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-4157629010109:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-4157629010109%3Amatrix.theocloud.dev","duration":42.011973,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:22:54.567383284Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4069,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656979328:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656979328%3Amatrix.theocloud.dev","duration":207.682157,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ahmad Al koudsi (WA)"},"time":"2026-03-06T19:22:54.594023267Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:54.594883653Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4059,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824974119587253_36?ts=1772569568000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":501.100441,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":615970,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/WZitKiwayTTzMLFuvDsMGWNl"},"time":"2026-03-06T19:22:54.620913773Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A109AC1DD1C1D1A650C","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-03T20:26:08Z","event_id":"$74ydm4_yo19IILu3F8tX5_93jrtHuEu3L5KnuRamp68","part_id":"","time":"2026-03-06T19:22:54.621042981Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4058,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974111055818_40?ts=1772453904000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":523.919776,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Die eine Stange hatte eine perfekte Höhe für mich","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.635112345Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC734FBEF850BE1FAAEB148E484F3A6F","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T12:18:24Z","event_id":"$jq5BE8d9Ku6ejoqxmPmDh7Z9HE4lAonO02VIp-TD-0Q","part_id":"","time":"2026-03-06T19:22:54.635221997Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4064,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491636730324%3Amatrix.theocloud.dev","duration":318.58767,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40858 bytes>","time":"2026-03-06T19:22:54.64147469Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4079,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491636730324:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491636730324%3Amatrix.theocloud.dev","duration":39.541165,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:54.681365416Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A544C629AEBA9B6C72E","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A544C629AEBA9B6C72E","req_id":4067,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":306.779378,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<13706 bytes>","time":"2026-03-06T19:22:54.681585419Z","message":"Request completed"} +{"level":"debug","transaction_id":"1774","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.696398252Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1774","time":"2026-03-06T19:22:54.696501339Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4080,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/gSjygfdiFZUuoMHhuAzFjVZh?user_id=%40whatsapp_491636730324%3Amatrix.theocloud.dev","duration":16.096882,"status_code":200,"response_length":40858,"response_mime":"image/jpeg","time":"2026-03-06T19:22:54.697592205Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4056,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80522080477241:matrix.theocloud.dev?user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":688.471786,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BGFNBeGGNGSHJjqGowzMuqpx","com.beeper.exclude_from_timeline":true,"displayname":"Makhkam (WA)","membership":"join"},"time":"2026-03-06T19:22:54.734900724Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:54.747736046Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4076,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-4157629010109:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-4157629010109%3Amatrix.theocloud.dev","duration":182.903818,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915906652191 (WA)"},"time":"2026-03-06T19:22:54.750447739Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:54.751191768Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4082,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491636730324:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491636730324%3Amatrix.theocloud.dev","duration":54.706282,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gSjygfdiFZUuoMHhuAzFjVZh"},"time":"2026-03-06T19:22:54.752494465Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"84533647044725@lid","alternate_jid":"491636730324@s.whatsapp.net","time":"2026-03-06T19:22:54.7529967Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4060,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974224094312_427?ts=1772807614000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":535.878089,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab eig gehofft, dass ich dich do kurz sehen kann wie letzte Woche (das war voll schön), aber diese Vorlesung darf ich nicht verpassen leider","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.760090503Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A51EBF248808AE39EAE","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T14:33:34Z","event_id":"$GpUwSeWuLfC4XfIh2Bf4emAud9beOeOPqBHF2SU05Gg","part_id":"","time":"2026-03-06T19:22:54.760208327Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1775","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.783264427Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1775","time":"2026-03-06T19:22:54.783383857Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4084,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-92655430197386%3Amatrix.theocloud.dev","duration":41.951978,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-92655430197386","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:54.795649895Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4087,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-92655430197386:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-92655430197386%3Amatrix.theocloud.dev","duration":16.488348,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:54.812491225Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974275969750_10?ts=1772480379000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":560.361414,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich würd dir auch ein spind am ostbahnhof für dein rucksack bezahlen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.836453737Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A10D62D95E698CA7C80","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:39:39Z","event_id":"$2C2cNExSAM2WH-PvVVio0glBr35viUNYca_foOlRvC4","part_id":"","time":"2026-03-06T19:22:54.836563739Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4062,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974305542407_28?ts=1770151322000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":559.140223,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":19870},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"hH/y7dqsEgITybuOzZGXbHE5aOOX15vHbe3N1nEuzJk=","length":19870,"type":"WhatsApp Image Keys","sha256":"FOApAcRlfDgbY+M+Yfr3MaIzPcwGBYjVGUQfL3JZQgs=","enc_sha256":"Cc4U7pfVtJiuzfFWneitmNslaZEYkM2I0GKIJszpO6g=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$4W-PWb4YVYl69WUpOojTw-2ykBICoW014PQxcvuRNPY"}},"msgtype":"m.notice"},"time":"2026-03-06T19:22:54.864917928Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AB384DC390B777F4F5D","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-03T20:42:02Z","event_id":"$KRUVkiMIPEd6uM1vuyVe4FvnPLAVbkw6Iz5Y2wmdRag","part_id":"","time":"2026-03-06T19:22:54.865064876Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1776","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.870217625Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1776","time":"2026-03-06T19:22:54.870506213Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4066,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974366260148_28?ts=1770585897000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":526.298602,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":15270},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"vEJidQcCb7clg3cZkVMxKwp22gB3l96TrdTBzGo3G38=","length":15270,"type":"WhatsApp Image Keys","sha256":"eHAw6lPg29H+otz5prURFHVwTF5MhGbOg8yJ2E0rSlU=","enc_sha256":"TdjNA7czCqFNPYvxbb30s/j1vW9YWVMaZQ7QWCW+9wo=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$kKINdiAiAlz4NMWPtP5yxhiyaoTyuIv3J1VjVoMFYlA"}},"msgtype":"m.notice"},"time":"2026-03-06T19:22:54.892856627Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A926284813638BED283","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:24:57Z","event_id":"$EOT84ZLTITsI7jFRUyDQKwYnnIVYtDQfsO8dsg7oW-w","part_id":"","time":"2026-03-06T19:22:54.892997429Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:54.913439195Z","message":""} +{"level":"debug","transaction_id":"1777","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:54.949598182Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1777","time":"2026-03-06T19:22:54.949764057Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4092,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-4157629010109:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-4157629010109%3Amatrix.theocloud.dev","duration":38.088797,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:54.951854993Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:54.95262193Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4093,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-69050206027927%3Amatrix.theocloud.dev","duration":13.928632,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-69050206027927","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:54.966792425Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4088,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-92655430197386:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-92655430197386%3Amatrix.theocloud.dev","duration":170.080649,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Elias Spurny (WA)"},"time":"2026-03-06T19:22:54.98274229Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:54.983659737Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4094,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-69050206027927:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-69050206027927%3Amatrix.theocloud.dev","duration":16.589828,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:54.983682366Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4085,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917656979328%3Amatrix.theocloud.dev","duration":231.250549,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<30937 bytes>","time":"2026-03-06T19:22:54.985863189Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4073,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974454958773_41?ts=1772107805000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":543.833885,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"hab also nur ein platz","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:54.998903776Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A59D1D26DE44FC9FA45","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T12:10:05Z","event_id":"$jcyKHOvcwt_wgA__aXV5vYGqQBXVjf6zE4IvPTO84WU","part_id":"","time":"2026-03-06T19:22:54.999040737Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1778","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:55.001962236Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1778","time":"2026-03-06T19:22:55.002113584Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4096,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656979328:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917656979328%3Amatrix.theocloud.dev","duration":24.562038,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:55.010758094Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4098,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XBheAIdzoYGFiPMvSwZlVgDM?user_id=%40whatsapp_4917656979328%3Amatrix.theocloud.dev","duration":23.96754,"status_code":200,"response_length":30937,"response_mime":"image/jpeg","time":"2026-03-06T19:22:55.034850023Z","message":"Request completed"} +{"level":"debug","transaction_id":"1779","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.060826715Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1779","time":"2026-03-06T19:22:55.060933154Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4099,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656979328:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917656979328%3Amatrix.theocloud.dev","duration":34.455256,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XBheAIdzoYGFiPMvSwZlVgDM"},"time":"2026-03-06T19:22:55.069577664Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4077,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974621919711_37?ts=1772611968000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":467.801423,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":":0","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":258807,"w":1152},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/PnZwozrsJFCbUsjGkYBhqagj"},"time":"2026-03-06T19:22:55.089905657Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3ADB48C1CDB01F32ACD6","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-04T08:12:48Z","event_id":"$Cr4xhiFv_rYbEzPiOGEV-ZFBPQJYAnGqY7TxuOm55UQ","part_id":"","time":"2026-03-06T19:22:55.090018243Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4072,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-276351164624932:matrix.theocloud.dev?user_id=%40whatsapp_lid-276351164624932%3Amatrix.theocloud.dev","duration":659.320068,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZDFCsTYRdxovxPMMbdNXIlnB","com.beeper.exclude_from_timeline":true,"displayname":"+491794397891 (WA)","membership":"join"},"time":"2026-03-06T19:22:55.098113792Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:55.098620917Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4078,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974636095863_41?ts=1772453910000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":462.801559,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Scheiße man haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.098998693Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC5DACF016F169440733ED6E6CF8F3F","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T12:18:30Z","event_id":"$GVg0rbqfh96T3mCFsE9VYWL1yKhbVMaLa76nlr7BrdU","part_id":"","time":"2026-03-06T19:22:55.0990663Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4102,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917656766415%3Amatrix.theocloud.dev","duration":20.192429,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917656766415","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:55.119027203Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4095,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-69050206027927:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-69050206027927%3Amatrix.theocloud.dev","duration":146.096487,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Scheggia (WA)"},"time":"2026-03-06T19:22:55.129931248Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:55.13082411Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A544C629AEBA9B6C72E","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A544C629AEBA9B6C72E","req_id":4081,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974682024237_36?ts=1772824972000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":454.438165,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":13706,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":13706,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/WBerGrPltFsitemvZpohhhNv"},"m.relates_to":{"event_id":"$KupP-n5dlQVVdlnGQbTusKEDw88Gb0R98A922jSF77U","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/WBerGrPltFsitemvZpohhhNv"},"time":"2026-03-06T19:22:55.136739536Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A544C629AEBA9B6C72E","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A544C629AEBA9B6C72E","event_id":"$LkXdHTpj1G-3xi8fTGygf5l2gQCDybDsIe787DmGJxQ","part_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A544C629AEBA9B6C72E","time":"2026-03-06T19:22:55.136898846Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4104,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656766415:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656766415%3Amatrix.theocloud.dev","duration":17.663583,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:55.137170602Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A4245D0317426999C63","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A4245D0317426999C63","time":"2026-03-06T19:22:55.137584417Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:55.144419315Z","message":""} +{"level":"debug","transaction_id":"1780","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.149455427Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1780","time":"2026-03-06T19:22:55.149549644Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4106,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-92655430197386:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-92655430197386%3Amatrix.theocloud.dev","duration":27.410691,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:55.172179986Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4108,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917634360138%3Amatrix.theocloud.dev","duration":22.02453,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917634360138","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:55.195027327Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4086,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974760922045_428?ts=1772807630000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":436.068547,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber wir sehen uns morgen Maus ❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.197115539Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD6D33DB70000716C9C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T14:33:50Z","event_id":"$mkXvMsZ7HDkot6bGOOmZDG1F35GkZUzvQxOByp3YvaA","part_id":"","time":"2026-03-06T19:22:55.197239439Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1781","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.223574072Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1781","time":"2026-03-06T19:22:55.223956039Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4109,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634360138:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634360138%3Amatrix.theocloud.dev","duration":30.263536,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:55.225634557Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4089,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974837299806_18?ts=1772480438000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":418.233431,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich finde bisschen Quatsch grad, warum am Abend vorher Plan ändern 🫩","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.255697995Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AF72DA49CC60B6C08E0","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:40:38Z","event_id":"$TiqQW2H1jzVThnvwCoUB8V3Fkk88EZSmSjJCaXECJ2g","part_id":"","time":"2026-03-06T19:22:55.255839495Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4090,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974865797940_29?ts=1770151325000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":403.29125,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":141526},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"w14Hfyl9e3reX1rfJAwSE6WVnIOPD0nO624HLaQpY3I=","length":141526,"type":"WhatsApp Image Keys","sha256":"ElpvfnHz93mj9O/DTWUw14nbdWXmtOdgLyWzC+ggbgU=","enc_sha256":"+te1CeTOdQCNkJK8Poo3EUSOMdCYVYV7LfKr/0N/oqI=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:55.269286634Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A31B03903EB3B0E02AC","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-03T20:42:05Z","event_id":"$tfXMUvtr0QaQRoZUAh0mK8z9CW4OL3SS85ouOCjAKh8","part_id":"","time":"2026-03-06T19:22:55.269451043Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:55.280916549Z","message":""} +{"level":"debug","transaction_id":"1782","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.298409926Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1782","time":"2026-03-06T19:22:55.298547725Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4091,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974893620980_429?ts=1770585951000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":414.442816,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Da Maggus wär stolz","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.308187207Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD22EBD502685B40659","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:25:51Z","event_id":"$wyIrsHctRI9R-uUBayJblQUUG5jiESgsiVsr5Y-dLg0","part_id":"","time":"2026-03-06T19:22:55.308311107Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4105,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656766415:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656766415%3Amatrix.theocloud.dev","duration":170.980705,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917656766415 (WA)"},"time":"2026-03-06T19:22:55.308368726Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:55.31090316Z","message":""} +{"level":"debug","transaction_id":"1783","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.362654001Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1783","time":"2026-03-06T19:22:55.362799133Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4083,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-199870648455306:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":656.908486,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/crKSWuMnVganZAFfyMcaNcwQ","com.beeper.exclude_from_timeline":true,"displayname":"Anja (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:55.392648784Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634360138:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634360138%3Amatrix.theocloud.dev","duration":170.986083,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Elias Spurny (WA)"},"time":"2026-03-06T19:22:55.396779112Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:55.397504843Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A4245D0317426999C63","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A4245D0317426999C63","req_id":4107,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":254.753708,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<13706 bytes>","time":"2026-03-06T19:22:55.400436329Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4097,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824974999861592_42?ts=1772107810000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":453.835985,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"sollte der letzte sein","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.453845084Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A393B2C6CC7D653B7EE","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T12:10:10Z","event_id":"$uyAo9ITOma7yc7F5BmxWgAAyZAzPcVWpc9rm7UIOfU8","part_id":"","time":"2026-03-06T19:22:55.454007467Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1784","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.458577731Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1784","time":"2026-03-06T19:22:55.458667898Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:55.469901947Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4119,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656766415:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917656766415%3Amatrix.theocloud.dev","duration":27.040388,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:55.497255158Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:55.498087677Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4120,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_48723807797%3Amatrix.theocloud.dev","duration":28.487518,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_48723807797","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:55.526855053Z","message":"Request completed"} +{"level":"debug","transaction_id":"1785","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.532273552Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1785","time":"2026-03-06T19:22:55.532552571Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4101,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975090543037_38?ts=1772611983000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":451.680654,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ausm ball","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.542318258Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A2F4021E923087B01E2","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-04T08:13:03Z","event_id":"$uPYI_5sm6QYcqwPl4Aa8orEiLlZLhx7YHWonSOYDKNo","part_id":"","time":"2026-03-06T19:22:55.542451796Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4114,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-69050206027927%3Amatrix.theocloud.dev","duration":251.578054,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<69531 bytes>","time":"2026-03-06T19:22:55.543406679Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4103,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975099572587_42?ts=1772453930000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":450.052773,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also für klimmzüge","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.549707912Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACD8A5E3AA00E17CFAB5BCBDCF1B8090","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T12:18:50Z","event_id":"$dxp7wQIwQRmpbPzq0bpJIp8TM7vQmCyOJ-UfH9G9yKM","part_id":"","time":"2026-03-06T19:22:55.549813304Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4121,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_48723807797:matrix.theocloud.dev/displayname?user_id=%40whatsapp_48723807797%3Amatrix.theocloud.dev","duration":24.828834,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:22:55.552124592Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4123,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-69050206027927:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-69050206027927%3Amatrix.theocloud.dev","duration":27.011892,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:55.570695006Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4126,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/OmKHHLKcFkOcOmnokmCmDDgX?user_id=%40whatsapp_lid-69050206027927%3Amatrix.theocloud.dev","duration":16.9301,"status_code":200,"response_length":69531,"response_mime":"image/jpeg","time":"2026-03-06T19:22:55.587747749Z","message":"Request completed"} +{"level":"debug","transaction_id":"1786","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.592452041Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1786","time":"2026-03-06T19:22:55.592552125Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4127,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-69050206027927:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-69050206027927%3Amatrix.theocloud.dev","duration":32.456931,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OmKHHLKcFkOcOmnokmCmDDgX"},"time":"2026-03-06T19:22:55.62044375Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:55.621485167Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4110,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975198063368_41?ts=1772809129000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":437.850361,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yes zum legday","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.6360194Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A1E105408A8A7ED580F","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-06T14:58:49Z","event_id":"$GXKcksMyyKwpq9vLjHsIlRglNOVru_0PJB5JmxuKhew","part_id":"","time":"2026-03-06T19:22:55.636131636Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:55.639262523Z","message":""} +{"level":"debug","transaction_id":"1787","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.649318543Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1787","time":"2026-03-06T19:22:55.649437764Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4128,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-259579434823822%3Amatrix.theocloud.dev","duration":29.522789,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-259579434823822","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:55.651270773Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:55.665030875Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4130,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-259579434823822:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-259579434823822%3Amatrix.theocloud.dev","duration":26.603594,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:55.678272608Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:55.682146825Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4131,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634360138:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917634360138%3Amatrix.theocloud.dev","duration":19.339167,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:55.684681119Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"92655430197386@lid","alternate_jid":"4917634360138@s.whatsapp.net","time":"2026-03-06T19:22:55.685140891Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4112,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975256641423_19?ts=1772480461000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":432.844421,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich befürchte ich würde das dann spontan entscheiden aus oben genannten Gründen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.689595426Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A52496A51E1A1E0BA59","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:41:01Z","event_id":"$gqFsV0b18tTCWoBs7HhXEYYzi6O8oQRwQl0qG105S8g","part_id":"","time":"2026-03-06T19:22:55.689707872Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4125,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_48723807797:matrix.theocloud.dev/displayname?user_id=%40whatsapp_48723807797%3Amatrix.theocloud.dev","duration":141.164929,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Michał (WA)"},"time":"2026-03-06T19:22:55.69348906Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:55.694534877Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4113,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975270213091_430?ts=1770368506000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":437.021684,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moooin, wie gehts dir mittlerweile Bro?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.707357277Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A39CDEC563D266801E8","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T09:01:46Z","event_id":"$3fjyTlZuq8uOkrcS6rvGr3sAI4-E7Auvt5wEUoqzWtY","part_id":"","time":"2026-03-06T19:22:55.707466371Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4100,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-275883097071617:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":640.929148,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sCTgPORBQRLSQYTETlrunLuQ","com.beeper.exclude_from_timeline":true,"displayname":"andac (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:55.711488304Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4133,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":28.171972,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-224927957410033","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:55.713899816Z","message":"Request completed"} +{"level":"debug","transaction_id":"1788","content":{"pdu":1,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:55.721689317Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1788","time":"2026-03-06T19:22:55.721817408Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4137,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-224927957410033:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":27.388202,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:55.741615997Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975309100393_29?ts=1770585978000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":435.347566,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Des Bedarfs","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.744552862Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3ADA760E786866FAA3D7","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:26:18Z","event_id":"$Tugtnn-4R-lOn0myl84S5AXIkUBX3zzGPe7VOAlcCyY","part_id":"","time":"2026-03-06T19:22:55.744658882Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1789","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.778320102Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1789","time":"2026-03-06T19:22:55.778472149Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-259579434823822:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-259579434823822%3Amatrix.theocloud.dev","duration":124.939885,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917646028166 (WA)"},"time":"2026-03-06T19:22:55.803402953Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:55.804212145Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A4245D0317426999C63","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A4245D0317426999C63","req_id":4117,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975400782537_37?ts=1772824972000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":415.531097,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":13706,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":13706,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/koAAJEaYseOnAzjpUJeIwIUV"},"m.relates_to":{"event_id":"$NHViEQXB_5_lPvpyNOnHLhOXCHiMwNA7onrxSFNZXQU","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/koAAJEaYseOnAzjpUJeIwIUV"},"time":"2026-03-06T19:22:55.816624292Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A4245D0317426999C63","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A4245D0317426999C63","event_id":"$tZx0Qoiwm1WYC13JVkhk3U75q39k0KQDIjR5Oft906c","part_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A4245D0317426999C63","time":"2026-03-06T19:22:55.81678891Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA2F4552846D5B5C4E4","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA2F4552846D5B5C4E4","time":"2026-03-06T19:22:55.817482723Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1790","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.821080434Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1790","time":"2026-03-06T19:22:55.821418121Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4138,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-224927957410033:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":123.013078,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Esther (WA)"},"time":"2026-03-06T19:22:55.864858787Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:55.865594434Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975454898514_43?ts=1772107820000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":412.914389,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"der eingetragen wurde","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.867953914Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A3664FFF9AE47BDB200","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T12:10:20Z","event_id":"$ztqpiSNqX5G9c7bZku59LNnHdQfOvtBDmTY4hbmwtYs","part_id":"","time":"2026-03-06T19:22:55.868099395Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1791","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.885878986Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1791","time":"2026-03-06T19:22:55.886050728Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4122,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975543153361_431?ts=1772620000000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":370.770135,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kranker Scheiß","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.91407198Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7AE09CD4EEF4279448","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T10:26:40Z","event_id":"$eCafb7Q8U4YzZWfi8SZJ9HprDgvEUMn32UEbDApUj44","part_id":"","time":"2026-03-06T19:22:55.914220674Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4124,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975550531073_432?ts=1772454440000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":370.567732,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja aber da wirds auch safe noch eine andere dann geben, die die selbe Höhe bestimmt hat","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:55.921240793Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A649FB578A2450D6F85","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T12:27:20Z","event_id":"$ZVodypQzmG4qi1XdD8nLsJMfgJRdVZ7PASD9twWxQ4s","part_id":"","time":"2026-03-06T19:22:55.921419101Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4116,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-199870648455306:matrix.theocloud.dev?user_id=%40whatsapp_lid-199870648455306%3Amatrix.theocloud.dev","duration":532.887445,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/crKSWuMnVganZAFfyMcaNcwQ","com.beeper.exclude_from_timeline":true,"displayname":"Anja (WA)","membership":"join"},"time":"2026-03-06T19:22:55.926296182Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:55.927136384Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4144,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915756437140%3Amatrix.theocloud.dev","duration":34.110654,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915756437140","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:55.961573969Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:55.973222043Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:55.979892393Z","message":""} +{"level":"debug","transaction_id":"1792","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:55.980869136Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1792","time":"2026-03-06T19:22:55.980966426Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4145,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915756437140:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915756437140%3Amatrix.theocloud.dev","duration":20.9843,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:55.982944078Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4146,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-259579434823822:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-259579434823822%3Amatrix.theocloud.dev","duration":11.537863,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:55.991716469Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:55.992392891Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4129,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975636867564_433?ts=1772809152000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":381.720974,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yippiee","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.018709434Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A41686345E25C5FB414","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T14:59:12Z","event_id":"$ITeFolVad2UFpRc9CZoqR3KOqatSVdLC5ZAaqt7erNM","part_id":"","time":"2026-03-06T19:22:56.018801975Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4149,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-57879650386021%3Amatrix.theocloud.dev","duration":28.527119,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-57879650386021","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:56.021112704Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4151,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-57879650386021:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-57879650386021%3Amatrix.theocloud.dev","duration":38.205014,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:56.05971959Z","message":"Request completed"} +{"level":"debug","transaction_id":"1793","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:56.062768552Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1793","time":"2026-03-06T19:22:56.063031508Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA2F4552846D5B5C4E4","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA2F4552846D5B5C4E4","req_id":4140,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":258.025327,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<82142 bytes>","time":"2026-03-06T19:22:56.09037522Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4135,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975708213613_30?ts=1770383716000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":419.100872,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Noch nicht alles ganz weg leider","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.127464924Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A9E10E3E08B2FE81CB7","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-06T13:15:16Z","event_id":"$ao0lzamZNKOIz7VSnWHXCYIR0hpTdWmtE0m6NG4H01w","part_id":"","time":"2026-03-06T19:22:56.127654616Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4134,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824975690309423_11?ts=1772480527542&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":444.396881,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$gqFsV0b18tTCWoBs7HhXEYYzi6O8oQRwQl0qG105S8g","key":"👍️"}},"time":"2026-03-06T19:22:56.134850388Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363192861790277@g.us:266657507356684@lid:3A52496A51E1A1E0BA59","target_part_id":"","reaction_sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"reaction_ts":"2026-03-02T19:42:07.542Z","event_id":"$-k06t-yhdsN8IQoeh5XEYGf6JHZb-B80giRFMurbt_g","time":"2026-03-06T19:22:56.135024295Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"1794","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:56.155235443Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1794","time":"2026-03-06T19:22:56.155375267Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975745377978_30?ts=1770585989000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":413.476478,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"video.mp4","info":{"duration":4000,"fi.mau.autoplay":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":104,"mimetype":"video/mp4","size":172151,"w":186},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/hITGFStJNnPQyGvSrxxDfAYv"},"time":"2026-03-06T19:22:56.159090104Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AF9B07F542EA5F7B384","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:26:29Z","event_id":"$sT5vpdNql2uWCa9lQ2dE68TChFwaG8rwPFnCz1lzTfM","part_id":"","time":"2026-03-06T19:22:56.159265059Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4147,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915756437140:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915756437140%3Amatrix.theocloud.dev","duration":190.224678,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915756437140 (WA)"},"time":"2026-03-06T19:22:56.173378632Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:56.174165125Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:56.196734494Z","message":""} +{"level":"debug","transaction_id":"1795","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:56.202816493Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1795","time":"2026-03-06T19:22:56.202979366Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4152,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-57879650386021:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-57879650386021%3Amatrix.theocloud.dev","duration":149.525809,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Brn (WA)"},"time":"2026-03-06T19:22:56.209491593Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:56.210361128Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4148,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_48723807797%3Amatrix.theocloud.dev","duration":229.912372,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45061 bytes>","time":"2026-03-06T19:22:56.214747847Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4158,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_48723807797:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_48723807797%3Amatrix.theocloud.dev","duration":13.340281,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:56.228466882Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4136,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-275883097071617:matrix.theocloud.dev?user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":534.298397,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sCTgPORBQRLSQYTETlrunLuQ","com.beeper.exclude_from_timeline":true,"displayname":"andac (WA)","membership":"join"},"time":"2026-03-06T19:22:56.246604624Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4159,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/lXLumuIbxjwZEQYlvgVprGCD?user_id=%40whatsapp_48723807797%3Amatrix.theocloud.dev","duration":21.130759,"status_code":200,"response_length":45061,"response_mime":"image/jpeg","time":"2026-03-06T19:22:56.249755625Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4162,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_48723807797:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_48723807797%3Amatrix.theocloud.dev","duration":42.383883,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lXLumuIbxjwZEQYlvgVprGCD"},"time":"2026-03-06T19:22:56.292441575Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4141,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975868841119_434?ts=1772111742000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":423.458816,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"alles klar :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.292458197Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE2404F37BD66A17D83","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T13:15:42Z","event_id":"$lDudcrznRiTaqAbGMyPbHQ6Ga2PVf00wcfkgUwKPbMc","part_id":"","time":"2026-03-06T19:22:56.292594599Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1796","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:56.311497951Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1796","time":"2026-03-06T19:22:56.311614937Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4142,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975915122686_435?ts=1772620002000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":415.115605,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bin neidisch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.33040703Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A79EF6139569468C94F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T10:26:42Z","event_id":"$qs1sYFvcinATTuy62KrLO0zpisyrz7SlEuSDGcfXGYM","part_id":"","time":"2026-03-06T19:22:56.330566689Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:56.338498459Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4143,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824975922261537_43?ts=1772458152000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":425.343717,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"War schon bei anderen FitX, die die neue Turnecke haben. Die stangen sind leider nicht gleich. Dafür gibt es eine Sprossenwand","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.347754298Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:AC730B4D4CE6BCE321A5C1D01B6888CD","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T13:29:12Z","event_id":"$6E_t1cCQMwNcLvHjEADaIy6R2xRU6qRmSoA2MExfmYo","part_id":"","time":"2026-03-06T19:22:56.34792583Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1797","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:56.380809636Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1797","time":"2026-03-06T19:22:56.381076084Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:56.402959184Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4150,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976019466663_42?ts=1772814440000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":428.224987,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"Voice message.ogg","info":{"duration":83000,"mimetype":"audio/ogg; codecs=opus","size":190000},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":83000,"waveform":[19,65,82,97,84,67,80,35,73,88,69,64,66,56,86,54,71,94,71,83,41,38,91,93,77,63,88,56,4,78,79,51,52,39,64,74,85,45,26,95,53,62,68,10,55,74,79,56,56,71,77,72,50,42,65,40,30,9,97,76,39,14,19,9]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/reEMjFQhvZZuZaOROqVcUzDl"},"time":"2026-03-06T19:22:56.448060627Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A92EEF6E5229944B6C4","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-06T16:27:20Z","event_id":"$Tuc6jHbSRDRhDdKDJmZCBHdfmS5a_y16c_6Te3p9jzo","part_id":"","time":"2026-03-06T19:22:56.448326167Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4157,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":243.86936,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<73409 bytes>","time":"2026-03-06T19:22:56.449680757Z","message":"Request completed"} +{"level":"debug","transaction_id":"1798","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:56.460927936Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1798","time":"2026-03-06T19:22:56.461059169Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4170,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-224927957410033:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":47.378858,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:56.497453315Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4171,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/pRZshXqBfCrhzBxwISlhmuiI?user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":28.030261,"status_code":200,"response_length":73409,"response_mime":"image/jpeg","time":"2026-03-06T19:22:56.525661115Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA2F4552846D5B5C4E4","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA2F4552846D5B5C4E4","req_id":4153,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976090849519_38?ts=1772824972000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":471.931751,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":82142,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":82142,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/YIgmTeBOYJbJERWaleBDfRmh"},"m.relates_to":{"event_id":"$6sNTbKe-27rMgcc44ru2IIL1uAMF5mCPvakt1uLRW4Y","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/YIgmTeBOYJbJERWaleBDfRmh"},"time":"2026-03-06T19:22:56.563137116Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA2F4552846D5B5C4E4","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA2F4552846D5B5C4E4","event_id":"$TBvxIZ9KV5HwED-ooD7gih4unsrOavIAitsROyClq08","part_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3AA2F4552846D5B5C4E4","time":"2026-03-06T19:22:56.563412225Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3210434A9C9C6ADDC0","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A3210434A9C9C6ADDC0","time":"2026-03-06T19:22:56.564422911Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1799","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:56.575810683Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1799","time":"2026-03-06T19:22:56.575985149Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4154,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976128593016_436?ts=1770383734000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":451.407851,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"I see","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.58016737Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0F72DC421E36A97D72","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-06T13:15:34Z","event_id":"$0Bm36Yub5guh5C_xBv3JNEJYV4CPu_c6fRNWKioQ2G0","part_id":"","time":"2026-03-06T19:22:56.580381087Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4155,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976136166704_12?ts=1772480632000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":467.754279,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber der genaue plan wurde ja gestern um 23:35 erst erstellt, wo ich schon auf wolke sieben war 😴😴😴","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$TiqQW2H1jzVThnvwCoUB8V3Fkk88EZSmSjJCaXECJ2g"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.60407764Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3ADA0C0CBBEA5E1350E5","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:43:52Z","event_id":"$nM8us5U7btvH7_nL3BmtmBLI4KeUbN8AzigEXcPAZ_Q","part_id":"","time":"2026-03-06T19:22:56.604252944Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-224927957410033:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":86.427286,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pRZshXqBfCrhzBxwISlhmuiI"},"time":"2026-03-06T19:22:56.612308823Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4156,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976160125165_437?ts=1770586040000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":461.894937,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.622177527Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9BD9C81249022DFC1D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:27:20Z","event_id":"$SGN3h6kw0suecVrwpksrcm_3Rd2O1FjoQ9_ZmLg0P90","part_id":"","time":"2026-03-06T19:22:56.622363587Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4176,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915226672180%3Amatrix.theocloud.dev","duration":29.406851,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915226672180","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:56.642534156Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4167,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915756437140%3Amatrix.theocloud.dev","duration":303.43233,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40797 bytes>","time":"2026-03-06T19:22:56.654270859Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4178,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226672180:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915226672180%3Amatrix.theocloud.dev","duration":19.981716,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:56.662875698Z","message":"Request completed"} +{"level":"debug","transaction_id":"1800","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:56.664829045Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1800","time":"2026-03-06T19:22:56.665020622Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4179,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915756437140:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915756437140%3Amatrix.theocloud.dev","duration":19.303687,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:56.674018603Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4181,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/OGQCDfXjrkoSIzoqsNZHhoyH?user_id=%40whatsapp_4915756437140%3Amatrix.theocloud.dev","duration":16.058819,"status_code":200,"response_length":40797,"response_mime":"image/jpeg","time":"2026-03-06T19:22:56.690260827Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4168,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-57879650386021%3Amatrix.theocloud.dev","duration":300.845863,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<31093 bytes>","time":"2026-03-06T19:22:56.717872245Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4182,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915756437140:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915756437140%3Amatrix.theocloud.dev","duration":60.845553,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OGQCDfXjrkoSIzoqsNZHhoyH"},"time":"2026-03-06T19:22:56.751439178Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:56.752522431Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4183,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-57879650386021:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-57879650386021%3Amatrix.theocloud.dev","duration":40.696216,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:56.758947215Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4184,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491773825063%3Amatrix.theocloud.dev","duration":36.944222,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491773825063","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:56.789806086Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4185,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ojsJCoIPlkzmQdwaaGSxSSqE?user_id=%40whatsapp_lid-57879650386021%3Amatrix.theocloud.dev","duration":33.274014,"status_code":200,"response_length":31093,"response_mime":"image/jpeg","time":"2026-03-06T19:22:56.792388083Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4186,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491773825063:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491773825063%3Amatrix.theocloud.dev","duration":28.774221,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:56.819010465Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4187,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-57879650386021:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-57879650386021%3Amatrix.theocloud.dev","duration":54.793515,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ojsJCoIPlkzmQdwaaGSxSSqE"},"time":"2026-03-06T19:22:56.847418084Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4180,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226672180:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915226672180%3Amatrix.theocloud.dev","duration":185.491402,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Esther (WA)"},"time":"2026-03-06T19:22:56.848531788Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:56.848573624Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:56.849543522Z","message":""} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3210434A9C9C6ADDC0","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A3210434A9C9C6ADDC0","req_id":4173,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":284.046647,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<106160 bytes>","time":"2026-03-06T19:22:56.862060223Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4164,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976300451847_44?ts=1772118700000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":575.486581,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"Voice message.ogg","info":{"duration":24000,"mimetype":"audio/ogg; codecs=opus","size":57122},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":24000,"waveform":[3,13,31,21,41,60,21,24,15,28,46,22,13,23,21,19,79,43,15,10,14,64,56,66,47,56,44,43,66,42,35,25,34,17,27,43,34,49,17,46,44,45,47,68,68,41,19,51,59,63,35,50,43,30,34,23,32,86,32,8,25,27,31,52]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/wwgeZhpLYJiFYQMiTarrqmkV"},"time":"2026-03-06T19:22:56.876381577Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A60EF097FD7E2B380A2","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T15:11:40Z","event_id":"$wf6IUQTsjVohmrgOgSxnw9oz7HlpFFemnjhs1sr6iBs","part_id":"","time":"2026-03-06T19:22:56.876548361Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4165,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976334642471_39?ts=1772620018000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":542.687424,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"sorry man","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.877447649Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3EB0BF061501B2EB65D005","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-04T10:26:58Z","event_id":"$8YZvzBDmTxp-JEOGQPQl6Zc-rh_Ao6KUgzMHYvG3PmE","part_id":"","time":"2026-03-06T19:22:56.877563517Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4189,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-280491597000719%3Amatrix.theocloud.dev","duration":35.797692,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-280491597000719","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:56.886936411Z","message":"Request completed"} +{"level":"debug","transaction_id":"1801","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:56.890523367Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1801","time":"2026-03-06T19:22:56.890621635Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4166,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976349664342_44?ts=1772458166000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":545.038243,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dann muss ich nicht den Dip-Bar nehmen für die Dragon raises","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:56.894838498Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC53445EB91F80A8555570C079C533C","sender_id":{"user_id":"4917657607100"},"message_ts":"2026-03-02T13:29:26Z","event_id":"$bBvW3W7VpJv44TQqNetLuI2m4PhHLhTJCIebNy5iAVg","part_id":"","time":"2026-03-06T19:22:56.894941166Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","req_id":4160,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev?ts=1772824976247&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":685.350328,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:56.933084509Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:22:56.933524096Z","message":"Added portal to space"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4193,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-280491597000719:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-280491597000719%3Amatrix.theocloud.dev","duration":49.414199,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:56.936728247Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4161,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.space.child/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev?ts=1772824976247&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":704.525157,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:22:56.954069299Z","message":"Request completed"} +{"level":"debug","transaction_id":"1802","content":{"pdu":5,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:56.981135947Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1802","time":"2026-03-06T19:22:56.981294699Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4169,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976449429115_438?ts=1772814562000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":566.198057,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"I seee, aber nicht schlimm wir ziehen morgen beim Legday durch :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.015795003Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD1923031E4A2530927","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T16:29:22Z","event_id":"$RhCTqwXhHp_mgpjwqhuXMTGpmeyurz62aU3v0bJQctU","part_id":"","time":"2026-03-06T19:22:57.015952008Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4188,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491773825063:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491773825063%3Amatrix.theocloud.dev","duration":213.194314,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491773825063 (WA)"},"time":"2026-03-06T19:22:57.032448667Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.033313872Z","message":""} +{"level":"debug","transaction_id":"1803","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.049950496Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1803","time":"2026-03-06T19:22:57.050064548Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4163,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-164154254037235:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":791.722941,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OqadHlzzFlAlRDjFzlCDaSvl","com.beeper.exclude_from_timeline":true,"displayname":"+491723092920 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:57.087372788Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4174,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976581604932_439?ts=1771000945000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":514.711918,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mein Bester, wann kommst denn wieder zum Training, vermiss dich schon :(","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.096484612Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD71EAFB41BFF08D0D4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-13T16:42:25Z","event_id":"$qAwF2JDdg5JQgqbba0zwvgYOqXQbwtPS66dzruAzxFE","part_id":"","time":"2026-03-06T19:22:57.096634982Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4195,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-280491597000719:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-280491597000719%3Amatrix.theocloud.dev","duration":166.53064,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+31613688070 (WA)"},"time":"2026-03-06T19:22:57.103486572Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.104483081Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4175,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976605311821_13?ts=1772480663000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":502.443786,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Und wir haben uns heute noch nicht gesehen!!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.107950677Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A9A2A4A8A76D5CAB494","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:44:23Z","event_id":"$JMBRtX-yU1AIDHvuRVJ6sjqfY9HhUkMSBHm1656Xy3Q","part_id":"","time":"2026-03-06T19:22:57.108045522Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4177,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976623289764_31?ts=1770586865000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":501.381975,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":464,"h":832,"duration":15000,"size":2426588},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"6lvVTrrCFNYQkHgEglOWSkuS1F0228J2436Q7iGCecw=","length":2426588,"type":"WhatsApp Video Keys","sha256":"1cjnZsrVZHAt8agpVZVQ+bAY3KjWrzVbHHf+abmM9O8=","enc_sha256":"RrLCcH6HcD7Nr1pDukfqXNGiYTViE+xZZMCg+cohBvQ=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:57.124977438Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A007C5046203D3CC77A","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:41:05Z","event_id":"$FNAIcULJxU8Eq5fbV__7FKOZ-2GvdjYaWGo14MXqWyA","part_id":"","time":"2026-03-06T19:22:57.125232711Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1804","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.148558681Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1804","time":"2026-03-06T19:22:57.148681743Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.174059468Z","message":""} +{"level":"debug","transaction_id":"1805","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.178716406Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1805","time":"2026-03-06T19:22:57.179094602Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.200291013Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.265565749Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4192,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976878118344_440?ts=1772620033000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":422.737206,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"hab jetzt Schluss und bin in ner Stunde da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.300964154Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7902CD2DEE92B1A314","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T10:27:13Z","event_id":"$zGMxO9MJHqnE4kmgXn0UoP965eZ7UH9KeLEX7IzQtSk","part_id":"","time":"2026-03-06T19:22:57.301072619Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","req_id":4194,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976895649436_441?ts=1772459033000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":415.472079,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Immerhin das","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.311283549Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9E607D16CB469CEDE3","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T13:43:53Z","event_id":"$4OUjZ29pRkSbGb9Dp1Fluey0pxw41poLIJbBsKRuLGQ","part_id":"","time":"2026-03-06T19:22:57.311492378Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:57.31335933Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","time":"2026-03-06T19:22:57.313436575Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.314088203Z","message":"5caad90d89ffe44c73781b5163e0ff02883375333c2c3786ec326917081c589247eb7c855490bdebf301b273af1d4a4e2dea"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC765CED2DF7AB1D5FD","time":"2026-03-06T19:22:57.314240249Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.314807368Z","message":"83ef59e3ba38e138adbd1cc58fa663ce959e7d051c253085b3f1fdf6a89e949fccfcc7a95a08bb10c4f36c0a5063bab619c9b38e4872da9c2bacd443803d"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC4293F6E712DCDA8F09F81BB7E3976","time":"2026-03-06T19:22:57.314932316Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.315423656Z","message":"faf82aa9e229aa1ca6c940476766b81245035ae7fb2f418bb5f22cfb3cf9fd721936d7cfc3d0e89a154474360bbf5324ae84"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFB8DB331C1CD0F97F8","time":"2026-03-06T19:22:57.315525346Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.315984977Z","message":"1375d908edb6843492b8b49f2c37ed5d01d4bfa4f86faa182fb83aa78167b075bb4b9ee2007adc6b6acb4d4df996dbe1b8322cc056838c7c2293603423e2"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC7732AC5C010CA3E6BDC09B7A72EA2","time":"2026-03-06T19:22:57.316079404Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917657607100@s.whatsapp.net","latest_message_ts":"2026-03-02T13:43:53Z","started_at":"2026-03-06T19:22:00.507114984Z","duration":"56.809521552s","time":"2026-03-06T19:22:57.316659374Z","message":"Event that took long finished handling"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3210434A9C9C6ADDC0","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A3210434A9C9C6ADDC0","req_id":4190,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976862474667_39?ts=1772824972000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":457.319644,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":106160,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":106160,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/DAOkTndIUnlewRSRdkuTyPMT"},"m.relates_to":{"event_id":"$NwuCQ9pO42rt9l3fFNjgTmN031OaXkgbfETlhcFJgHY","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/DAOkTndIUnlewRSRdkuTyPMT"},"time":"2026-03-06T19:22:57.320034638Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3210434A9C9C6ADDC0","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A3210434A9C9C6ADDC0","event_id":"$shAMyFpRF2JQLhUih5jlollzfhhUZyOP8VQT6u-WAtY","part_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A3210434A9C9C6ADDC0","time":"2026-03-06T19:22:57.320432809Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A60839E8F41DE22F400","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A60839E8F41DE22F400","time":"2026-03-06T19:22:57.321958023Z","message":"Handling remote event"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4191,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824976877266478_45?ts=1772125034000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":465.530154,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich probiere aber mal Mullvad über mein Server zu bekommen, dass ich dann nur ein Platz waste und am Handy und allen anderen Geräten direkt auch VPN habe","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.342937225Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AFD6A772BDAC5B81EA1","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T16:57:14Z","event_id":"$lzqGisj5m4n727diaNx9LZHQzMU8iLfOWCrww657dgQ","part_id":"","time":"2026-03-06T19:22:57.343039823Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.357712413Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.359193766Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.359902595Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.360641945Z","message":""} +{"level":"debug","transaction_id":"1806","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.371239382Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1806","time":"2026-03-06T19:22:57.371351898Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4197,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977016871550_43?ts=1772814607000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":402.366748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"Voice message.ogg","info":{"duration":24000,"mimetype":"audio/ogg; codecs=opus","size":55685},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":24000,"waveform":[0,28,100,90,85,90,77,55,95,63,74,43,6,1,25,95,76,19,35,99,97,53,100,39,82,63,100,78,44,54,73,28,60,90,77,37,35,41,7,50,31,38,60,87,68,46,51,12,28,59,54,27,60,54,50,21,20,31,18,40,31,17,22,4]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/HhPdlleRmlxYjBmOCiZJadYs"},"time":"2026-03-06T19:22:57.419610139Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A5CBFF19D35BD12251C","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-06T16:30:07Z","event_id":"$N1RFuwd8Q5Gykzvxfqq2P182oe7onW862LamlQ_4APU","part_id":"","time":"2026-03-06T19:22:57.419780204Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4202,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915226672180%3Amatrix.theocloud.dev","duration":252.212709,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<73409 bytes>","time":"2026-03-06T19:22:57.435461316Z","message":"Request completed"} +{"level":"debug","transaction_id":"1807","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.449376189Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1807","time":"2026-03-06T19:22:57.449542273Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4209,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226672180:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915226672180%3Amatrix.theocloud.dev","duration":31.262978,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:57.467159621Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4203,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491773825063%3Amatrix.theocloud.dev","duration":281.084779,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<60930 bytes>","time":"2026-03-06T19:22:57.493737933Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4210,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/bVFcOrGeakYesRixIYPfPlNQ?user_id=%40whatsapp_4915226672180%3Amatrix.theocloud.dev","duration":26.583201,"status_code":200,"response_length":73409,"response_mime":"image/jpeg","time":"2026-03-06T19:22:57.493916729Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4199,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977097498232_31?ts=1771003399000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":411.210098,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Morgen wieder da 😘","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.508846967Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A277ECC9F90A09ED3C0","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-13T17:23:19Z","event_id":"$H_dfu_FPN5kc7YSwEiiN3ph-VzEiIVX5XCZAwP1yjWY","part_id":"","time":"2026-03-06T19:22:57.508973242Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4196,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.space.parent/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev?ts=1772824976954&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":558.011223,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"],"canonical":true},"time":"2026-03-06T19:22:57.512603011Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4200,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977108670331_20?ts=1772480887000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":419.923403,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok, aber wenn Chrissi ja einen echten Termin hat und ich mit meinem Papa verabredet bin, stellt ihr euch dann trotzdem aus Prinzip quer? Das versteh ich nicht ganz ):","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.528736561Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AAC8C21C54C6982FAFB","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-02T19:48:07Z","event_id":"$QMC7tqIE38DoCx3WXjlqaWZWppp87gMmQYn1Ww3YVzI","part_id":"","time":"2026-03-06T19:22:57.528931001Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4211,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491773825063:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491773825063%3Amatrix.theocloud.dev","duration":35.052686,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:57.529235444Z","message":"Request completed"} +{"level":"debug","transaction_id":"1808","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.534875621Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1808","time":"2026-03-06T19:22:57.535009229Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4201,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977126169016_442?ts=1770586910000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":426.47523,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Man kann die Gainz einfach hören crazy haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.552795455Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A8809398DC3A866418B","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:41:50Z","event_id":"$dUGGIrlRYFClJvDQNfJK4OzXBdeCXQ78_1KphoshHwc","part_id":"","time":"2026-03-06T19:22:57.552942193Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4214,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/sQkWeSXAHnZzilBFQnxhSKXB?user_id=%40whatsapp_491773825063%3Amatrix.theocloud.dev","duration":28.892114,"status_code":200,"response_length":60930,"response_mime":"image/jpeg","time":"2026-03-06T19:22:57.558324094Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4212,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226672180:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915226672180%3Amatrix.theocloud.dev","duration":75.841442,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/bVFcOrGeakYesRixIYPfPlNQ"},"time":"2026-03-06T19:22:57.570057236Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"224927957410033@lid","alternate_jid":"4915226672180@s.whatsapp.net","time":"2026-03-06T19:22:57.57066619Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"88369103143137@lid","time":"2026-03-06T19:22:57.571008137Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4218,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-88369103143137%3Amatrix.theocloud.dev","duration":20.876813,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-88369103143137","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:57.592150421Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A60839E8F41DE22F400","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A60839E8F41DE22F400","req_id":4205,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":263.340668,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<123384 bytes>","time":"2026-03-06T19:22:57.600343261Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4217,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491773825063:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491773825063%3Amatrix.theocloud.dev","duration":46.354552,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sQkWeSXAHnZzilBFQnxhSKXB"},"time":"2026-03-06T19:22:57.60493811Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:57.605767486Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1809","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.612373441Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1809","time":"2026-03-06T19:22:57.612522694Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4219,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88369103143137:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-88369103143137%3Amatrix.theocloud.dev","duration":24.297335,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:57.616822669Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4221,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491735440250%3Amatrix.theocloud.dev","duration":30.733853,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491735440250","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:57.636784759Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4207,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-280491597000719%3Amatrix.theocloud.dev","duration":272.80757,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<78312 bytes>","time":"2026-03-06T19:22:57.639176366Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4223,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735440250:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491735440250%3Amatrix.theocloud.dev","duration":15.273233,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:57.652433394Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4224,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-280491597000719:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-280491597000719%3Amatrix.theocloud.dev","duration":16.517961,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:57.6560339Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4198,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-164154254037235:matrix.theocloud.dev?user_id=%40whatsapp_lid-164154254037235%3Amatrix.theocloud.dev","duration":584.067464,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OqadHlzzFlAlRDjFzlCDaSvl","com.beeper.exclude_from_timeline":true,"displayname":"+491723092920 (WA)","membership":"join"},"time":"2026-03-06T19:22:57.672228561Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4226,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LnqFEnlpSGUlUjogXollyQuW?user_id=%40whatsapp_lid-280491597000719%3Amatrix.theocloud.dev","duration":25.386874,"status_code":200,"response_length":78312,"response_mime":"image/jpeg","time":"2026-03-06T19:22:57.681545302Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4228,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-280491597000719:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-280491597000719%3Amatrix.theocloud.dev","duration":39.437031,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LnqFEnlpSGUlUjogXollyQuW"},"time":"2026-03-06T19:22:57.721279651Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:57.722275601Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1810","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.738211637Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1810","time":"2026-03-06T19:22:57.738508536Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4229,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-240191784673511%3Amatrix.theocloud.dev","duration":17.966558,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-240191784673511","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:57.740530328Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4204,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977301693027_40?ts=1772620040000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":458.82181,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"toop","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.760627074Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3EB0A19A4956FDCCF2AE0D","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-04T10:27:20Z","event_id":"$owTUpmXFo5WpMavptMZ8j0ySnr1WB89KogYchyrRGg8","part_id":"","time":"2026-03-06T19:22:57.760743431Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4222,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88369103143137:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-88369103143137%3Amatrix.theocloud.dev","duration":151.417275,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"leonie (WA)"},"time":"2026-03-06T19:22:57.768394645Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.769084616Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4230,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-240191784673511:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-240191784673511%3Amatrix.theocloud.dev","duration":33.814314,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:57.774683796Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4225,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735440250:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491735440250%3Amatrix.theocloud.dev","duration":160.930133,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Michael Spaller (WA)"},"time":"2026-03-06T19:22:57.813538901Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.814227126Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4206,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977343645006_46?ts=1772125040000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":472.514724,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"unterwegs brauch ich eh kein VPN","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.816290404Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A5DBC52C33F21D960E3","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T16:57:20Z","event_id":"$R_t1UkapO62pVmUIf5sb34RWas2_wH6zRkrKzuismy4","part_id":"","time":"2026-03-06T19:22:57.81644266Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1811","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.83699331Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1811","time":"2026-03-06T19:22:57.837094652Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4208,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977420700166_443?ts=1772814608000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":458.11829,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber mich wunderts, dass alle nach mir gefragt haben, obwohl alle die gefragt haben wissen, dass ich heute spät Vorlesung hab haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.87896687Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB868BB7B8D8C3AD941","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T16:30:08Z","event_id":"$MKzCzYGimHhsRmInGqbmAEytQ-rpVDjD7Z_F6zC2N9s","part_id":"","time":"2026-03-06T19:22:57.879101037Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1812","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:57.902321895Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1812","time":"2026-03-06T19:22:57.902453058Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.92481786Z","message":"277c243241ceac503a648bf3"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4232,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-240191784673511:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-240191784673511%3Amatrix.theocloud.dev","duration":150.155576,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491755557540 (WA)"},"time":"2026-03-06T19:22:57.925060841Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.925672938Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"ACC4293F6E712DCDA8F09F81BB7E3976","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917657607100"},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC4293F6E712DCDA8F09F81BB7E3976","time":"2026-03-06T19:22:57.925774139Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.928360117Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.935182373Z","message":"2d2ab80c02ae5d0f0b470061"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:57.935831906Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4213,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977509824688_444?ts=1771003594000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":432.487527,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geilll","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.942461887Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3A862D3E879633B4EA","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-13T17:26:34Z","event_id":"$hXg2z4ZPEu_rPSdjAthbgpoZmM4bym1y_CAAKS0HS-Y","part_id":"","time":"2026-03-06T19:22:57.942616098Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4216,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977553886739_445?ts=1770586914000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":418.148293,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Masse","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.972180793Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A86620469F18497C98F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:41:54Z","event_id":"$fgws1laZgWO4QvN26x6BMQUdaaeiZwqcw_PPP2iOYQU","part_id":"","time":"2026-03-06T19:22:57.972311747Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4215,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977530513486_2?ts=1772481103000&user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":450.092023,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Was großen auf der Spur!","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$rCEaJnsHwZasTjDEvqu4B-Tv8DnPTmLFpICn65bMjgU"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:57.980745962Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:127753970032737@lid:3AB45336CB9CAA7CD812","sender_id":{"user_id":"lid-127753970032737","sender_login":"491753774472"},"message_ts":"2026-03-02T19:51:43Z","event_id":"$XVIiob--8H2msD1GBiaT3xt6DeC0Mp6FMuI3e8WBxEk","part_id":"","time":"2026-03-06T19:22:57.980852402Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:57.983923154Z","message":""} +{"level":"debug","transaction_id":"1813","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.011015924Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1813","time":"2026-03-06T19:22:58.011105601Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A60839E8F41DE22F400","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A60839E8F41DE22F400","req_id":4220,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977600780613_40?ts=1772824972000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":445.840729,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":123384,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":123384,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/XEFHFpreokejElvzERbescHZ"},"m.relates_to":{"event_id":"$gGLSSqlGPU2LSLmcgFuBOx21QDTT4UkedONpnm8aWtQ","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/XEFHFpreokejElvzERbescHZ"},"time":"2026-03-06T19:22:58.046901618Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A60839E8F41DE22F400","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A60839E8F41DE22F400","event_id":"$1ckYKu8SWaNWwq04czlt4kERHLMZ7YpP3LoOVVjWyi8","part_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A60839E8F41DE22F400","time":"2026-03-06T19:22:58.047073988Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A2C6F27B9AFAB5105A6","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A2C6F27B9AFAB5105A6","time":"2026-03-06T19:22:58.047581392Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1814","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.062920836Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1814","time":"2026-03-06T19:22:58.063054583Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:58.084680734Z","message":""} +{"level":"debug","transaction_id":"1815","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.085889353Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1815","time":"2026-03-06T19:22:58.086025825Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:58.090499916Z","message":"10ac1b0335830e717eb1f9d7"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:58.091032673Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:58.091956476Z","message":"4120e5547cab6177f77ce02e"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:58.092506902Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4231,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977761579582_446?ts=1772620041000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":356.473155,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"genau dieses Glück mein ich","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.118191723Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3A5D9989124F78F8D775","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T10:27:21Z","event_id":"$xb7_XNOoLH6SysEGXl5HXzT-fLYovjJFzju4hJLcdOY","part_id":"","time":"2026-03-06T19:22:58.11836109Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"ACC4293F6E712DCDA8F09F81BB7E3976","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917657607100"},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC4293F6E712DCDA8F09F81BB7E3976","req_id":4235,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":221.709056,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<16798 bytes>","time":"2026-03-06T19:22:58.1563952Z","message":"Request completed"} +{"level":"debug","transaction_id":"1816","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.169886899Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1816","time":"2026-03-06T19:22:58.169985586Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4233,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977817734532_447?ts=1772125270000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":370.880974,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Das wäre stark true","m.mentions":{"user_ids":["@whatsapp_4917620338641:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$lzqGisj5m4n727diaNx9LZHQzMU8iLfOWCrww657dgQ"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.188766504Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9F68E5424D86814B3D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T17:01:10Z","event_id":"$rLu32EI_cjY6BpP87SqoBRbRgbxAfWZnSQVGEIQBp28","part_id":"","time":"2026-03-06T19:22:58.188942297Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4239,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491735440250%3Amatrix.theocloud.dev","duration":227.678818,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<119078 bytes>","time":"2026-03-06T19:22:58.22137171Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4234,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977880417423_448?ts=1772814647000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":345.382911,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok das ist hart ja, dann wunderts mich auch nicht, aber wie gesagt wird morgen wieder besser","m.mentions":{"user_ids":["@whatsapp_4915903048642:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$N1RFuwd8Q5Gykzvxfqq2P182oe7onW862LamlQ_4APU"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.225940018Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADE3BD56F14395941C5","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T16:30:47Z","event_id":"$UV2VLIKdwW3bKcQdBKJrNuHZlAz8rLoEY83NMhou0Sk","part_id":"","time":"2026-03-06T19:22:58.226091646Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4227,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-213782164934732:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":554.457302,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sZRTWDsCVppDcOBbALHkvEyY","com.beeper.exclude_from_timeline":true,"displayname":"+491639153989 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:58.227567062Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4244,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735440250:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491735440250%3Amatrix.theocloud.dev","duration":23.267162,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:58.245089355Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:58.260737431Z","message":""} +{"level":"debug","transaction_id":"1817","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.266681631Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1817","time":"2026-03-06T19:22:58.266809652Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4247,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/aIXTCiODBNLLqPIioFvCfOfh?user_id=%40whatsapp_491735440250%3Amatrix.theocloud.dev","duration":26.918933,"status_code":200,"response_length":119078,"response_mime":"image/jpeg","time":"2026-03-06T19:22:58.272132466Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4248,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-88369103143137:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-88369103143137%3Amatrix.theocloud.dev","duration":24.49904,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:58.285612501Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4236,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977943506028_32?ts=1771009554000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":372.238776,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old sticker. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.sticker","content":{"body":"","info":{"mimetype":"image/webp","w":190,"h":190,"size":467422},"filename":"sticker.webp"},"extra":{"info":{}},"whatsapp_media":{"key":"R+CxCHfc8ytQI04b0xoNb7SGirkjFFjnvIaDAXt6ep4=","length":467422,"type":"WhatsApp Image Keys","sha256":"o6TYxR/GW6uVjqgZHhzLVf7/kMsV5l7IKxnGCHWByE4=","enc_sha256":"iaLjhhFOCuxMhAIxiLqN7uru2q5dT2Ii5QbcN5elYNA=","mime_type":"image/webp"},"type_description":"sticker"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:22:58.31602515Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A06DB20C328004C79F8","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-13T19:05:54Z","event_id":"$_wwS8FNTihnUJfldz9QlXhMd-T7Lu0QdG6etTjiXZmo","part_id":"","time":"2026-03-06T19:22:58.316222734Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4250,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-228681305870497%3Amatrix.theocloud.dev","duration":37.300697,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-228681305870497","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:58.32389965Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4249,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735440250:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491735440250%3Amatrix.theocloud.dev","duration":59.888854,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/aIXTCiODBNLLqPIioFvCfOfh"},"time":"2026-03-06T19:22:58.332301388Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4240,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-240191784673511%3Amatrix.theocloud.dev","duration":264.6185,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<91208 bytes>","time":"2026-03-06T19:22:58.360819078Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4237,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977972905406_449?ts=1770586920000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":393.640244,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Progress","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.366643708Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3ABC0ABBFC932F82CCD0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:42:00Z","event_id":"$qOdpSH2O4Q9d1EWFtQzKr2PN7Niorq-ho0dB-aljEAQ","part_id":"","time":"2026-03-06T19:22:58.366733805Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1818","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.369400799Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1818","time":"2026-03-06T19:22:58.369700981Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4252,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-228681305870497:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-228681305870497%3Amatrix.theocloud.dev","duration":50.673943,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:58.374934397Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4238,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824977981830123_450?ts=1772481110000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":408.762688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Darum gehts glaube nicht, ich würd auch sagen ich bin eig mit 15 uhr fine, aber hab gestern noch nicht so ganz realisiert, was das dann an Fahrweg wird insgesamt, I mean gut für Domi, damit er auch dabei sein kann, aber trz kacke irgendwie find ich","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$QMC7tqIE38DoCx3WXjlqaWZWppp87gMmQYn1Ww3YVzI"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.390713568Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A85B728698D2F39966A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:51:50Z","event_id":"$nQ9rOJvxWMzH3PO3FPqQsQU9YOp3os-F6lBntF2gs-o","part_id":"","time":"2026-03-06T19:22:58.39085409Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4255,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-240191784673511:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-240191784673511%3Amatrix.theocloud.dev","duration":32.783373,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:58.393893483Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4259,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/IBymwEgSEooqlcbYkzrNxriI?user_id=%40whatsapp_lid-240191784673511%3Amatrix.theocloud.dev","duration":17.807807,"status_code":200,"response_length":91208,"response_mime":"image/jpeg","time":"2026-03-06T19:22:58.411864861Z","message":"Request completed"} +{"level":"debug","transaction_id":"1819","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.423683699Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1819","time":"2026-03-06T19:22:58.423817237Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4260,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-240191784673511:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-240191784673511%3Amatrix.theocloud.dev","duration":29.590886,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IBymwEgSEooqlcbYkzrNxriI"},"time":"2026-03-06T19:22:58.441821021Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:58.442821651Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4261,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-211883705536588%3Amatrix.theocloud.dev","duration":13.742851,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-211883705536588","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:58.456871249Z","message":"Request completed"} +{"level":"debug","transaction_id":"1820","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:58.471322719Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1820","time":"2026-03-06T19:22:58.471475813Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4262,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-211883705536588:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-211883705536588%3Amatrix.theocloud.dev","duration":22.579915,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:58.479855411Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4257,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-228681305870497:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-228681305870497%3Amatrix.theocloud.dev","duration":113.005458,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"MM (WA)"},"time":"2026-03-06T19:22:58.488076677Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:58.488875532Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4241,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978119313668_451?ts=1772620049000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":415.09116,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"so ein Glück hatte ich noch nie","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.534584392Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3ADA74F38B89B918E717","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T10:27:29Z","event_id":"$qU5MysNkz5Jb0NWlwT6PkZalAAeNYIOhbWBpUqJut4k","part_id":"","time":"2026-03-06T19:22:58.534754039Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"ACC4293F6E712DCDA8F09F81BB7E3976","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917657607100"},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC4293F6E712DCDA8F09F81BB7E3976","req_id":4242,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978156836952_45?ts=1772824977000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":430.550034,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":16798,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":16798,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/apEahBKJUsEAqelbKTDGHboD"},"m.relates_to":{"event_id":"$ZApyc4o4kWuULjAgGrSvXz6vMDoKeL6XwZ1jUN8mayE","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/apEahBKJUsEAqelbKTDGHboD"},"time":"2026-03-06T19:22:58.587670336Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"ACC4293F6E712DCDA8F09F81BB7E3976","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917657607100"},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC4293F6E712DCDA8F09F81BB7E3976","event_id":"$nSNlAWeyvFVhpIRlCNGEMWlu55cJoEYA5yu-2QVD-5c","part_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC4293F6E712DCDA8F09F81BB7E3976","time":"2026-03-06T19:22:58.587862612Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AC765CED2DF7AB1D5FD","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC765CED2DF7AB1D5FD","time":"2026-03-06T19:22:58.588641981Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1821","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.604640875Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1821","time":"2026-03-06T19:22:58.604750667Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4263,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-211883705536588:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-211883705536588%3Amatrix.theocloud.dev","duration":144.190143,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917681125611 (WA)"},"time":"2026-03-06T19:22:58.624260668Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:58.625062806Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4243,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978189897319_47?ts=1772125353000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":444.963509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"jaaa","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.635080553Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AF2ABDF0D1C0965F600","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T17:02:33Z","event_id":"$yYvFJMcGNQYQGWRcY_jxUazctUiARaKOPr8mlbQ7k4o","part_id":"","time":"2026-03-06T19:22:58.635208085Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4245,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978227703534_44?ts=1772814687000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":411.210378,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂","m.mentions":{"user_ids":["@whatsapp_4917641870516:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$MKzCzYGimHhsRmInGqbmAEytQ-rpVDjD7Z_F6zC2N9s"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.639043958Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3A4C82E0CDA040435D47","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-06T16:31:27Z","event_id":"$5pBv7Ps5A5ymFxqke275j95eFm4mlkujMR86bn6VWOA","part_id":"","time":"2026-03-06T19:22:58.639176379Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A2C6F27B9AFAB5105A6","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A2C6F27B9AFAB5105A6","req_id":4254,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":298.875125,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<111768 bytes>","time":"2026-03-06T19:22:58.643311247Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:58.648427678Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4269,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-228681305870497:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-228681305870497%3Amatrix.theocloud.dev","duration":22.271632,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:58.670985453Z","message":"Request completed"} +{"level":"debug","transaction_id":"1822","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.673733954Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1822","time":"2026-03-06T19:22:58.6738816Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4270,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915203917467%3Amatrix.theocloud.dev","duration":16.352156,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915203917467","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:58.688391737Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4251,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978317124048_33?ts=1771595465000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":397.7052,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bin so 17-17:30 da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.714970049Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AD0DEA1D32C430FE751","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-20T13:51:05Z","event_id":"$4wCNStkZUYtRFs_BwKzxDu8ruYHZmCih7CgYa8FuYK8","part_id":"","time":"2026-03-06T19:22:58.715137461Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4271,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915203917467:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915203917467%3Amatrix.theocloud.dev","duration":33.770103,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:58.722545694Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4256,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978367257272_452?ts=1770586921000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":383.864849,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geil","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.751243507Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACB27B134D77A831989","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:42:01Z","event_id":"$yTkU9b-NRk4QrAmLPW-IQOUa39QamXJfuoBILl3pybc","part_id":"","time":"2026-03-06T19:22:58.751378163Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4258,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978392299475_453?ts=1772481219000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":370.26748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"und ich würd auch nicht sagen, dass ich mich aus Prinzip quer stelle, sondern weil ich einfach nicht so Lust hab 1h zur Uni hin, 1h-1,5h nach Hause, direkt wieder los, 1-1,5h zur Eastside Mall zu fahren","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$QMC7tqIE38DoCx3WXjlqaWZWppp87gMmQYn1Ww3YVzI"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.762777878Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3AADBC1BDD75AA667486","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-02T19:53:39Z","event_id":"$5Ksb7ncBcODXeXW2D-HNK4QJ7pH8GLTpP9vWva8aKno","part_id":"","time":"2026-03-06T19:22:58.762898914Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:58.781993145Z","message":""} +{"level":"debug","transaction_id":"1823","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.792490778Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1823","time":"2026-03-06T19:22:58.792584227Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4246,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-213782164934732:matrix.theocloud.dev?user_id=%40whatsapp_lid-213782164934732%3Amatrix.theocloud.dev","duration":571.564312,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sZRTWDsCVppDcOBbALHkvEyY","com.beeper.exclude_from_timeline":true,"displayname":"+491639153989 (WA)","membership":"join"},"time":"2026-03-06T19:22:58.799880013Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:58.800554969Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4276,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-211883705536588:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-211883705536588%3Amatrix.theocloud.dev","duration":22.376955,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:58.80467971Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:58.805436869Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4277,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491639153989%3Amatrix.theocloud.dev","duration":26.263323,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491639153989","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:58.827023419Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4278,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-12730350215211%3Amatrix.theocloud.dev","duration":23.262902,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-12730350215211","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:58.828875005Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4279,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639153989:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639153989%3Amatrix.theocloud.dev","duration":17.23545,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:58.844598512Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4280,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12730350215211:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12730350215211%3Amatrix.theocloud.dev","duration":16.380791,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:22:58.845542988Z","message":"Request completed"} +{"level":"debug","transaction_id":"1824","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.847034747Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1824","time":"2026-03-06T19:22:58.847138323Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AC765CED2DF7AB1D5FD","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC765CED2DF7AB1D5FD","req_id":4265,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":250.417835,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<18112 bytes>","time":"2026-03-06T19:22:58.852079729Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4273,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915203917467:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915203917467%3Amatrix.theocloud.dev","duration":146.100747,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"MM (WA)"},"time":"2026-03-06T19:22:58.868835783Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:58.869858971Z","message":""} +{"level":"debug","transaction_id":"1825","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.885323991Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1825","time":"2026-03-06T19:22:58.885717203Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4253,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-77859284607025:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":604.421159,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sven (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:22:58.938036488Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4264,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978535675188_41?ts=1772650204000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":410.628383,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich wär in so 15 min wieder da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:58.94642356Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A831882241354AE28DC","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-04T18:50:04Z","event_id":"$6G1h9JlhXWev9S-Dg58F7G9tCGu50cAZ4C9v_deK920","part_id":"","time":"2026-03-06T19:22:58.946515612Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4281,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639153989:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639153989%3Amatrix.theocloud.dev","duration":140.677778,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491639153989 (WA)"},"time":"2026-03-06T19:22:58.985464166Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:58.986326926Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4282,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12730350215211:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-12730350215211%3Amatrix.theocloud.dev","duration":141.629798,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Shirin (WA)"},"time":"2026-03-06T19:22:58.987443983Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:58.987943494Z","message":""} +{"level":"debug","transaction_id":"1826","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:58.996845093Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1826","time":"2026-03-06T19:22:58.996966758Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:59.018233989Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4267,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978639966783_454?ts=1772814788000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":408.486392,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also Michi hab ichs erzählt Anfang der Woche und meine Mutter weiß das auch eig haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.048576028Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3A80E00018E245E3077F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T16:33:08Z","event_id":"$u13VHDOpBC0gRs12U57ocUjrhmnGRlWpsGBa5YbXgUI","part_id":"","time":"2026-03-06T19:22:59.048686658Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4286,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915203917467:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915203917467%3Amatrix.theocloud.dev","duration":35.729248,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:59.054320549Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"228681305870497@lid","alternate_jid":"4915203917467@s.whatsapp.net","time":"2026-03-06T19:22:59.054809724Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4266,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978635945898_48?ts=1772125362000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":443.138812,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bist schon daheim oder gym?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.079234801Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AC0806062E2D9DEC079","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T17:02:42Z","event_id":"$S1YjEymppOjN2e4wXBH0ZCjP3HUs9BzKSbh8oNuBS94","part_id":"","time":"2026-03-06T19:22:59.079421349Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4288,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917617625494%3Amatrix.theocloud.dev","duration":39.511832,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917617625494","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:59.095034924Z","message":"Request completed"} +{"level":"debug","transaction_id":"1827","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.098937357Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1827","time":"2026-03-06T19:22:59.099187532Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A2C6F27B9AFAB5105A6","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A2C6F27B9AFAB5105A6","req_id":4268,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ALaXkUIAPSQApoLseI:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978643705437_41?ts=1772824973000&user_id=%40whatsapp_491731828379%3Amatrix.theocloud.dev","duration":457.442357,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"image.jpg","info":{"h":1600,"mimetype":"image/jpeg","size":111768,"w":738},"m.mentions":{},"m.new_content":{"body":"","filename":"image.jpg","info":{"h":1600,"mimetype":"image/jpeg","size":111768,"w":738},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/RvmBEWJllnIFgZSPWJbjSLxZ"},"m.relates_to":{"event_id":"$gACF3FcxHyM4hS33klugvV5nJPi0_qcEmoVDG5cUrPE","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/RvmBEWJllnIFgZSPWJbjSLxZ"},"time":"2026-03-06T19:22:59.101425276Z","message":"Request completed"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A2C6F27B9AFAB5105A6","sender_id":"","chat_id":"491731828379@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491731828379"},"remote_target_message_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A2C6F27B9AFAB5105A6","event_id":"$RAQv2u2KbKFLF3M7xB1gKlz71jthQ1tLOq2AGbSUP48","part_id":"491731828379@s.whatsapp.net:491731828379@s.whatsapp.net:3A2C6F27B9AFAB5105A6","time":"2026-03-06T19:22:59.101601418Z","message":"Sent message part edit to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4290,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917617625494:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917617625494%3Amatrix.theocloud.dev","duration":28.518109,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:59.124016506Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4272,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978716063639_455?ts=1771596939000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":440.958199,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles klar machen wir so :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.157181637Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2F2015E64EA86AC928","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-20T14:15:39Z","event_id":"$sZNNvKZ4GfjYXzK44nTKUS0lnLroP4eKPkOJa5mziRE","part_id":"","time":"2026-03-06T19:22:59.157312591Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1828","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.175887824Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1828","time":"2026-03-06T19:22:59.176101122Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4274,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978751945701_32?ts=1770586936000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":429.914261,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hahaha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.181973874Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AED630775EA92626CE7","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:42:16Z","event_id":"$Rw3IO2QXq2gnLxN0fmLU8z3f4V047SxgY4YlMtwMJSM","part_id":"","time":"2026-03-06T19:22:59.182104409Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4275,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978763561368_14?ts=1772481241000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":438.447651,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja gut ich find halt 15 uhr an sich bissl kacke also so warum wollen wir den morgen was machen wenn wir das nicht direkt nach der uni machen? Und grad bei shoppen macht es doch mehr sinn mittags anstatt nachmittags zu gehen wegen fülle. Es ist für mich halt einfach mega die Zeitverschwendung und diese 3 stunden könnte ich dann halt nicht wirklich nutzen.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.202129217Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A47EB4B6D4F9291855F","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:54:01Z","event_id":"$aD--6CZWXZoXBtHFn2ZbObGPLKbG-F7FfNCnAhyTDKU","part_id":"","time":"2026-03-06T19:22:59.202249555Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1829","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:59.245017011Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1829","time":"2026-03-06T19:22:59.245169966Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4291,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917617625494:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917617625494%3Amatrix.theocloud.dev","duration":144.055766,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sero (WA)"},"time":"2026-03-06T19:22:59.268289971Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:59.269128566Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:59.273962066Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AC765CED2DF7AB1D5FD","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC765CED2DF7AB1D5FD","req_id":4283,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978852403448_456?ts=1772824977000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":440.371175,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":18112,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":18112,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/touWSxLdvOSiuuIriTHPuMsx"},"m.relates_to":{"event_id":"$adatG32Wuy1_rj1DMniA563gtWm5hNxKPG8gDa6oFWs","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/touWSxLdvOSiuuIriTHPuMsx"},"time":"2026-03-06T19:22:59.292984429Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AC765CED2DF7AB1D5FD","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC765CED2DF7AB1D5FD","event_id":"$lN5dykGEfMBP2O6l4Mva6CE430VWcVQWpomn5mt8AXc","part_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC765CED2DF7AB1D5FD","time":"2026-03-06T19:22:59.293109586Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"ACC7732AC5C010CA3E6BDC09B7A72EA2","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917657607100"},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC7732AC5C010CA3E6BDC09B7A72EA2","time":"2026-03-06T19:22:59.293611333Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1830","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.336356719Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1830","time":"2026-03-06T19:22:59.336529648Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"ACC7732AC5C010CA3E6BDC09B7A72EA2","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917657607100"},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC7732AC5C010CA3E6BDC09B7A72EA2","req_id":4296,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":34.017136,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<336885 bytes>","time":"2026-03-06T19:22:59.348909877Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4285,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824978947070578_457?ts=1772652140000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":414.181605,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oke, aber Bro ich bin so tot vom Training, bin auch mit Fahrrad gefahren heute hin und zurück, ich glaub ich esse gleich und geh dann pennen, hab null Energy mehr","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.361411423Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB428CF4E0168D3EC7D","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T19:22:20Z","event_id":"$afuPKvpzDeqp5eH0st0GD1J848txPw8bmJXx1v8jk_s","part_id":"","time":"2026-03-06T19:22:59.361568428Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1831","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.40229726Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1831","time":"2026-03-06T19:22:59.402462856Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:59.418022372Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:59.420162547Z","message":""} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4287,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979049357003_45?ts=1772815279000&user_id=%40whatsapp_4915903048642%3Amatrix.theocloud.dev","duration":390.869324,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich häng nächstes mal ein Schild in die Turnecke","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.440348621Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4915903048642@s.whatsapp.net:3AD7BD20321B12611B75","sender_id":{"user_id":"4915903048642"},"message_ts":"2026-03-06T16:41:19Z","event_id":"$n2IxpQ-0Qpp3s014k6SFrgVmUnl-DrExOAytFBr2ahs","part_id":"","time":"2026-03-06T19:22:59.440463581Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4299,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917617625494:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917617625494%3Amatrix.theocloud.dev","duration":30.818642,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:59.451313219Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:22:59.452849328Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4289,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979080232706_458?ts=1772125481000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":405.134106,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"daheim und zocke mit domi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.485505658Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A4959BF1DF38A00B9FB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T17:04:41Z","event_id":"$91Y4UdG4cRhOdNaRNR4k_19tk1ZhJF2YZlPCC9BVmN4","part_id":"","time":"2026-03-06T19:22:59.485641571Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1832","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.514670786Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1832","time":"2026-03-06T19:22:59.514744609Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4284,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-77859284607025:matrix.theocloud.dev?user_id=%40whatsapp_lid-77859284607025%3Amatrix.theocloud.dev","duration":580.4884,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sven (WA)","membership":"join"},"time":"2026-03-06T19:22:59.519429764Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4292,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979158126462_459?ts=1771604396000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":363.710763,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sollte dann so kurz nach 17:30 Uhr da sein","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.52194555Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A0E3034B9976CE82DDC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-20T16:19:56Z","event_id":"$VDn8NxpIEqoMqLXvRLFIed17xeFPHslyT0lTo-0NoPQ","part_id":"","time":"2026-03-06T19:22:59.522064771Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4295,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491639153989%3Amatrix.theocloud.dev","duration":246.968956,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<33016 bytes>","time":"2026-03-06T19:22:59.528238892Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4293,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979182952223_33?ts=1770586948000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":359.717954,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Morgen wird der zum Frühstück gesnackt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.54279729Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A8F8D638861FAE30CCF","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-08T21:42:28Z","event_id":"$9Sv4jZRZhteoYFoaHpDaEBlgpY-WRsjCOxvFHyrihvI","part_id":"","time":"2026-03-06T19:22:59.542911761Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4304,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639153989:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491639153989%3Amatrix.theocloud.dev","duration":29.938909,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:59.558570943Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4294,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979202842306_15?ts=1772481304000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":360.291638,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also ich dachte es wäre selbstverständlich dass wenn wir was zusammen an nhn uni tag machen wollen, wir das auch direkt danach machen?!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.563258403Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A9454B007019C612F18","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:55:04Z","event_id":"$yvRXFFQB8W_zcD7EcLzn9cxVC5N8t1G99mpiZEVucDo","part_id":"","time":"2026-03-06T19:22:59.563429376Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4306,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ghlmFeWlBdoVdKgogZpcWGMd?user_id=%40whatsapp_491639153989%3Amatrix.theocloud.dev","duration":18.100516,"status_code":200,"response_length":33016,"response_mime":"image/jpeg","time":"2026-03-06T19:22:59.576806394Z","message":"Request completed"} +{"level":"debug","transaction_id":"1833","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.579498531Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1833","time":"2026-03-06T19:22:59.579614819Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4308,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639153989:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491639153989%3Amatrix.theocloud.dev","duration":23.752357,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ghlmFeWlBdoVdKgogZpcWGMd"},"time":"2026-03-06T19:22:59.600795096Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:22:59.609981582Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917617625494@s.whatsapp.net","alternate_jid":"86861754155032@lid","time":"2026-03-06T19:22:59.610087602Z","message":"Synced alternate ghost with info"} +{"level":"debug","transaction_id":"1834","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.615074545Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1834","time":"2026-03-06T19:22:59.615324021Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4311,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915737898085%3Amatrix.theocloud.dev","duration":10.803472,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915737898085","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:59.621601648Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4312,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915737898085:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915737898085%3Amatrix.theocloud.dev","duration":13.897342,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:22:59.635988445Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4298,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979362370636_42?ts=1772652173000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":346.879699,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oke dann bis morgen!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.709428782Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A6D08EFC1A6D28CF3FA","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-04T19:22:53Z","event_id":"$0M4wO9QvFJt6DsIW7QI-MNepgHywppSfvCmLdgaaiyw","part_id":"","time":"2026-03-06T19:22:59.709583762Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"ACC7732AC5C010CA3E6BDC09B7A72EA2","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917657607100"},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC7732AC5C010CA3E6BDC09B7A72EA2","req_id":4297,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979349409598_46?ts=1772824978000&user_id=%40whatsapp_4917657607100%3Amatrix.theocloud.dev","duration":371.106983,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"Voice message.ogg","info":{"duration":150000,"mimetype":"audio/ogg; codecs=opus","size":336885},"m.mentions":{},"m.new_content":{"body":"","filename":"Voice message.ogg","info":{"duration":150000,"mimetype":"audio/ogg; codecs=opus","size":336885},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":150000,"waveform":[0,3,88,86,44,11,77,61,97,54,0,56,13,98,12,70,11,72,87,50,93,3,64,65,39,1,82,0,25,0,1,90,81,55,92,11,42,28,92,41,30,80,35,65,68,63,65,73,71,0,72,80,62,99,48,51,39,61,79,45,28,72,80,0]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/XUoibhlWgLYGPXXKefXyVwvq"},"m.relates_to":{"event_id":"$xg4Pf4u-Qx2c_dT3BLkZS9aTk2QaGBQlQly9w_A0SLs","rel_type":"m.replace"},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":150000,"waveform":[0,3,88,86,44,11,77,61,97,54,0,56,13,98,12,70,11,72,87,50,93,3,64,65,39,1,82,0,25,0,1,90,81,55,92,11,42,28,92,41,30,80,35,65,68,63,65,73,71,0,72,80,62,99,48,51,39,61,79,45,28,72,80,0]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/XUoibhlWgLYGPXXKefXyVwvq"},"time":"2026-03-06T19:22:59.721066449Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"ACC7732AC5C010CA3E6BDC09B7A72EA2","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917657607100"},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC7732AC5C010CA3E6BDC09B7A72EA2","event_id":"$CP6uDEMdfQUY8HKz0QoKbkvXQABQ3XOxewNychXNVnM","part_id":"4917657607100@s.whatsapp.net:4917657607100@s.whatsapp.net:ACC7732AC5C010CA3E6BDC09B7A72EA2","time":"2026-03-06T19:22:59.721286172Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AFB8DB331C1CD0F97F8","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFB8DB331C1CD0F97F8","time":"2026-03-06T19:22:59.721925438Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1835","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.788406558Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1835","time":"2026-03-06T19:22:59.788515093Z","message":"Finished dispatching events from transaction"} +{"level":"warn","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","started_at":"2026-03-06T19:21:59.794631012Z","time":"2026-03-06T19:22:59.795592623Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AFB8DB331C1CD0F97F8","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFB8DB331C1CD0F97F8","req_id":4315,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":61.415325,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<195869 bytes>","time":"2026-03-06T19:22:59.797260245Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4313,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915737898085:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915737898085%3Amatrix.theocloud.dev","duration":183.433641,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sidonie (WA)"},"time":"2026-03-06T19:22:59.819616526Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"73736032112697@lid","alternate_jid":"4915737898085@s.whatsapp.net","time":"2026-03-06T19:22:59.82014607Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"220641227747573@lid","alternate_jid":"4915903048642@s.whatsapp.net","time":"2026-03-06T19:22:59.820278351Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491724801719@s.whatsapp.net","time":"2026-03-06T19:22:59.820657035Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4310,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-12730350215211%3Amatrix.theocloud.dev","duration":225.504002,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38111 bytes>","time":"2026-03-06T19:22:59.828210679Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","req_id":4300,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mMUaMjiwvONNjaXkHE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979441379422_460?ts=1772815445000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":397.331474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.838826276Z","message":"Request completed"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","message_id":"4915903048642@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACE49345EE9DC8C1FC9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T16:44:05Z","event_id":"$qj3dc5IaAjZDgrBFAYldFYD0Csihq5h1QRK_-ZUheaI","part_id":"","time":"2026-03-06T19:22:59.838938093Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:22:59.847365952Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","time":"2026-03-06T19:22:59.847448436Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4915903048642@s.whatsapp.net","latest_message_ts":"2026-03-06T16:44:05Z","started_at":"2026-03-06T19:21:59.794631012Z","duration":"1m0.053020944s","time":"2026-03-06T19:22:59.847668439Z","message":"Event that took long finished handling"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4317,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491724801719%3Amatrix.theocloud.dev","duration":31.629789,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491724801719","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:59.852563819Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4318,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12730350215211:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12730350215211%3Amatrix.theocloud.dev","duration":34.454348,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:22:59.862970447Z","message":"Request completed"} +{"level":"debug","transaction_id":"1836","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.888425487Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1836","time":"2026-03-06T19:22:59.888637248Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4319,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491724801719:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491724801719%3Amatrix.theocloud.dev","duration":37.29043,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:22:59.890246483Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4320,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/dBdPJRZiGQFHXdRjYyypEkWQ?user_id=%40whatsapp_lid-12730350215211%3Amatrix.theocloud.dev","duration":35.592985,"status_code":200,"response_length":38111,"response_mime":"image/jpeg","time":"2026-03-06T19:22:59.898761924Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4301,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979486993926_461?ts=1772126445000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":428.093614,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"dann war da entweder von dir oder mir noch ein altes gerät hab das rausgehauen","m.mentions":{"user_ids":["@whatsapp_4917620338641:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$wf6IUQTsjVohmrgOgSxnw9oz7HlpFFemnjhs1sr6iBs"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.915240634Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A23538FCBD72E62A6CB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T17:20:45Z","event_id":"$oJMA4Dd2ZtX3m4PeAFqugL1lphWi3JcM_7WEetqZvyg","part_id":"","time":"2026-03-06T19:22:59.915408744Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4303,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979522770247_34?ts=1771604431000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":408.433521,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Perfekt bin noch grade bei Rewe was holen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.931369504Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3ACF112B34FD0C125690","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-20T16:20:31Z","event_id":"$aNAWLNX4PGP1RIKVHXBR9-Ws83lQL-NeeP_uMmf9oEE","part_id":"","time":"2026-03-06T19:22:59.931511633Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4322,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-12730350215211:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-12730350215211%3Amatrix.theocloud.dev","duration":50.422441,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dBdPJRZiGQFHXdRjYyypEkWQ"},"time":"2026-03-06T19:22:59.949408Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:22:59.950599368Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4307,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824979564413663_16?ts=1772481314000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":394.125577,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":37836,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/NkQnEtitaeybnIoUsVmUjqOs"},"time":"2026-03-06T19:22:59.958748277Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3AFED83273E982BFF241","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T19:55:14Z","event_id":"$TpsaECg_zUMKIjptvAI8pdJUaUzhHChfcPWEIH5GaZE","part_id":"","time":"2026-03-06T19:22:59.958927493Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4305,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979543585948_462?ts=1770586951000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":418.194878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Lass es dir schmecken","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:22:59.961896345Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A03BE140194F4529985","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:42:31Z","event_id":"$y0eS3qnKF1WuNFmaK3gD6xzYXNmXWL2zIvMx_8xP2ms","part_id":"","time":"2026-03-06T19:22:59.962027788Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1837","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:22:59.964905566Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1837","time":"2026-03-06T19:22:59.965037708Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4325,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-101829530640580%3Amatrix.theocloud.dev","duration":22.939812,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-101829530640580","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:22:59.973886226Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4328,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101829530640580:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101829530640580%3Amatrix.theocloud.dev","duration":11.720709,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:22:59.985993582Z","message":"Request completed"} +{"level":"debug","transaction_id":"1838","content":{"pdu":3,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:22:59.994858235Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1838","time":"2026-03-06T19:22:59.995030954Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4321,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491724801719:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491724801719%3Amatrix.theocloud.dev","duration":116.655202,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491724801719 (WA)"},"time":"2026-03-06T19:23:00.007070144Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:00.007942055Z","message":""} +{"level":"warn","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","started_at":"2026-03-06T19:22:00.030663244Z","time":"2026-03-06T19:23:00.031212151Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","started_at":"2026-03-06T19:22:00.031469153Z","time":"2026-03-06T19:23:00.032318591Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4302,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-168212561981526:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":531.685809,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Dya (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:00.052087148Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4329,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101829530640580:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101829530640580%3Amatrix.theocloud.dev","duration":99.113075,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Aitor sav (WA)"},"time":"2026-03-06T19:23:00.085277282Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:00.086286572Z","message":""} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4314,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979710460910_463?ts=1772652186000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":396.509362,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jo bis morgen!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.107138102Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFCC30A277466162BB7","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-04T19:23:06Z","event_id":"$ObD6-q8qZNvfwKOcVyTLgA0sXOEjy1wnZS4_Wb5giSY","part_id":"","time":"2026-03-06T19:23:00.107244681Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1839","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.112920548Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1839","time":"2026-03-06T19:23:00.113004917Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4309,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-196232895029386:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":549.573306,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Tobi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:00.151410239Z","message":"Request completed"} +{"level":"debug","transaction_id":"1840","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.155535538Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1840","time":"2026-03-06T19:23:00.15577405Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:00.163500623Z","message":""} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AFB8DB331C1CD0F97F8","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFB8DB331C1CD0F97F8","req_id":4316,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21qmhtENTgisuuURICKB:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979797710797_464?ts=1772824978000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":368.215097,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"Voice message.ogg","info":{"duration":85000,"mimetype":"audio/ogg; codecs=opus","size":195869},"m.mentions":{},"m.new_content":{"body":"","filename":"Voice message.ogg","info":{"duration":85000,"mimetype":"audio/ogg; codecs=opus","size":195869},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":85000,"waveform":[10,51,34,10,34,42,18,26,54,49,41,8,63,74,66,64,49,49,30,34,21,26,38,38,42,38,22,39,28,38,21,33,37,57,16,43,18,60,59,19,48,53,69,21,60,56,30,47,43,41,21,42,42,67,50,52,51,62,76,61,40,16,55,28]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/xRqKZKcZmCoKRimoNKmCSYVU"},"m.relates_to":{"event_id":"$fFKfpVHxwV5kObyWCFOD3sgm4FU7aVLiexg4566_PBY","rel_type":"m.replace"},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":85000,"waveform":[10,51,34,10,34,42,18,26,54,49,41,8,63,74,66,64,49,49,30,34,21,26,38,38,42,38,22,39,28,38,21,33,37,57,16,43,18,60,59,19,48,53,69,21,60,56,30,47,43,41,21,42,42,67,50,52,51,62,76,61,40,16,55,28]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/xRqKZKcZmCoKRimoNKmCSYVU"},"time":"2026-03-06T19:23:00.16632574Z","message":"Request completed"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AFB8DB331C1CD0F97F8","sender_id":"","chat_id":"4917657607100@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFB8DB331C1CD0F97F8","event_id":"$6VMkBJF5Z4SfYwuh5wNDI0PZNSIxHB4dsC2fLOSMvKs","part_id":"4917657607100@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFB8DB331C1CD0F97F8","time":"2026-03-06T19:23:00.166486308Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"1841","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.205995694Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1841","time":"2026-03-06T19:23:00.206116731Z","message":"Finished dispatching events from transaction"} +{"level":"warn","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","started_at":"2026-03-06T19:22:00.219385341Z","time":"2026-03-06T19:23:00.220147472Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4324,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979932498992_465?ts=1771604476000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":296.007404,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Top","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.228671433Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AFAA6996C773CECFE36","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-20T16:21:16Z","event_id":"$N_LZJYnx_wUavKfCz5jPMLlbbYm9gkI70ec8MM05Ozg","part_id":"","time":"2026-03-06T19:23:00.228844223Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4323,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979916382693_49?ts=1772126539000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":320.292657,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"mhmm","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.236807073Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AFA1CF4C09F7764D5CD","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-26T17:22:19Z","event_id":"$r3DW4cBIrMoWWcrImhoC3WgQHbXZaesg2LI3Iuo6GyY","part_id":"","time":"2026-03-06T19:23:00.236944033Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:00.247490695Z","message":""} +{"level":"debug","transaction_id":"1842","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.277052527Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1842","time":"2026-03-06T19:23:00.277364512Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4326,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824979959863308_5?ts=1772483291000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":322.512522,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich kann erst um 15 Uhr! Ich muss meinen Rucksack zuhause ablegen 🤗","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.282531438Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3AB92F872C285B24116A","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-03-02T20:28:11Z","event_id":"$xXRyS3cBwzYGCRsYmnlM_B5STOZcP_Q9exWgFOuTknw","part_id":"","time":"2026-03-06T19:23:00.282683555Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4327,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824979962855488_34?ts=1770586966066&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":321.4776,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$y0eS3qnKF1WuNFmaK3gD6xzYXNmXWL2zIvMx_8xP2ms","key":"❤️"}},"time":"2026-03-06T19:23:00.284443648Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A03BE140194F4529985","target_part_id":"","reaction_sender_id":{"user_id":"491783743461"},"reaction_ts":"2026-02-08T21:42:46.066Z","event_id":"$GEJGbjtxZqx8FX5woc3vIdvMWuUDi4Ap54OXok2xoDc","time":"2026-03-06T19:23:00.284592761Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"1843","content":{"pdu":4,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.323770956Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1843","time":"2026-03-06T19:23:00.323914761Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4333,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491724801719%3Amatrix.theocloud.dev","duration":200.50985,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<74072 bytes>","time":"2026-03-06T19:23:00.378095482Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4338,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491724801719:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491724801719%3Amatrix.theocloud.dev","duration":12.735098,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:00.391263322Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4339,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/tqIWGRrKbOTcpAFiHSGktbEC?user_id=%40whatsapp_491724801719%3Amatrix.theocloud.dev","duration":17.16917,"status_code":200,"response_length":74072,"response_mime":"image/jpeg","time":"2026-03-06T19:23:00.408596551Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4331,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980107869769_43?ts=1772801279000&user_id=%40whatsapp_491736748726%3Amatrix.theocloud.dev","duration":315.684887,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Yap yap yap","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":337818,"w":1152},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/secnvMCrsNtCgiEFaNaJetKv"},"time":"2026-03-06T19:23:00.423756919Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:491736748726@s.whatsapp.net:3A31E38D658A5219D779","sender_id":{"user_id":"491736748726"},"message_ts":"2026-03-06T12:47:59Z","event_id":"$VWauQom05A5MHVsAX7fxjfezEc4iFgw7fEo1itHik-0","part_id":"","time":"2026-03-06T19:23:00.423937601Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4341,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491724801719:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491724801719%3Amatrix.theocloud.dev","duration":53.758944,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tqIWGRrKbOTcpAFiHSGktbEC"},"time":"2026-03-06T19:23:00.46264052Z","message":"Request completed"} +{"level":"debug","transaction_id":"1844","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.482629359Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1844","time":"2026-03-06T19:23:00.482742015Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4343,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917662884333%3Amatrix.theocloud.dev","duration":23.009305,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917662884333","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:00.486863473Z","message":"Request completed"} +{"level":"warn","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","started_at":"2026-03-06T19:22:00.504833518Z","time":"2026-03-06T19:23:00.504980821Z","message":"Event handling is taking long"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4344,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662884333:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917662884333%3Amatrix.theocloud.dev","duration":19.634041,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:00.506873545Z","message":"Request completed"} +{"level":"warn","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","started_at":"2026-03-06T19:22:00.516316206Z","time":"2026-03-06T19:23:00.517012049Z","message":"Event handling is taking long"} +{"level":"warn","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","started_at":"2026-03-06T19:22:00.517355737Z","time":"2026-03-06T19:23:00.518113321Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4330,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-168212561981526:matrix.theocloud.dev?user_id=%40whatsapp_lid-168212561981526%3Amatrix.theocloud.dev","duration":491.364995,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Dya (WA)","membership":"join"},"time":"2026-03-06T19:23:00.544042729Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4334,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824980229834376_466?ts=1771610097000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":355.608089,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":39414,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/MpvGddBhzKlMlMqJljwlwuhS"},"time":"2026-03-06T19:23:00.585706748Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A180CC90BB5712247B7","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-20T17:54:57Z","event_id":"$w6k-q1nuKIyW49BfuXCbrTG3jvx6rvnbam9Iz7bmXv8","part_id":"","time":"2026-03-06T19:23:00.585867036Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1845","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.633653283Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1845","time":"2026-03-06T19:23:00.633776834Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4335,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980237772502_467?ts=1772217748000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":408.035281,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bro kommst du heute nochmal on?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.645931473Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A53F15783C7ADEA8A3C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-27T18:42:28Z","event_id":"$IsrBESphIEz4ndmfLFFVE-C00SdvGd-ToDdah8igmaE","part_id":"","time":"2026-03-06T19:23:00.646030789Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4340,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-101829530640580%3Amatrix.theocloud.dev","duration":256.445706,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41232 bytes>","time":"2026-03-06T19:23:00.651985745Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4336,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980283710025_17?ts=1772483616000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":384.017873,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Betke wenn ich dich erst um 15 Uhr sehe, denke ich drei Stunden lang darüber nach, dass ich eigentlich schon zeit mit dir verbringen könnte! Das stresst uns doch beide 👉👈","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.667887488Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3AD7F438AA052F746989","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-02T20:33:36Z","event_id":"$aqFARMPDoirb3xXGt257yQViIgYb40iOn_ahS8rJajg","part_id":"","time":"2026-03-06T19:23:00.668001052Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4337,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980285234471_468?ts=1770586954000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":385.402774,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Perfekt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.670755349Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AEB5E72F78F29412A24","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-08T21:42:34Z","event_id":"$X7Miist5Ow1qU6dWp9yCH4UHpeFqk2Szy2dTommzeSw","part_id":"","time":"2026-03-06T19:23:00.670872404Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4349,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101829530640580:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101829530640580%3Amatrix.theocloud.dev","duration":28.996878,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:00.681327992Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4332,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-196232895029386:matrix.theocloud.dev?user_id=%40whatsapp_lid-196232895029386%3Amatrix.theocloud.dev","duration":536.349801,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Tobi (WA)","membership":"join"},"time":"2026-03-06T19:23:00.688351045Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4345,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662884333:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917662884333%3Amatrix.theocloud.dev","duration":184.720344,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Elias (WA)"},"time":"2026-03-06T19:23:00.691740278Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"97882405363848@lid","alternate_jid":"4917662884333@s.whatsapp.net","time":"2026-03-06T19:23:00.692278901Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4352,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/FeKQfaoOaRpHCxdTjUNbNcXK?user_id=%40whatsapp_lid-101829530640580%3Amatrix.theocloud.dev","duration":20.62615,"status_code":200,"response_length":41232,"response_mime":"image/jpeg","time":"2026-03-06T19:23:00.702103185Z","message":"Request completed"} +{"level":"debug","transaction_id":"1846","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.703800071Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1846","time":"2026-03-06T19:23:00.704063726Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4354,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-135613944741978%3Amatrix.theocloud.dev","duration":21.86117,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-135613944741978","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:00.714779057Z","message":"Request completed"} +{"level":"warn","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","started_at":"2026-03-06T19:22:00.732042164Z","time":"2026-03-06T19:23:00.732919592Z","message":"Event handling is taking long"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4356,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-135613944741978:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-135613944741978%3Amatrix.theocloud.dev","duration":19.016077,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:00.734091404Z","message":"Request completed"} +{"level":"warn","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","started_at":"2026-03-06T19:22:00.734278163Z","time":"2026-03-06T19:23:00.734324817Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4355,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101829530640580:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101829530640580%3Amatrix.theocloud.dev","duration":32.868162,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FeKQfaoOaRpHCxdTjUNbNcXK"},"time":"2026-03-06T19:23:00.735223128Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:00.736258189Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1847","content":{"pdu":4,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:00.745432172Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1847","time":"2026-03-06T19:23:00.745789415Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4358,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-71348114170014%3Amatrix.theocloud.dev","duration":13.13215,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-71348114170014","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:00.749691918Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4359,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-71348114170014:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-71348114170014%3Amatrix.theocloud.dev","duration":12.969279,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:00.762963334Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","req_id":4342,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21lZlymPnIGrcecKHucv:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980424843385_469?ts=1772801342000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":373.606705,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"🗣️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.798584955Z","message":"Request completed"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","message_id":"491736748726@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE8A59CEA508F5372E0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-06T12:49:02Z","event_id":"$1WczlKHQ_qyB63dUG0nFDjI1TzYGhLLSMo0QwPz2cYU","part_id":"","time":"2026-03-06T19:23:00.798740214Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:23:00.802201175Z","message":"Backfill finished"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","time":"2026-03-06T19:23:00.802283449Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491736748726@s.whatsapp.net","latest_message_ts":"2026-03-06T12:49:02Z","started_at":"2026-03-06T19:22:00.031469153Z","duration":"1m0.771035346s","time":"2026-03-06T19:23:00.802520843Z","message":"Event that took long finished handling"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4357,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-135613944741978:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-135613944741978%3Amatrix.theocloud.dev","duration":86.579751,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sofía (WA)"},"time":"2026-03-06T19:23:00.820856447Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:00.821560107Z","message":""} +{"level":"debug","transaction_id":"1848","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.833180035Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1848","time":"2026-03-06T19:23:00.833270061Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-71348114170014:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-71348114170014%3Amatrix.theocloud.dev","duration":77.04182,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915209052709 (WA)"},"time":"2026-03-06T19:23:00.840227113Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:00.840894945Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4347,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824980586829112_470?ts=1771610100000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":270.711116,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":182212,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/hxEDDpJvxCAAxHXAmnuSpxqs"},"time":"2026-03-06T19:23:00.857791171Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A264796614F1C4C9015","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-20T17:55:00Z","event_id":"$b4CbBwy_6FTnoq72ytuumETE0cRUQ7Jkpi3yejiBe3M","part_id":"","time":"2026-03-06T19:23:00.857909973Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1849","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.895022515Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1849","time":"2026-03-06T19:23:00.895148929Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4350,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980668764636_21?ts=1772559082000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":251.965817,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bombenfester Plan für nächsten Mittwoch kommt bald!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.920879496Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A747E9166DA5A47A6AF","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-03T17:31:22Z","event_id":"$v3Ra_ZCe0xw6usfIBHLDEIXc8K6h2HtbwLB8eCmnutM","part_id":"","time":"2026-03-06T19:23:00.921062623Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4351,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980671668326_471?ts=1771009965000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":252.257687,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Brooo können wir dir was vom Döner mitbringen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.924048517Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A9B5DCB959667FA2F48","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-13T19:12:45Z","event_id":"$_AiO9_KTx1oPVxADfMNO3kwCu5TpD9uXwCwP_Fbvnpk","part_id":"","time":"2026-03-06T19:23:00.924207338Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4348,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980646743878_50?ts=1772232502000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":282.807297,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sorry, war vorhin alles nicht so böse gemeint, war nur dumm getriggered, aber war nicht nett","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:00.92965503Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AA85D218261890F247E","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-27T22:48:22Z","event_id":"$FCszvreiVnVTAADfxlppCLpWKuDmfMKFLodJdHMFwwA","part_id":"","time":"2026-03-06T19:23:00.929770759Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:00.971989045Z","message":""} +{"level":"debug","transaction_id":"1850","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:00.990601714Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1850","time":"2026-03-06T19:23:00.990713461Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4365,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-135613944741978:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-135613944741978%3Amatrix.theocloud.dev","duration":24.694318,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:00.997061769Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:00.999024544Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4366,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915236260868%3Amatrix.theocloud.dev","duration":19.070205,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915236260868","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:01.017149994Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4367,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-71348114170014:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-71348114170014%3Amatrix.theocloud.dev","duration":23.26381,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:01.022695674Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:01.023705104Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4346,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-112798826770575:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":492.891886,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jWAgxYDjikATfKSDigCcIWQW","com.beeper.exclude_from_timeline":true,"displayname":"+4917643655863 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:01.038217756Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4368,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915236260868:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915236260868%3Amatrix.theocloud.dev","duration":24.734827,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:01.042311626Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4369,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-33213066010783%3Amatrix.theocloud.dev","duration":31.84651,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-33213066010783","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:01.055816804Z","message":"Request completed"} +{"level":"debug","transaction_id":"1851","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.068721479Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1851","time":"2026-03-06T19:23:01.068845938Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4372,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-33213066010783:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-33213066010783%3Amatrix.theocloud.dev","duration":34.695094,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:01.090830728Z","message":"Request completed"} +{"level":"debug","transaction_id":"1852","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.126077435Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1852","time":"2026-03-06T19:23:01.126521143Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4353,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251745280225436:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":457.244633,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LXWwZVePUhXHkbHUxnFqIiaB","com.beeper.exclude_from_timeline":true,"displayname":"Chrissi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:01.146492871Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4371,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915236260868:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915236260868%3Amatrix.theocloud.dev","duration":155.241555,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sofía (WA)"},"time":"2026-03-06T19:23:01.197790994Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:01.198381998Z","message":""} +{"level":"debug","transaction_id":"1853","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.214729614Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1853","time":"2026-03-06T19:23:01.215031612Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4373,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-33213066010783:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-33213066010783%3Amatrix.theocloud.dev","duration":125.639355,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491639864570 (WA)"},"time":"2026-03-06T19:23:01.216646923Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:01.217501512Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4361,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824980858688643_472?ts=1771610113000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":369.271878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":4556,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/DWGmzHDnxhiKVFVoZrnRnWGJ"},"time":"2026-03-06T19:23:01.228192119Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD08B808CB007C92D3F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-20T17:55:13Z","event_id":"$HN2rNWEJczZU9wwqMFhhkuYzR8j8yyBc2E90GE4lT4I","part_id":"","time":"2026-03-06T19:23:01.228307917Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1854","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.273006301Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1854","time":"2026-03-06T19:23:01.273110924Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4362,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980922045303_18?ts=1772559318000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":386.038409,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Theo meinte er kann nicht!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.308221859Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A15145AB55EF5404AB9","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-03T17:35:18Z","event_id":"$xdYOc84TJufB3AEvEstJs_yerXYVvztDI4iHXx_1364","part_id":"","time":"2026-03-06T19:23:01.308380261Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4363,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980925036924_35?ts=1771009987000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":386.741091,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Voll gerne!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.311891927Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A05F940882D64340417","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:13:07Z","event_id":"$hY0R1yzacFPzy1v9pf7GFMIqlJlf-ujg_6_I2oQOOrs","part_id":"","time":"2026-03-06T19:23:01.312022671Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4364,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824980930606001_473?ts=1772237941000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":408.725043,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles gut, dacht ich mir schon und Domi hats glaube aber auch gut provoziert","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.339460881Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD7F53DDF143F7299CD","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-28T00:19:01Z","event_id":"$0hSsVmznce_eckaDO8RiGw_znjRAma_2eTzTGgkMvwk","part_id":"","time":"2026-03-06T19:23:01.339565923Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1855","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.361030179Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1855","time":"2026-03-06T19:23:01.36113166Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:01.364961388Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4379,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915236260868:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915236260868%3Amatrix.theocloud.dev","duration":9.335668,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:01.374592837Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"135613944741978@lid","alternate_jid":"4915236260868@s.whatsapp.net","time":"2026-03-06T19:23:01.375028583Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4380,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917631673140%3Amatrix.theocloud.dev","duration":6.301653,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917631673140","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:01.381733435Z","message":"Request completed"} +{"level":"debug","transaction_id":"1856","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:01.383227499Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1856","time":"2026-03-06T19:23:01.383376543Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4381,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631673140:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631673140%3Amatrix.theocloud.dev","duration":5.54582,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:01.387574059Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4370,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-112798826770575:matrix.theocloud.dev?user_id=%40whatsapp_lid-112798826770575%3Amatrix.theocloud.dev","duration":389.804091,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jWAgxYDjikATfKSDigCcIWQW","com.beeper.exclude_from_timeline":true,"displayname":"+4917643655863 (WA)","membership":"join"},"time":"2026-03-06T19:23:01.428871476Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":true,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:01.429516399Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4383,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631673140:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631673140%3Amatrix.theocloud.dev","duration":17.752911,"status_code":200,"response_length":28,"response_mime":"application/json","time":"2026-03-06T19:23:01.447547492Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:01.448397821Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4382,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631673140:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631673140%3Amatrix.theocloud.dev","duration":72.165298,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jenny (WA)"},"time":"2026-03-06T19:23:01.459918432Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"256783310393511@lid","alternate_jid":"4917631673140@s.whatsapp.net","time":"2026-03-06T19:23:01.460409982Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4375,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981229190024_35?ts=1772122173000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":232.174421,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Lili ist 15 💀","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.461499939Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A9E121C502FB8A758FC","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-26T16:09:33Z","event_id":"$XsNWOUstZtqN59ztEAdbQechcCMBwwTNDsXqfFxu-gA","part_id":"","time":"2026-03-06T19:23:01.461634665Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1857","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.476170504Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1857","time":"2026-03-06T19:23:01.476264442Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4384,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-261301750251678%3Amatrix.theocloud.dev","duration":23.295728,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-261301750251678","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:01.484115265Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4386,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261301750251678:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-261301750251678%3Amatrix.theocloud.dev","duration":19.492262,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:01.503918114Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4374,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251745280225436:matrix.theocloud.dev?user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":364.031478,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LXWwZVePUhXHkbHUxnFqIiaB","com.beeper.exclude_from_timeline":true,"displayname":"Chrissi (WA)","membership":"join"},"time":"2026-03-06T19:23:01.511269705Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:01.512160473Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4388,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491723092920%3Amatrix.theocloud.dev","duration":21.98465,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491723092920","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:01.534464861Z","message":"Request completed"} +{"level":"debug","transaction_id":"1858","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.535929172Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1858","time":"2026-03-06T19:23:01.536206725Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4389,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723092920:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491723092920%3Amatrix.theocloud.dev","duration":20.587108,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:01.555441199Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4376,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981309292121_19?ts=1772559330000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":247.844149,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Was ist der plan!?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.557267922Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A85F715ED5EEA89839E","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-03T17:35:30Z","event_id":"$E7Q5gGzZnXzSZC3YKrLIKQ2e5BggNlwlq4OAjQQYppo","part_id":"","time":"2026-03-06T19:23:01.557393009Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981312795615_36?ts=1771009990000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":247.704534,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":":)))","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.560600093Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3ACFC65656D92A5A7A8F","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:13:10Z","event_id":"$bLrVpwsYri1lxaoE-7RxUrqfLJlastt4cdmojhnIlXI","part_id":"","time":"2026-03-06T19:23:01.560724552Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1859","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.597394504Z","message":"Starting handling of transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4378,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824981340121029_51?ts=1772239151254&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":261.658309,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$0hSsVmznce_eckaDO8RiGw_znjRAma_2eTzTGgkMvwk","key":"❤️"}},"time":"2026-03-06T19:23:01.601885358Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","target_message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD7F53DDF143F7299CD","target_part_id":"","reaction_sender_id":{"user_id":"4917620338641"},"reaction_ts":"2026-02-28T00:39:11.254Z","event_id":"$Z1oclwG7yVSLf7VHqFG_CjM8p9EeB1LQ7G9BKYcT3RM","time":"2026-03-06T19:23:01.602012541Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:01.60354872Z","message":""} +{"level":"debug","transaction_id":"1859","time":"2026-03-06T19:23:01.606477972Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4387,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261301750251678:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-261301750251678%3Amatrix.theocloud.dev","duration":130.845532,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Javier- (WA)"},"time":"2026-03-06T19:23:01.634915484Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:01.635614883Z","message":""} +{"level":"debug","transaction_id":"1860","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.642038132Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1860","time":"2026-03-06T19:23:01.642115307Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4390,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723092920:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491723092920%3Amatrix.theocloud.dev","duration":93.104061,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491723092920 (WA)"},"time":"2026-03-06T19:23:01.648783422Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:01.649432605Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4385,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981462509508_474?ts=1772122187000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":235.881157,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.698536286Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A2F3D974D56A43E8F34","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T16:09:47Z","event_id":"$29qZQhiaB-8geoXy5AnBA5dWXmDoOp6tDDBAsVnfupc","part_id":"","time":"2026-03-06T19:23:01.698670872Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1861","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.751304098Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1861","time":"2026-03-06T19:23:01.75141857Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4391,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981558094365_22?ts=1772559330000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":231.44478,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Am Mittwoch?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.789654314Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AFB0F9AA1C3D684CC28","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-03T17:35:30Z","event_id":"$tjXRYHyS9jaGQQJHa61D0cyCYqpfPXyKXmQssGtm3xI","part_id":"","time":"2026-03-06T19:23:01.789798189Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4392,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981561482410_475?ts=1771009994000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":228.939749,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Würden zsm bei eich essen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.79059893Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7C1234F79BF3E1454A","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-13T19:13:14Z","event_id":"$ShShLhZvfbIjcbLSH1_dmWVJs6pnlqErcbNyDlbWzHU","part_id":"","time":"2026-03-06T19:23:01.790784082Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:01.807489988Z","message":""} +{"level":"debug","transaction_id":"1862","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.827427075Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1862","time":"2026-03-06T19:23:01.827545527Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:01.832315331Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4393,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981604373976_476?ts=1772267323000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":242.838768,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moin ich hab geisteskranken Muskelkater, heißt ich würd dann gleich on kommen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:01.847361367Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3AE0BA44E11E1C1A5269","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-28T08:28:43Z","event_id":"$z4Va7fXrEh7ZBtDjpHUWCsIJ2tgAK7A6l0hqVismMrY","part_id":"","time":"2026-03-06T19:23:01.847512995Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4399,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631673140:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917631673140%3Amatrix.theocloud.dev","duration":25.985072,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:01.858643468Z","message":"Request completed"} +{"level":"debug","transaction_id":"1863","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.892688819Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1863","time":"2026-03-06T19:23:01.892805735Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4394,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-33213066010783%3Amatrix.theocloud.dev","duration":221.660305,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<53449 bytes>","time":"2026-03-06T19:23:01.898276196Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4402,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-33213066010783:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-33213066010783%3Amatrix.theocloud.dev","duration":11.181668,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:01.909903736Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4403,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WWdpmZzrDMNnPdylPEUrSWrK?user_id=%40whatsapp_lid-33213066010783%3Amatrix.theocloud.dev","duration":15.783152,"status_code":200,"response_length":53449,"response_mime":"image/jpeg","time":"2026-03-06T19:23:01.925848782Z","message":"Request completed"} +{"level":"debug","transaction_id":"1864","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:01.927911362Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1864","time":"2026-03-06T19:23:01.928030582Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:01.928209797Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4404,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-33213066010783:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-33213066010783%3Amatrix.theocloud.dev","duration":33.767729,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WWdpmZzrDMNnPdylPEUrSWrK"},"time":"2026-03-06T19:23:01.959943861Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:01.961023901Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4406,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-150113620103230%3Amatrix.theocloud.dev","duration":15.656458,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-150113620103230","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:01.976995836Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4395,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824981701505418_36?ts=1772122627000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":306.047081,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":134104,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/kLBTFkNkASpRPwYBNMkTaYvr"},"time":"2026-03-06T19:23:02.007792966Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A81833B8D973F120021","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-26T16:17:07Z","event_id":"$9xXv1VOpnO9P4UgxcvTvmp6WrRoz58JWcP-kjzxLlDc","part_id":"","time":"2026-03-06T19:23:02.00790646Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4407,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150113620103230:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-150113620103230%3Amatrix.theocloud.dev","duration":33.219887,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:02.0106551Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4398,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-261301750251678%3Amatrix.theocloud.dev","duration":234.002122,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<57457 bytes>","time":"2026-03-06T19:23:02.053841679Z","message":"Request completed"} +{"level":"debug","transaction_id":"1865","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.063487307Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1865","time":"2026-03-06T19:23:02.063588019Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4410,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261301750251678:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-261301750251678%3Amatrix.theocloud.dev","duration":14.091852,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:02.068308724Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4411,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/mdQwEdkShmeGrnuymSEokxMO?user_id=%40whatsapp_lid-261301750251678%3Amatrix.theocloud.dev","duration":11.228322,"status_code":200,"response_length":57457,"response_mime":"image/jpeg","time":"2026-03-06T19:23:02.07965005Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4396,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981792243854_477?ts=1772559339000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":318.71115,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja da geh ich ins Gym","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$tjXRYHyS9jaGQQJHa61D0cyCYqpfPXyKXmQssGtm3xI"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.111154333Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A61FE30C25F07531731","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T17:35:39Z","event_id":"$3TbZtBNb34TDzBIgTGTVdEzH_zMMQqYFO8quIrAPPo0","part_id":"","time":"2026-03-06T19:23:02.11131476Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4397,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981793935432_37?ts=1771009999000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":318.557427,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oki","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.112588892Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A6223F10ED131396739","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:13:19Z","event_id":"$H2zbAHXaUjHuI86rVDwQt7m5RyOYXv2o9ZwXEu0PrS8","part_id":"","time":"2026-03-06T19:23:02.112661807Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1866","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:02.123122773Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1866","time":"2026-03-06T19:23:02.123264832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4412,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261301750251678:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-261301750251678%3Amatrix.theocloud.dev","duration":55.78304,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mdQwEdkShmeGrnuymSEokxMO"},"time":"2026-03-06T19:23:02.135678865Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4409,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150113620103230:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-150113620103230%3Amatrix.theocloud.dev","duration":135.780932,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915203389281 (WA)"},"time":"2026-03-06T19:23:02.146638434Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:02.14749882Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4415,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915231629994%3Amatrix.theocloud.dev","duration":17.373738,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915231629994","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:02.154078585Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4405,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491723092920%3Amatrix.theocloud.dev","duration":216.663584,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<68666 bytes>","time":"2026-03-06T19:23:02.156459086Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4416,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915231629994:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915231629994%3Amatrix.theocloud.dev","duration":7.488411,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:02.161861311Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4417,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723092920:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491723092920%3Amatrix.theocloud.dev","duration":10.472419,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:02.167283511Z","message":"Request completed"} +{"level":"debug","transaction_id":"1867","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.171553314Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1867","time":"2026-03-06T19:23:02.171691532Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4400,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824981848471579_52?ts=1772268871000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":340.004572,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"geil","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.188609829Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AC111C778F421FB40EA","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-28T08:54:31Z","event_id":"$7VqanW-_5YKdRPH0aMpU2m3pEm2aciTMYwkgWgziHzI","part_id":"","time":"2026-03-06T19:23:02.188731005Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4419,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BtlflMdIvPQNTmePEtyfpWXJ?user_id=%40whatsapp_491723092920%3Amatrix.theocloud.dev","duration":24.471382,"status_code":200,"response_length":68666,"response_mime":"image/jpeg","time":"2026-03-06T19:23:02.191888571Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4421,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723092920:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491723092920%3Amatrix.theocloud.dev","duration":30.650182,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BtlflMdIvPQNTmePEtyfpWXJ"},"time":"2026-03-06T19:23:02.222820706Z","message":"Request completed"} +{"level":"debug","transaction_id":"1868","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.227134231Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1868","time":"2026-03-06T19:23:02.227246886Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4418,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915231629994:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915231629994%3Amatrix.theocloud.dev","duration":93.956206,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Javier- (WA)"},"time":"2026-03-06T19:23:02.2559887Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:02.256542968Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4401,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127505180680381:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":436.967903,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TmwMKWAePfUzkYDsWXddFsMS","com.beeper.exclude_from_timeline":true,"displayname":"Margarita Pantzali (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:02.296428316Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4408,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982008650000_478?ts=1772122648000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":292.937699,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Schwierig","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.301720748Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A7ECA83B52EA338E7AC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T16:17:28Z","event_id":"$wSw4neOwcLlGdT_3IWwdgE0i3tb0n-5WXyFA1wzmYbk","part_id":"","time":"2026-03-06T19:23:02.301855265Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1869","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.350824848Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1869","time":"2026-03-06T19:23:02.350929053Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4413,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982112250367_23?ts=1772559360000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":289.415138,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber wenn wir nichts machen, müssen wir zum Tag der Informatik 🙁","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.401819716Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A74FBE4ED1814B6E6FA","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-03T17:36:00Z","event_id":"$0ImoZINiIUGIf5Qkse_TADAg9G7yUxpFixUkC2fnxqE","part_id":"","time":"2026-03-06T19:23:02.401966315Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4414,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982113223338_38?ts=1771010006000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":294.312054,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gerne einmal mit allem aber ohne scharf :))","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.407671236Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A70B29B70391BA7A652","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:13:26Z","event_id":"$2273k2LJV0WawcxkXsUHFqmv-1PwELzCoqA4XCLrSZc","part_id":"","time":"2026-03-06T19:23:02.407863861Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1870","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.408215795Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1870","time":"2026-03-06T19:23:02.410548385Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:02.41577831Z","message":""} +{"level":"debug","transaction_id":"1871","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.455190476Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1871","time":"2026-03-06T19:23:02.455322059Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4420,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982189296168_53?ts=1772268880000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":297.270989,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bin aber auch eben erst wach geworden","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.486730309Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A907EB6D26667F78681","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-28T08:54:40Z","event_id":"$qXNBWqVmfhdVSQm5xqZo-jgJQO85KJmLm-H60DGuLpo","part_id":"","time":"2026-03-06T19:23:02.486886266Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:02.516984835Z","message":""} +{"level":"debug","transaction_id":"1872","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.526126551Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1872","time":"2026-03-06T19:23:02.526235295Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4429,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-150113620103230:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-150113620103230%3Amatrix.theocloud.dev","duration":20.514192,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:02.537876315Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:02.538832594Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4430,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-125877153202314%3Amatrix.theocloud.dev","duration":25.938837,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-125877153202314","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:02.565074127Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4431,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-125877153202314:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-125877153202314%3Amatrix.theocloud.dev","duration":13.206393,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:02.578727999Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4424,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982302655586_37?ts=1772122661000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":313.220644,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sehr aber sie ist super nett und lieb","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.616008372Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3A9C1B1B86DA852694","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-26T16:17:41Z","event_id":"$N6HG3uQ0LIs4CnbTvvEHM0l7-gY_q4uxIon2O1m8k_Y","part_id":"","time":"2026-03-06T19:23:02.616150501Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4427,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915231629994%3Amatrix.theocloud.dev","duration":190.288513,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<57457 bytes>","time":"2026-03-06T19:23:02.617063409Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4434,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915231629994:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915231629994%3Amatrix.theocloud.dev","duration":25.195506,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:02.642614831Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4435,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/EbLLEUKfOLNtkbBUxFpPwExN?user_id=%40whatsapp_4915231629994%3Amatrix.theocloud.dev","duration":30.132093,"status_code":200,"response_length":57457,"response_mime":"image/jpeg","time":"2026-03-06T19:23:02.672889541Z","message":"Request completed"} +{"level":"debug","transaction_id":"1873","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.697749455Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1873","time":"2026-03-06T19:23:02.697840879Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4422,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-16114767646828:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":480.789838,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Aylin (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:02.704458847Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4436,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915231629994:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915231629994%3Amatrix.theocloud.dev","duration":56.567438,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EbLLEUKfOLNtkbBUxFpPwExN"},"time":"2026-03-06T19:23:02.729669788Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"261301750251678@lid","alternate_jid":"4915231629994@s.whatsapp.net","time":"2026-03-06T19:23:02.730212462Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915906828883@s.whatsapp.net","time":"2026-03-06T19:23:02.7305806Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4432,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-125877153202314:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-125877153202314%3Amatrix.theocloud.dev","duration":159.281647,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917617625510 (WA)"},"time":"2026-03-06T19:23:02.738259961Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:02.73922965Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4425,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982402974976_24?ts=1772559633000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":344.339887,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich mag die S3 gar nicht Domi","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.747463906Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AC8EF7949EEB10C7E7D","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-03T17:40:33Z","event_id":"$iKR4maqzYckVGDse3wutmFag9OasgJwRtnMEObm50B0","part_id":"","time":"2026-03-06T19:23:02.747576282Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4426,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982408808267_479?ts=1771010026000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":343.836255,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Normaler Döner oder Dürüm?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.752786232Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A29B714D167023D3783","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-13T19:13:46Z","event_id":"$jnqpo8bwzAeFCbXe7uyIXPZzk5K71h4QZ2qlKGh4jYY","part_id":"","time":"2026-03-06T19:23:02.752934507Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4438,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915906828883%3Amatrix.theocloud.dev","duration":26.036825,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915906828883","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:02.756886248Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4423,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127505180680381:matrix.theocloud.dev?user_id=%40whatsapp_lid-127505180680381%3Amatrix.theocloud.dev","duration":485.730055,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TmwMKWAePfUzkYDsWXddFsMS","com.beeper.exclude_from_timeline":true,"displayname":"Margarita Pantzali (WA)","membership":"join"},"time":"2026-03-06T19:23:02.782927404Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4441,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915906828883:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915906828883%3Amatrix.theocloud.dev","duration":25.770587,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:02.783023297Z","message":"Request completed"} +{"level":"debug","transaction_id":"1874","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.811969749Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1874","time":"2026-03-06T19:23:02.812295283Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1875","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:02.862651305Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1875","time":"2026-03-06T19:23:02.862795319Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4428,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982487879772_54?ts=1772268886000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":407.463204,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"also mach entspannt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.895469319Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AC007A795C8B439DE72","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-28T08:54:46Z","event_id":"$VEv_xonDJ7sMkoiETLYhstEACNvsiaJU15QrbeJOsik","part_id":"","time":"2026-03-06T19:23:02.895559835Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1876","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.904658598Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1876","time":"2026-03-06T19:23:02.904979244Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4442,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915906828883:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915906828883%3Amatrix.theocloud.dev","duration":133.159265,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915906828883 (WA)"},"time":"2026-03-06T19:23:02.916345294Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:02.917061596Z","message":""} +{"level":"debug","transaction_id":"1877","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:02.943855651Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1877","time":"2026-03-06T19:23:02.943981087Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4433,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982617109784_480?ts=1772123236000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":356.584133,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Einfach warten","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:02.973845056Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A142F05394884C7184E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T16:27:16Z","event_id":"$nPkLZxTXvg4-47mhoQVomchBA-dIKQuyMOuuHt7OTn0","part_id":"","time":"2026-03-06T19:23:02.973992004Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1878","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:02.974769906Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1878","time":"2026-03-06T19:23:02.97487893Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1879","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.017137376Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1879","time":"2026-03-06T19:23:03.017243606Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.017279086Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4446,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-125877153202314:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-125877153202314%3Amatrix.theocloud.dev","duration":18.254727,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:03.035872897Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:03.037017192Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4439,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982748160373_20?ts=1772559634000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":304.297324,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"Voice message.ogg","info":{"duration":17000,"mimetype":"audio/ogg; codecs=opus","size":41144},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":17000,"waveform":[0,2,51,92,87,81,74,72,42,63,25,77,100,82,64,100,100,99,70,88,62,100,100,100,77,69,99,100,90,60,62,53,41,100,95,92,72,27,100,100,67,71,62,85,99,100,75,30,69,92,80,100,70,76,100,81,43,14,52,100,100,100,42,12]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/uyiCFwIzRwAcCPtpuXXpCONn"},"time":"2026-03-06T19:23:03.052777644Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A7E25978B9AF94A9FC9","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-03T17:40:34Z","event_id":"$2_yjSqM0yLO9wjZMpECZjtz8wzmg_uDGBVJ1QyLskDw","part_id":"","time":"2026-03-06T19:23:03.052981723Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4440,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982753834563_39?ts=1771010574000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":299.659872,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oh","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.053618126Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A50C8CE7B9AFC691087","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:22:54Z","event_id":"$6TnGSWyeWm862hCFqnqImn7oKuG7dOiJr3WBDyRFAkk","part_id":"","time":"2026-03-06T19:23:03.053769264Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4447,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-131679435927787%3Amatrix.theocloud.dev","duration":23.993801,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-131679435927787","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:03.061303632Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4450,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131679435927787:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-131679435927787%3Amatrix.theocloud.dev","duration":20.561894,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:03.082316498Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.083277806Z","message":""} +{"level":"debug","transaction_id":"1880","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.106677459Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1880","time":"2026-03-06T19:23:03.106797797Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4452,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915906828883:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915906828883%3Amatrix.theocloud.dev","duration":26.65891,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:03.110373718Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4453,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491639512527%3Amatrix.theocloud.dev","duration":17.677901,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491639512527","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:03.129109239Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4454,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639512527:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639512527%3Amatrix.theocloud.dev","duration":17.145214,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:03.146758644Z","message":"Request completed"} +{"level":"debug","transaction_id":"1881","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.161551922Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1881","time":"2026-03-06T19:23:03.161684622Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4437,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-16114767646828:matrix.theocloud.dev?user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":475.179762,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Aylin (WA)","membership":"join"},"time":"2026-03-06T19:23:03.180497738Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4444,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982896124649_55?ts=1772269987000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":328.812358,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"video.mp4","info":{"duration":3000,"fi.mau.autoplay":true,"fi.mau.gif":true,"fi.mau.hide_controls":true,"fi.mau.loop":true,"fi.mau.no_audio":true,"h":160,"mimetype":"video/mp4","size":23427,"w":160},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/XYAHTcGriyYHJxeGrqvexkqR"},"time":"2026-03-06T19:23:03.225114685Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AF36C9D29E3E0781B0E","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-02-28T09:13:07Z","event_id":"$siJblre0MuzdG_pVZqafjCfVxsPc9AmFj_s7zCKrh2I","part_id":"","time":"2026-03-06T19:23:03.22522329Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4451,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131679435927787:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-131679435927787%3Amatrix.theocloud.dev","duration":145.542637,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491628989538 (WA)"},"time":"2026-03-06T19:23:03.228064611Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.228839091Z","message":""} +{"level":"debug","transaction_id":"1882","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.243984932Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1882","time":"2026-03-06T19:23:03.244115956Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4443,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-32156537630722:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":507.507834,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Aaron (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:03.291283331Z","message":"Request completed"} +{"level":"debug","transaction_id":"1883","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.296753233Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1883","time":"2026-03-06T19:23:03.296969046Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4455,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639512527:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639512527%3Amatrix.theocloud.dev","duration":151.283388,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Brn (WA)"},"time":"2026-03-06T19:23:03.298241291Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"57879650386021@lid","alternate_jid":"491639512527@s.whatsapp.net","time":"2026-03-06T19:23:03.298804219Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4459,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_393349152952%3Amatrix.theocloud.dev","duration":11.530599,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_393349152952","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:03.310887689Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4460,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393349152952:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393349152952%3Amatrix.theocloud.dev","duration":9.094573,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:03.320281606Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4445,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824982974938436_481?ts=1772123245000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":359.171508,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab ich bei Ana auch so gemacht haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.33426646Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AB13D34128B4194394C","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-26T16:27:25Z","event_id":"$YF29VVG8KdeTbFx3g5MbBfOyBH37RkSMY8q0iA2SkJE","part_id":"","time":"2026-03-06T19:23:03.334426818Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1884","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.337478224Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1884","time":"2026-03-06T19:23:03.337690754Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1885","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.386773272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1885","time":"2026-03-06T19:23:03.386884042Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.405026463Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4448,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983053946314_25?ts=1772559657000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":363.853311,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Grandios!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.41796529Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A4EE087546569F42203","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-03T17:40:57Z","event_id":"$UxsVWgnZwQOR4TlxlULO8lTAFRhHx_wuWkvk5KXUUOg","part_id":"","time":"2026-03-06T19:23:03.41813815Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4449,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983056788124_40?ts=1771010576000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":366.278511,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gerne darum","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.423209183Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AD8CC617E505906818E","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:22:56Z","event_id":"$hEYUZalNAeYxutu4OSF9-Hut7ySNUGEKstccUK_ZgIQ","part_id":"","time":"2026-03-06T19:23:03.423377083Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4463,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-131679435927787:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-131679435927787%3Amatrix.theocloud.dev","duration":37.536973,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:03.44289372Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:03.444037595Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4461,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393349152952:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393349152952%3Amatrix.theocloud.dev","duration":128.761092,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Scheggia (WA)"},"time":"2026-03-06T19:23:03.449251805Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"69050206027927@lid","alternate_jid":"393349152952@s.whatsapp.net","time":"2026-03-06T19:23:03.449663036Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4466,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-183588511334611%3Amatrix.theocloud.dev","duration":17.156179,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-183588511334611","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:03.461499125Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4467,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_919150986374%3Amatrix.theocloud.dev","duration":14.932613,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_919150986374","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:03.464983273Z","message":"Request completed"} +{"level":"debug","transaction_id":"1886","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.467413223Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1886","time":"2026-03-06T19:23:03.467531187Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4468,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183588511334611:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-183588511334611%3Amatrix.theocloud.dev","duration":17.07628,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:03.478956533Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4469,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_919150986374:matrix.theocloud.dev/displayname?user_id=%40whatsapp_919150986374%3Amatrix.theocloud.dev","duration":16.743411,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:03.482096918Z","message":"Request completed"} +{"level":"debug","transaction_id":"1887","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.501768604Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1887","time":"2026-03-06T19:23:03.501884123Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1888","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:03.523552528Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1888","time":"2026-03-06T19:23:03.523665533Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4457,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983225842651_482?ts=1772270218000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":315.208144,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.541169317Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A56E8C2920E5A86AFA0","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-28T09:16:58Z","event_id":"$SufWdolIXHmGGxorNipg8pkRqUU_NBYV8tl7OhjCVgA","part_id":"","time":"2026-03-06T19:23:03.541308233Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4471,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_919150986374:matrix.theocloud.dev/displayname?user_id=%40whatsapp_919150986374%3Amatrix.theocloud.dev","duration":91.376165,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nihal (WA)"},"time":"2026-03-06T19:23:03.57366494Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4470,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183588511334611:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-183588511334611%3Amatrix.theocloud.dev","duration":94.991966,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915258436899 (WA)"},"time":"2026-03-06T19:23:03.574083923Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.574573657Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.575728218Z","message":""} +{"level":"debug","transaction_id":"1889","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.590924555Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1889","time":"2026-03-06T19:23:03.591041122Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","req_id":4462,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983335467955_38?ts=1772123251000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":288.09533,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.623734049Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF49636DC8B9CD3171F","sender_id":{"user_id":"4917623702252"},"message_ts":"2026-02-26T16:27:31Z","event_id":"$w-DHFAfe-fApNMaNKRCPE4_JPp5nlzCXQTjh6wZraIQ","part_id":"","time":"2026-03-06T19:23:03.623902089Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:23:03.625578931Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","time":"2026-03-06T19:23:03.625661554Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.626237822Z","message":"197b6fcf50d4d433b0ce124c2ebf21af462819c5a3c331995af42ca40e267b801defa19ff04a1705e061069b2fdeef83ebc7"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A06DB20C328004C79F8","time":"2026-03-06T19:23:03.626403139Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.626868428Z","message":"b148fbe5e0a4cd43c45a42ffe9bf7a13e3aff7901faa9844f77175c11a460f44f0b1c6691e37b4e80f147b4158620f68c5a9"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A31B03903EB3B0E02AC","time":"2026-03-06T19:23:03.626970397Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.627429191Z","message":"e5eee95dab5e4d634acc676505bf9066c32ab0a6554454696db8c6348ebf56bc0ea585c8157e8f8e08e56062668f2e388bb1"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AB384DC390B777F4F5D","time":"2026-03-06T19:23:03.627542545Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.627981922Z","message":"b86b164be997a1c9770e9ff27084182c31409dafd77505a2ff79d1193b1212b1c364b88afdbcb65457f0fd27e34e1f813562"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A5C5B3DF8AFCFCD0F3F","time":"2026-03-06T19:23:03.628077326Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","started_at":"2026-03-06T19:22:00.517355737Z","duration":"1m3.110804701s","time":"2026-03-06T19:23:03.628177829Z","message":"Event that took long finished handling"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.628865286Z","message":"46f2cbca90abc9658d11e649824a6beeb7b0fc15d046a9b025bcff9a283ad98b12a5123a8192e62e0b1b17e2b357e47a6d16"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AE0AC3CA67BA8510CD5","time":"2026-03-06T19:23:03.628972424Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.629431567Z","message":"8d65b35914d58eec8ea279a4ccc9df20adf3cb02598e333ad0378e885dd1b0b0d2863f9d4d17178b7d89bd4f1d4ca7f2b06d"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A48020C80A8DB626BD0","time":"2026-03-06T19:23:03.629537378Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.629964183Z","message":"e4a63999e16f86c8651d89173894dd117b53c96cd1ec5fab322828df66e26b6753e7e53cd08fdf7c93e38e54a874e0bc2233"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A1DF87FAFDDDB86F5D9","time":"2026-03-06T19:23:03.630057772Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.630503226Z","message":"a473907eecaeb45c676a29a99a438c95ca565e844476ee327a9814f6eeda1e0d238253dfb276967d878c9a406d93fcad9cf3"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC2EB82DE3B3386CEAD","time":"2026-03-06T19:23:03.630604706Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4456,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-273069826400467:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":449.303922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rhUmBVbIAEZKMsDzvFGnaMzv","com.beeper.exclude_from_timeline":true,"displayname":"Michał (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:03.630782245Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.63110771Z","message":"3e4fa9400fdd9d8acd761c4343ee12f6e4d364ec699f65682f1b4469e09f2aae9e42b33d34945c771cc8612d901c5a836946"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF2B88C73AAC21F1728","time":"2026-03-06T19:23:03.631225464Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.631805084Z","message":"a5f2f7513299769809577438ed8d5e5ea107fc879d5bcf14be76d6cdf089b820143292a5224369efca3b331e64dee539fb64"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3FED028E0DDF789225","time":"2026-03-06T19:23:03.631914597Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.632437855Z","message":"74f6c8d29d3dfc75bce05e9902580e5bfceeff078ce7a4e40df7444441d8d28c3c6b2f9946bafbce2710ecab25044507b25a"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A36E837400BF47182F0","time":"2026-03-06T19:23:03.632547647Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.632977176Z","message":"dbfe57ae8ae32e574ec878103a667cfc8558b665c2656ff254ab310ccc0cadf14d16678534eb1eada25599cb7b91f9fcf301"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A2FCEA345B5EA99CE82","time":"2026-03-06T19:23:03.633067343Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.634820801Z","message":"1fc14e55d1fe16c8901b87edcfb2da14b29a8c0f61a92606e71489bec1d5df6303b1a884a24bf6f2b99da8494ea93d0253a2"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACF22D8185A2E17637C","time":"2026-03-06T19:23:03.63493178Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.635483883Z","message":"6df7c91598283949190ba9144477c70e303535f919ae2a5a5f36c444d26a323a7f32c782b5d78dbae7b5031f645f37faaa44"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF78F9B4C7E8B71157D","time":"2026-03-06T19:23:03.635591719Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:03.63606511Z","message":"43cb3f8c22257634c3954df3269c6111d47c9ae36b684377502f57744224d127c21e8d0ffdb4d1716b571c1b5d5e454afec9"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917623702252@s.whatsapp.net","latest_message_ts":"2026-02-26T16:27:31Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A8C2D81D190BF2894A1","time":"2026-03-06T19:23:03.636171549Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.670542575Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.671176812Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.672690433Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.673442633Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.674219488Z","message":""} +{"level":"debug","transaction_id":"1890","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.674622198Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1890","time":"2026-03-06T19:23:03.67471865Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.674914627Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.675717464Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.678678773Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.678739745Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.680193301Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.680276972Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.680915749Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.684683806Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.684762518Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.697519477Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4458,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-32156537630722:matrix.theocloud.dev?user_id=%40whatsapp_lid-32156537630722%3Amatrix.theocloud.dev","duration":406.296349,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Aaron (WA)","membership":"join"},"time":"2026-03-06T19:23:03.698364777Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4464,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983419277974_21?ts=1772559687000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":284.198344,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich gebe theo die nachricht weiter!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.703623685Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3ADDB951966EA5E33E0C","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-03T17:41:27Z","event_id":"$ZkC8yV3z6VzXKantiaOXfw9ubQHFmCFOQc9Lz9h2Fvo","part_id":"","time":"2026-03-06T19:23:03.70372775Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4465,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983424274765_41?ts=1771010578000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":294.478139,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Dürüm","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.718910398Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A952E0342E9EDDBE556","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:22:58Z","event_id":"$C18R8cTr5Ah6UTWrgjmEDDQfJT2ymYfpZCp2kLyZlZo","part_id":"","time":"2026-03-06T19:23:03.719044495Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.726046316Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:03.72913411Z","message":""} +{"level":"debug","transaction_id":"1891","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.732704863Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1891","time":"2026-03-06T19:23:03.733030118Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1892","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.756588592Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1892","time":"2026-03-06T19:23:03.75695701Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4472,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983542237344_56?ts=1772398118000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":272.665929,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"Sent an album:","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.815054272Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AD7EB63D8883946EEAD","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-03-01T20:48:38Z","event_id":"$qHssKAkk38KgUbylHtLGdB1_Xl6HSXdQCBZRMeajtsM","part_id":"","time":"2026-03-06T19:23:03.815209461Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1893","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:03.851927045Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1893","time":"2026-03-06T19:23:03.852023916Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4477,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_919150986374%3Amatrix.theocloud.dev","duration":147.500384,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<57326 bytes>","time":"2026-03-06T19:23:03.886370777Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4480,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_919150986374:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_919150986374%3Amatrix.theocloud.dev","duration":15.389171,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:03.902021158Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4475,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983704426103_6?ts=1772559732000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":215.523201,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Grandios ✨","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.920076626Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3A0840D0A0DD5EFDD784","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-03-03T17:42:12Z","event_id":"$pEdZw15bF74Jq3JaYqyivlOKHcCUyJjsfHMDXDVfNpU","part_id":"","time":"2026-03-06T19:23:03.920238869Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4476,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983720053436_42?ts=1771010583000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":210.090315,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber wenn schon zu spät ist egal","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:03.930296356Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AAC605B13104DE5F708","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:23:03Z","event_id":"$P17FnCYXjt6qVtb-OAixCf_xm3ZvQW8P0aD29O9ye5I","part_id":"","time":"2026-03-06T19:23:03.930450428Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4481,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/IJcsfpbrlPqHWENCmlaHcpth?user_id=%40whatsapp_919150986374%3Amatrix.theocloud.dev","duration":28.716252,"status_code":200,"response_length":57326,"response_mime":"image/jpeg","time":"2026-03-06T19:23:03.930839519Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4478,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-183588511334611%3Amatrix.theocloud.dev","duration":210.966137,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<79688 bytes>","time":"2026-03-06T19:23:03.98512165Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4483,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_919150986374:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_919150986374%3Amatrix.theocloud.dev","duration":65.86595,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IJcsfpbrlPqHWENCmlaHcpth"},"time":"2026-03-06T19:23:03.996903961Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-273069826400467:matrix.theocloud.dev?user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":365.323558,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rhUmBVbIAEZKMsDzvFGnaMzv","com.beeper.exclude_from_timeline":true,"displayname":"Michał (WA)","membership":"join"},"time":"2026-03-06T19:23:03.998845993Z","message":"Request completed"} +{"level":"debug","transaction_id":"1894","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.001614468Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1894","time":"2026-03-06T19:23:04.001696114Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4485,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183588511334611:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-183588511334611%3Amatrix.theocloud.dev","duration":22.378211,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:04.007903829Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4486,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":14.962645,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-245517661540533","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:04.013105187Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4488,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ogGYRpQmcJtTnZfWvyZgKNsv?user_id=%40whatsapp_lid-183588511334611%3Amatrix.theocloud.dev","duration":16.722529,"status_code":200,"response_length":79688,"response_mime":"image/jpeg","time":"2026-03-06T19:23:04.024745718Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4489,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-245517661540533:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":14.935057,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:04.028520969Z","message":"Request completed"} +{"level":"debug","transaction_id":"1895","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.041048006Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1895","time":"2026-03-06T19:23:04.041404272Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4490,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183588511334611:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-183588511334611%3Amatrix.theocloud.dev","duration":32.435279,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ogGYRpQmcJtTnZfWvyZgKNsv"},"time":"2026-03-06T19:23:04.057455407Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:04.058574838Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4492,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-104239024050301%3Amatrix.theocloud.dev","duration":23.6536,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-104239024050301","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:04.082533229Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4474,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95765573664918:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":398.131656,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wAsGvRuajQqSBvCWvpxVfrUV","com.beeper.exclude_from_timeline":true,"displayname":"Raha (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:04.097238157Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4493,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-104239024050301:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-104239024050301%3Amatrix.theocloud.dev","duration":30.606391,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:04.113574388Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4479,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983816381483_57?ts=1772398119000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":317.67532,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":112153,"w":942},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/yxGvkwhSDZOJkFLDNtHZipUg"},"time":"2026-03-06T19:23:04.134309212Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AC76E3023405B6B9982","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-03-01T20:48:39Z","event_id":"$2cs19LCx04vBKveRkn2jke79o2ojm4GwdfkPoRzc39o","part_id":"","time":"2026-03-06T19:23:04.134491361Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1896","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.16526705Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1896","time":"2026-03-06T19:23:04.165388645Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4491,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-245517661540533:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":146.147261,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nihal (WA)"},"time":"2026-03-06T19:23:04.174908557Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:04.175747571Z","message":""} +{"level":"debug","transaction_id":"1897","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.212542471Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1897","time":"2026-03-06T19:23:04.212904114Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4495,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-104239024050301:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-104239024050301%3Amatrix.theocloud.dev","duration":119.986815,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915111021159 (WA)"},"time":"2026-03-06T19:23:04.233778552Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:04.234628183Z","message":""} +{"level":"debug","transaction_id":"1898","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:04.243590335Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1898","time":"2026-03-06T19:23:04.243688393Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4482,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983921077744_483?ts=1772559925000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":351.266208,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also Mittwoch passt mir auch echt gut und frühstücken bei Chrissi um 10 Uhr erst Recht wow","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:04.272551453Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A2FA22D184D43F5ABC4","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T17:45:25Z","event_id":"$mdAqpOd5uJE5qmIiSArmkRamr70pFu6D6TgyhRhH7nY","part_id":"","time":"2026-03-06T19:23:04.272722916Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4484,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824983931268211_43?ts=1771010587000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":348.857979,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wo seid ihr gerade ?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:04.280260287Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AB7C177E306342A3DAE","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:23:07Z","event_id":"$o_40CyZRpUow0krDfKitmZa9uFSy_KoYc64YTDAntlE","part_id":"","time":"2026-03-06T19:23:04.280410238Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1899","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.315777842Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1899","time":"2026-03-06T19:23:04.31587618Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1900","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.331544022Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1900","time":"2026-03-06T19:23:04.331632303Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4496,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824984135435767_58?ts=1772398119000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":260.54663,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":57832,"w":942},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/dtUNoxXeeUixXJdwbUufalhy"},"time":"2026-03-06T19:23:04.396229778Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AA2DCF493DC3F259E44","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-03-01T20:48:39Z","event_id":"$FeF_wPNbeAxIjL148OoXs2jk9cepsOKVcO2Q9FrTlJ0","part_id":"","time":"2026-03-06T19:23:04.396490848Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4487,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-196314398773332:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":434.074969,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917656766415 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:04.43378512Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:04.444599557Z","message":""} +{"level":"debug","transaction_id":"1901","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.462973784Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1901","time":"2026-03-06T19:23:04.463087348Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4494,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95765573664918:matrix.theocloud.dev?user_id=%40whatsapp_lid-95765573664918%3Amatrix.theocloud.dev","duration":391.679632,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wAsGvRuajQqSBvCWvpxVfrUV","com.beeper.exclude_from_timeline":true,"displayname":"Raha (WA)","membership":"join"},"time":"2026-03-06T19:23:04.489570255Z","message":"Request completed"} +{"level":"debug","transaction_id":"1902","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.516985556Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1902","time":"2026-03-06T19:23:04.517357047Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4498,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824984281367076_484?ts=1771010606000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":273.195193,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"schon zu spät","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:04.554713897Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3EF77D1676B18D00A9","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-13T19:23:26Z","event_id":"$t5517mZwnO1WmppakVGPQKj1zMgisHmwyXyLvy1AdsE","part_id":"","time":"2026-03-06T19:23:04.554913366Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:04.561550052Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4497,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824984273612077_7?ts=1772559948624&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":292.510265,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$mdAqpOd5uJE5qmIiSArmkRamr70pFu6D6TgyhRhH7nY","key":"🙏"}},"time":"2026-03-06T19:23:04.566277182Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A2FA22D184D43F5ABC4","target_part_id":"","reaction_sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"reaction_ts":"2026-03-03T17:45:48.624Z","event_id":"$vCGO2u3uLhG4MQ0a9eebFIg84IRwBtS4OI1MMDwEyHs","time":"2026-03-06T19:23:04.566481959Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"1903","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.567475674Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1903","time":"2026-03-06T19:23:04.567653842Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4504,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-104239024050301:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-104239024050301%3Amatrix.theocloud.dev","duration":26.675462,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:04.58852409Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:04.589283554Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4506,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-95494353215566%3Amatrix.theocloud.dev","duration":11.533113,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-95494353215566","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:04.601007546Z","message":"Request completed"} +{"level":"debug","transaction_id":"1904","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.607111126Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1904","time":"2026-03-06T19:23:04.607235795Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4507,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95494353215566:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-95494353215566%3Amatrix.theocloud.dev","duration":9.478007,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:04.610781264Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:04.622323597Z","message":"7c60f5df47f9c53aac00e005"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:04.623217647Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A1DF87FAFDDDB86F5D9","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A1DF87FAFDDDB86F5D9","time":"2026-03-06T19:23:04.623316264Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4501,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":186.883147,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<57326 bytes>","time":"2026-03-06T19:23:04.640823959Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4510,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-245517661540533:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":8.472838,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:04.649593137Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4511,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/RvqWGszqndJPwHTfgaQnmdYB?user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":11.044846,"status_code":200,"response_length":57326,"response_mime":"image/jpeg","time":"2026-03-06T19:23:04.660731433Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4512,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-245517661540533:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":22.966632,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RvqWGszqndJPwHTfgaQnmdYB"},"time":"2026-03-06T19:23:04.683866803Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"919150986374@s.whatsapp.net","alternate_jid":"245517661540533@lid","time":"2026-03-06T19:23:04.684535053Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4499,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824984397374003_59?ts=1772398119000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":305.782659,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":96777,"w":942},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/RXisECVogpoyNBGfuIHPSdRv"},"time":"2026-03-06T19:23:04.703391681Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A854172BD914742206F","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-03-01T20:48:39Z","event_id":"$v21v2DxT0VxoMVfupEdYiSDfpjrUVjmqhZeKsLGusxU","part_id":"","time":"2026-03-06T19:23:04.703524171Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4508,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95494353215566:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-95494353215566%3Amatrix.theocloud.dev","duration":93.617681,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491783166911 (WA)"},"time":"2026-03-06T19:23:04.704574458Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:04.705305217Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4513,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915780931514%3Amatrix.theocloud.dev","duration":31.083832,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915780931514","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:04.716193408Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4515,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915780931514:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915780931514%3Amatrix.theocloud.dev","duration":14.485204,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:04.731033969Z","message":"Request completed"} +{"level":"debug","transaction_id":"1905","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.737434937Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1905","time":"2026-03-06T19:23:04.737531808Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:04.746065339Z","message":"570a6fcaee1d3057ba23d013"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:04.746873273Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4503,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824984555817962_485?ts=1771010619000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":262.314546,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"beim dönerladen noch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:04.81827785Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A48E58DC9EABB58CEAF","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-13T19:23:39Z","event_id":"$m-Zmbye81Ta4Zw_OC1zqdp7OHnF8aEK200TEd3HEljY","part_id":"","time":"2026-03-06T19:23:04.818440582Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:04.819519435Z","message":"aab67a7de31ee8b511d5961f"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:04.81999059Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4500,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-196314398773332:matrix.theocloud.dev?user_id=%40whatsapp_lid-196314398773332%3Amatrix.theocloud.dev","duration":394.870933,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917656766415 (WA)","membership":"join"},"time":"2026-03-06T19:23:04.829416005Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:04.830048496Z","message":"5fa8477986fd3e1fe64e3d4b"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:04.833073013Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A1DF87FAFDDDB86F5D9","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A1DF87FAFDDDB86F5D9","req_id":4509,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":199.223427,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<10322 bytes>","time":"2026-03-06T19:23:04.833193281Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4516,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915780931514:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915780931514%3Amatrix.theocloud.dev","duration":112.822471,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"الزير (WA)"},"time":"2026-03-06T19:23:04.844043757Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"21273073692847@lid","alternate_jid":"4915780931514@s.whatsapp.net","time":"2026-03-06T19:23:04.844669054Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"38504566390811@lid","alt_jid":"4917656979328@s.whatsapp.net","source_push_name":"Al koudsi","alt_push_name":"Ahmad Al koudsi","time":"2026-03-06T19:23:04.844752236Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"38504566390811@lid","alternate_jid":"4917656979328@s.whatsapp.net","time":"2026-03-06T19:23:04.844884727Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491748137002@s.whatsapp.net","time":"2026-03-06T19:23:04.845226465Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4505,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824984567137289_7?ts=1772560059370&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":280.75233,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$mdAqpOd5uJE5qmIiSArmkRamr70pFu6D6TgyhRhH7nY","key":"💓"}},"time":"2026-03-06T19:23:04.84801708Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A2FA22D184D43F5ABC4","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2026-03-03T17:47:39.37Z","event_id":"$bmGUxwo9G94reBhcDvn0GgzhcXBTaI1saWu2QYNjnUc","time":"2026-03-06T19:23:04.848162073Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4520,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491748137002%3Amatrix.theocloud.dev","duration":20.219039,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491748137002","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:04.865794157Z","message":"Request completed"} +{"level":"debug","transaction_id":"1906","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:04.872372105Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1906","time":"2026-03-06T19:23:04.8724893Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4522,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491748137002:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491748137002%3Amatrix.theocloud.dev","duration":11.021939,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:04.877297377Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:04.878005158Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4524,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-95494353215566:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-95494353215566%3Amatrix.theocloud.dev","duration":13.829246,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:04.892194022Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:04.892936165Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:04.929826958Z","message":"6fc654cc6222dd0a0a718fed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4502,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66709616595045:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":439.494445,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Christian (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:04.930091381Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:04.930834921Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4525,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-171970641588327%3Amatrix.theocloud.dev","duration":45.714797,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-171970641588327","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:04.938859162Z","message":"Request completed"} +{"level":"debug","transaction_id":"1907","content":{"pdu":2,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:04.940981107Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1907","time":"2026-03-06T19:23:04.94131656Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4527,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-171970641588327:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-171970641588327%3Amatrix.theocloud.dev","duration":25.350905,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:04.964639666Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:04.986043858Z","message":"2258add99ff018ae8048c4b0"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:04.98684418Z","message":""} +{"level":"debug","transaction_id":"1908","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.006776656Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1908","time":"2026-03-06T19:23:05.007095137Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4523,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491748137002:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491748137002%3Amatrix.theocloud.dev","duration":147.7764,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491748137002 (WA)"},"time":"2026-03-06T19:23:05.025278416Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.026082509Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4514,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824984704407745_60?ts=1772398119000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":347.946119,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":84075,"w":942},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/MngXQKhvwbfzcUxTNmNOyxpQ"},"time":"2026-03-06T19:23:05.052610395Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A71A2F9C48471A38AFE","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-03-01T20:48:39Z","event_id":"$QpG-R1Z1cAF63FlBzeLXWrvJJlmm3sVYwXzAkX_yinE","part_id":"","time":"2026-03-06T19:23:05.052768867Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4528,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-171970641588327:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-171970641588327%3Amatrix.theocloud.dev","duration":109.07837,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wik Wak (WA)"},"time":"2026-03-06T19:23:05.073943068Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.074816724Z","message":""} +{"level":"debug","transaction_id":"1909","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.099079767Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1909","time":"2026-03-06T19:23:05.099222245Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:05.140565898Z","message":"4c1dfd902de8d48643d4a18c"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.141358118Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:05.14131272Z","message":"a01b0b40c7b96a37af955c48"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.142312931Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4517,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824984819391623_44?ts=1771010636000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":334.488783,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:05.15406465Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A1A8544473741C8A8E6","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:23:56Z","event_id":"$QHKl-0XdDhreE4DWLb0CmR07rsOig5XTml4g_bX2GBA","part_id":"","time":"2026-03-06T19:23:05.15417109Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4521,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824984848803922_486?ts=1772559954000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":332.718772,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab zwar nen Firmenmeeting um 14 Uhr, aber kann auch mein Laptop mitnehmen und dann würd ich nachmittags/abends ins Gym","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:05.181665033Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A1E6343C4464B500C2E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T17:45:54Z","event_id":"$4lqyCpmsL5W1siqzNfVo9pAfeANf5xNp6YdAN8OZSYU","part_id":"","time":"2026-03-06T19:23:05.181789003Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:05.183227054Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A1DF87FAFDDDB86F5D9","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A1DF87FAFDDDB86F5D9","req_id":4519,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824984833476841_39?ts=1772824984000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":354.535243,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":10322,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":10322,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/LEdLGIbOFLrtVMruCzRGFWHq"},"m.relates_to":{"event_id":"$WRWf4NTX5IqQXsvw1E_zOn5lL6XeirILLGIKDcas5wk","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/LEdLGIbOFLrtVMruCzRGFWHq"},"time":"2026-03-06T19:23:05.188229153Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A1DF87FAFDDDB86F5D9","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A1DF87FAFDDDB86F5D9","event_id":"$AfrnKod3QSZ7rgLp22KRy3oh2Son5NFQQnYAuGCmGwk","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A1DF87FAFDDDB86F5D9","time":"2026-03-06T19:23:05.188325954Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A48020C80A8DB626BD0","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A48020C80A8DB626BD0","time":"2026-03-06T19:23:05.188899149Z","message":"Handling remote event"} +{"level":"warn","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A48020C80A8DB626BD0","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A48020C80A8DB626BD0","error":"failed to decrypt notification: cipher: message authentication failed","time":"2026-03-06T19:23:05.189677121Z","message":"Failed to decrypt media retry notification"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4532,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491748137002:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491748137002%3Amatrix.theocloud.dev","duration":18.937574,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:05.202458664Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917630390609@s.whatsapp.net","time":"2026-03-06T19:23:05.203297958Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","transaction_id":"1910","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.208264577Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1910","time":"2026-03-06T19:23:05.208352368Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4534,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917630390609%3Amatrix.theocloud.dev","duration":13.012302,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917630390609","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:05.216639845Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:05.220761932Z","message":"87ad6fc0b81f5b4f9b5dc4e5"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.221280231Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4535,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630390609:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917630390609%3Amatrix.theocloud.dev","duration":9.493791,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:05.226444154Z","message":"Request completed"} +{"level":"debug","transaction_id":"1911","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.235932637Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1911","time":"2026-03-06T19:23:05.236043476Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4518,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-157088495980744:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":450.740996,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MteePNhLunKwnvXsfYlaKbQf","com.beeper.exclude_from_timeline":true,"displayname":"Mihoshi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:05.281302274Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:05.293535345Z","message":"07f46165f3c34b0d4843e4b1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.294264009Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4536,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630390609:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917630390609%3Amatrix.theocloud.dev","duration":95.404244,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Saad (WA)"},"time":"2026-03-06T19:23:05.322024051Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.322857478Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:05.326553039Z","message":"d06a375edcf7ce42a7c01c09"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.327276185Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4529,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985053831027_61?ts=1772398119000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":288.051469,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":97045,"w":942},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ynXbrGPthlFPAFlHDUYqRcrP"},"time":"2026-03-06T19:23:05.342135394Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A3EC89220EBB1B6A8C7","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-03-01T20:48:39Z","event_id":"$s8qTcmVtHso-MThH10zoeqxAh9adzE9Wl1M1MJxsHoc","part_id":"","time":"2026-03-06T19:23:05.342312234Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4526,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66709616595045:matrix.theocloud.dev?user_id=%40whatsapp_lid-66709616595045%3Amatrix.theocloud.dev","duration":412.198085,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Christian (WA)","membership":"join"},"time":"2026-03-06T19:23:05.345460861Z","message":"Request completed"} +{"level":"debug","transaction_id":"1912","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.348574426Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1912","time":"2026-03-06T19:23:05.348851001Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1913","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.402782874Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1913","time":"2026-03-06T19:23:05.402916552Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:05.430010578Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4530,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985154746101_45?ts=1771010644000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":284.103498,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gib Bescheid wenn ihr los geht :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:05.438978807Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AB2C17C18CD0167F56B","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-13T19:24:04Z","event_id":"$yGUrHlhI9PehP0nI88zDaMshzxBMnGIrtPusteFSh58","part_id":"","time":"2026-03-06T19:23:05.43914112Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1914","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.457250436Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1914","time":"2026-03-06T19:23:05.457494464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4531,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824985182488752_8?ts=1772560066622&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":295.44699,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$4lqyCpmsL5W1siqzNfVo9pAfeANf5xNp6YdAN8OZSYU","key":"❤️"}},"time":"2026-03-06T19:23:05.478055102Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A1E6343C4464B500C2E","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2026-03-03T17:47:46.622Z","event_id":"$wnWbI1VI6GQ16fy2q8DvNkw_VCKmCcSoYgBqxBfc-Hc","time":"2026-03-06T19:23:05.478176558Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:05.478768819Z","message":"a01bdddf5a040b12a099bcbf"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:05.479442448Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.479540785Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A48020C80A8DB626BD0","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A48020C80A8DB626BD0","req_id":4533,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985190046447_487?ts=1772824984000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":290.664614,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"* Failed to bridge media after re-requesting it from your phone: failed to decrypt notification: cipher: message authentication failed\n\n","m.mentions":{},"m.new_content":{"body":"Failed to bridge media after re-requesting it from your phone: failed to decrypt notification: cipher: message authentication failed\n\n","m.mentions":{},"msgtype":"m.notice"},"m.relates_to":{"event_id":"$vdZmG00aAIe_Wb3AlFaTGCzvFh96P77xWlxrNGEFWI0","rel_type":"m.replace"},"msgtype":"m.notice"},"time":"2026-03-06T19:23:05.480911369Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A48020C80A8DB626BD0","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A48020C80A8DB626BD0","event_id":"$IxKJ96vceL3vPZDIy1a5Sx3uv9zDnovzE7TR-LSlIjA","part_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3A48020C80A8DB626BD0","time":"2026-03-06T19:23:05.481001046Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A5C5B3DF8AFCFCD0F3F","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A5C5B3DF8AFCFCD0F3F","time":"2026-03-06T19:23:05.481487916Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1915","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.496704298Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1915","time":"2026-03-06T19:23:05.496806477Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4538,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985343191408_62?ts=1772398120000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":227.581877,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":72458,"w":942},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/kTMBsYsYpPYJTgeukBmSWSLs"},"time":"2026-03-06T19:23:05.570998246Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A75995E5068C03FA80D","sender_id":{"user_id":"4917620338641"},"message_ts":"2026-03-01T20:48:40Z","event_id":"$Qptbq_TONr-6bzSq1bjh6Ys78bysA_IC11VDyh2B-x8","part_id":"","time":"2026-03-06T19:23:05.571119562Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4537,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-157088495980744:matrix.theocloud.dev?user_id=%40whatsapp_lid-157088495980744%3Amatrix.theocloud.dev","duration":341.134199,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MteePNhLunKwnvXsfYlaKbQf","com.beeper.exclude_from_timeline":true,"displayname":"Mihoshi (WA)","membership":"join"},"time":"2026-03-06T19:23:05.62306184Z","message":"Request completed"} +{"level":"info","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:23:05.62365033Z","message":"Fetching messages for forward backfill"} +{"level":"debug","transaction_id":"1916","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.644969454Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1916","time":"2026-03-06T19:23:05.645070097Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A5C5B3DF8AFCFCD0F3F","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A5C5B3DF8AFCFCD0F3F","req_id":4542,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":159.217811,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<19870 bytes>","time":"2026-03-06T19:23:05.651820555Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4540,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985440038173_488?ts=1771010809000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":239.161225,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gehen jetzt los :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:05.679369465Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AF0A0509C7AB1CA72F5","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-13T19:26:49Z","event_id":"$pzHzk8tSr-_nVfUW1oy6dLRszvZ16upq1iLvOiHI94k","part_id":"","time":"2026-03-06T19:23:05.679548959Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1917","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.698040801Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1917","time":"2026-03-06T19:23:05.698402024Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4541,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985478620056_26?ts=1772560011000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":254.598099,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":983,"mimetype":"image/jpeg","size":74393,"w":1170},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/jQTGmwQXRYSxJABLJKKiEYcr"},"time":"2026-03-06T19:23:05.73340184Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A2D9A061BE43A64F1DC","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-03T17:46:51Z","event_id":"$FUOtrVWyIxwC7JmHb3Irr-7YiHWTZccEJfJULWU44Yk","part_id":"","time":"2026-03-06T19:23:05.733522457Z","message":"Sent message part to Matrix"} +{"level":"warn","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"120363192861790277@g.us:195790463058158@lid:3A2FA22D184D43F5ABC4","PartID":null},"time":"2026-03-06T19:23:05.734593208Z","message":"Reply target message not found in database"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4539,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-99939661148216:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":404.772183,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LCFaAaSzAqspzYhRWICrFPdb","com.beeper.exclude_from_timeline":true,"displayname":"Ahmed (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:05.750882436Z","message":"Request completed"} +{"level":"debug","transaction_id":"1918","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.763532606Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1918","time":"2026-03-06T19:23:05.763610969Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4546,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917630390609%3Amatrix.theocloud.dev","duration":140.494512,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<6939 bytes>","time":"2026-03-06T19:23:05.768454316Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4551,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630390609:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917630390609%3Amatrix.theocloud.dev","duration":12.309061,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:05.781138289Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4552,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VSgjxsQEICNRXGsjoaJGOBYN?user_id=%40whatsapp_4917630390609%3Amatrix.theocloud.dev","duration":10.294742,"status_code":200,"response_length":6939,"response_mime":"image/jpeg","time":"2026-03-06T19:23:05.791582772Z","message":"Request completed"} +{"level":"debug","transaction_id":"1919","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.80176374Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1919","time":"2026-03-06T19:23:05.802034589Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4553,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630390609:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917630390609%3Amatrix.theocloud.dev","duration":31.743352,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VSgjxsQEICNRXGsjoaJGOBYN"},"time":"2026-03-06T19:23:05.82358049Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917641189496@s.whatsapp.net","time":"2026-03-06T19:23:05.824321516Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4544,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-171970641588327%3Amatrix.theocloud.dev","duration":221.486747,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22940 bytes>","time":"2026-03-06T19:23:05.830993472Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4554,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917641189496%3Amatrix.theocloud.dev","duration":14.410542,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917641189496","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:05.839215297Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4555,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-171970641588327:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-171970641588327%3Amatrix.theocloud.dev","duration":10.72923,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:05.842054731Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4556,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641189496:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641189496%3Amatrix.theocloud.dev","duration":16.621397,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:05.856304916Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4557,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/mODkhRBKBjXICXcogpqdCVEb?user_id=%40whatsapp_lid-171970641588327%3Amatrix.theocloud.dev","duration":19.512445,"status_code":200,"response_length":22940,"response_mime":"image/jpeg","time":"2026-03-06T19:23:05.861727256Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4559,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-171970641588327:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-171970641588327%3Amatrix.theocloud.dev","duration":18.529486,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mODkhRBKBjXICXcogpqdCVEb"},"time":"2026-03-06T19:23:05.880525495Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:05.881751435Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4543,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985571897046_489?ts=1772407147000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":340.05381,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ist das die WG?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:05.912114776Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3AF84C71F103E4F8DB","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-01T23:19:07Z","event_id":"$2znEBVeGeaQRl199R46K5dNxLpua1d_6tLC7NQPuWKM","part_id":"","time":"2026-03-06T19:23:05.912264028Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4560,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-275436907065507%3Amatrix.theocloud.dev","duration":31.805582,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-275436907065507","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:05.913827027Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4562,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-275436907065507:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-275436907065507%3Amatrix.theocloud.dev","duration":25.015173,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:05.939203355Z","message":"Request completed"} +{"level":"debug","transaction_id":"1920","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:05.974413046Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1920","time":"2026-03-06T19:23:05.974528984Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A5C5B3DF8AFCFCD0F3F","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A5C5B3DF8AFCFCD0F3F","req_id":4547,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985652261749_40?ts=1772824984000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":341.709629,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":19870,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":19870,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AzSWmhcLSQsNYfGMNozNogiX"},"m.relates_to":{"event_id":"$jPweuZREcO5Pmsc2xaFd15I1aKQlYNrDSwmjqBp7DxA","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AzSWmhcLSQsNYfGMNozNogiX"},"time":"2026-03-06T19:23:05.994291185Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A5C5B3DF8AFCFCD0F3F","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A5C5B3DF8AFCFCD0F3F","event_id":"$GcvbOu-Fe0tMpEXEyepi6Rn6yDIvKDakbHacO0hKWr8","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A5C5B3DF8AFCFCD0F3F","time":"2026-03-06T19:23:05.994490166Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB384DC390B777F4F5D","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AB384DC390B777F4F5D","time":"2026-03-06T19:23:05.995278475Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4558,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641189496:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641189496%3Amatrix.theocloud.dev","duration":140.822212,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917641189496 (WA)"},"time":"2026-03-06T19:23:05.997366198Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:05.998131878Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4548,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985680406482_46?ts=1771369271000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":317.783086,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Danke nochmals fürs Essen kochen und einkaufen, war sehr lecker!! :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:05.998385266Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AFF255C55A3D2E63EF1","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-17T23:01:11Z","event_id":"$9O8XrlmVK8U-0byV484zQgPsUe4goFDV9i8X3G_m63c","part_id":"","time":"2026-03-06T19:23:05.998467609Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1921","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.062872041Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1921","time":"2026-03-06T19:23:06.063055167Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4549,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985734804690_27?ts=1772560018000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":333.879898,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hervorragend!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:06.068805137Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A4C59B459A7190630AE","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-03T17:46:58Z","event_id":"$6Y3F63rYuaVkJmH-NKLfkHeDhwkYKE00XkWi-zAhIzI","part_id":"","time":"2026-03-06T19:23:06.068911367Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","req_id":4545,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21PZDALpQTBwXmrEYnaX:matrix.theocloud.dev/state/m.space.child/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev?ts=1772824985623&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":445.162978,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:23:06.072001884Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","space_room_id":"!PZDALpQTBwXmrEYnaX:matrix.theocloud.dev","time":"2026-03-06T19:23:06.072396632Z","message":"Added portal to space"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4564,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-275436907065507:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-275436907065507%3Amatrix.theocloud.dev","duration":157.637072,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Silvia🌻 (WA)"},"time":"2026-03-06T19:23:06.097079986Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:06.097869761Z","message":""} +{"level":"debug","transaction_id":"1922","content":{"pdu":3,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.105245238Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1922","time":"2026-03-06T19:23:06.105388345Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:06.163553562Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4550,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-99939661148216:matrix.theocloud.dev?user_id=%40whatsapp_lid-99939661148216%3Amatrix.theocloud.dev","duration":419.065809,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LCFaAaSzAqspzYhRWICrFPdb","com.beeper.exclude_from_timeline":true,"displayname":"Ahmed (WA)","membership":"join"},"time":"2026-03-06T19:23:06.170516551Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:06.171075638Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4568,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641189496:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917641189496%3Amatrix.theocloud.dev","duration":12.39797,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:06.176245707Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4569,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491799302414%3Amatrix.theocloud.dev","duration":20.764367,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491799302414","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:06.192048205Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4570,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917664201620%3Amatrix.theocloud.dev","duration":18.785947,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917664201620","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:06.195740483Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB384DC390B777F4F5D","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AB384DC390B777F4F5D","req_id":4566,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":196.071727,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<19870 bytes>","time":"2026-03-06T19:23:06.199609252Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4571,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491799302414:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491799302414%3Amatrix.theocloud.dev","duration":17.072019,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:06.209419987Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4572,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664201620:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917664201620%3Amatrix.theocloud.dev","duration":14.710026,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:06.210689718Z","message":"Request completed"} +{"level":"debug","transaction_id":"1923","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.217842747Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1923","time":"2026-03-06T19:23:06.218091805Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","req_id":4561,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824985913138662_63?ts=1772565733884&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":336.51721,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$2znEBVeGeaQRl199R46K5dNxLpua1d_6tLC7NQPuWKM","key":"👍️"}},"time":"2026-03-06T19:23:06.24976322Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","target_message_id":"4917620338641@s.whatsapp.net:4917641870516@s.whatsapp.net:3A3AF84C71F103E4F8DB","target_part_id":"","reaction_sender_id":{"user_id":"4917620338641"},"reaction_ts":"2026-03-03T19:22:13.884Z","event_id":"$paNp5qX3puWC8RHa1bjWjrtCZGjxv_VNiboPRFTUwqw","time":"2026-03-06T19:23:06.249874199Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:23:06.251554882Z","message":"Backfill finished"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","time":"2026-03-06T19:23:06.251631429Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"4917620338641@s.whatsapp.net","latest_message_ts":"2026-03-01T23:19:07Z","started_at":"2026-03-06T19:22:00.516316206Z","duration":"1m5.735489828s","time":"2026-03-06T19:23:06.251818257Z","message":"Event that took long finished handling"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventMessageUpsert","message_id":"3A2EB49BDF37B21B90F4","sender_id":"4917620338641@s.whatsapp.net","parsed_message_type":"text","remote_sender":{"user_id":"4917620338641"},"remote_message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A2EB49BDF37B21B90F4","remote_stream_order":1772824953,"time":"2026-03-06T19:23:06.251974424Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:06.258804713Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4565,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824985999087669_47?ts=1771369281000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":297.630955,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"Sent an album:","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:06.296836518Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A8B75461AB9B02ADAAB","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-17T23:01:21Z","event_id":"$dGlKICal3NvCdatIioBSBRHktVZzYxrjmwCK8cXCQnk","part_id":"","time":"2026-03-06T19:23:06.296974246Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1924","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.298400913Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1924","time":"2026-03-06T19:23:06.298527817Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4574,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491799302414:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491799302414%3Amatrix.theocloud.dev","duration":94.186126,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491799302414 (WA)"},"time":"2026-03-06T19:23:06.3037891Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4575,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664201620:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917664201620%3Amatrix.theocloud.dev","duration":93.637515,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wik Wak (WA)"},"time":"2026-03-06T19:23:06.304473553Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:06.304552754Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"171970641588327@lid","alternate_jid":"4917664201620@s.whatsapp.net","time":"2026-03-06T19:23:06.305080901Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"239363409617131@lid","alt_jid":"4917641523941@s.whatsapp.net","source_push_name":"A.","alt_push_name":"Artur","time":"2026-03-06T19:23:06.30516101Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"239363409617131@lid","alternate_jid":"4917641523941@s.whatsapp.net","time":"2026-03-06T19:23:06.305274643Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4579,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915159148923%3Amatrix.theocloud.dev","duration":11.398597,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915159148923","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:06.317349104Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4580,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159148923:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915159148923%3Amatrix.theocloud.dev","duration":9.223711,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:06.326909454Z","message":"Request completed"} +{"level":"debug","transaction_id":"1925","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.329930898Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1925","time":"2026-03-06T19:23:06.330048861Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4567,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986069810585_490?ts=1772560051000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":273.009553,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😂😂😂","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$FUOtrVWyIxwC7JmHb3Irr-7YiHWTZccEJfJULWU44Yk"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:06.342944107Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A77B4C94D7D9E4C1DCE","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T17:47:31Z","event_id":"$7bPa0qheUJ0Xfw7KqaCriDCwm8O9NzXlNTc-jhAgNcI","part_id":"","time":"2026-03-06T19:23:06.343078833Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:06.361567601Z","message":"fa377133f9aa0204a193b6d4"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:06.362277478Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4563,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":450.544041,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<641077 bytes>","time":"2026-03-06T19:23:06.385810949Z","message":"Request completed"} +{"level":"debug","transaction_id":"1926","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.395055333Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1926","time":"2026-03-06T19:23:06.395192224Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:06.415502617Z","message":"0d2af6ad097f2e1b9eceb7e0"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:06.416164302Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4581,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159148923:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915159148923%3Amatrix.theocloud.dev","duration":95.096659,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Silvia🌻 (WA)"},"time":"2026-03-06T19:23:06.422167728Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"275436907065507@lid","alternate_jid":"4915159148923@s.whatsapp.net","time":"2026-03-06T19:23:06.422638046Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:06.426750634Z","message":"98a3fcd482eacbcfb6b72b2b"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:06.427352325Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4584,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917656787720%3Amatrix.theocloud.dev","duration":6.119923,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917656787720","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:06.429134768Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB384DC390B777F4F5D","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AB384DC390B777F4F5D","req_id":4573,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986199971663_41?ts=1772824984000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":247.546411,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":19870,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":19870,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/itWdSOzNXyuxwITyUjiOOsUh"},"m.relates_to":{"event_id":"$KRUVkiMIPEd6uM1vuyVe4FvnPLAVbkw6Iz5Y2wmdRag","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/itWdSOzNXyuxwITyUjiOOsUh"},"time":"2026-03-06T19:23:06.447768738Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB384DC390B777F4F5D","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AB384DC390B777F4F5D","event_id":"$TCswOUe9euR-JXdt6KPw6PV6Hs_L10zu_TmXTBj4DI4","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AB384DC390B777F4F5D","time":"2026-03-06T19:23:06.447927559Z","message":"Sent message part edit to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4585,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656787720:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656787720%3Amatrix.theocloud.dev","duration":18.767648,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:06.448254979Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3FED028E0DDF789225","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3FED028E0DDF789225","time":"2026-03-06T19:23:06.44850704Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1927","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.474288871Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1927","time":"2026-03-06T19:23:06.474452232Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"sync ghost","reason":"push name event","picture_id":"","jid":"4917620338641@s.whatsapp.net","req_id":4577,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/state/m.room.name/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":260.786747,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"fi.mau.implicit_name":true,"name":"marcyś (WA)"},"time":"2026-03-06T19:23:06.514853783Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4578,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986297774987_48?ts=1771369286000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":221.00302,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"video.mp4","info":{"duration":19000,"h":832,"mimetype":"video/mp4","size":3022718,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/SBCBLirIpgGliutzgfaUblSF"},"time":"2026-03-06T19:23:06.519003109Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A30450AC5B5E3CCCE43","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-17T23:01:26Z","event_id":"$3Jt6fNWxFBe_ql1C6LIshBs1I6Q6tcVZ6zgzIZSs-2A","part_id":"","time":"2026-03-06T19:23:06.51913553Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4586,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656787720:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656787720%3Amatrix.theocloud.dev","duration":94.729359,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Aaron (WA)"},"time":"2026-03-06T19:23:06.543168652Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"32156537630722@lid","alternate_jid":"4917656787720@s.whatsapp.net","time":"2026-03-06T19:23:06.543760495Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4583,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-275436907065507%3Amatrix.theocloud.dev","duration":154.6282,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<33824 bytes>","time":"2026-03-06T19:23:06.554050347Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4589,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-242897714737270%3Amatrix.theocloud.dev","duration":21.760596,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-242897714737270","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:06.566083461Z","message":"Request completed"} +{"level":"debug","transaction_id":"1928","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.570629769Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1928","time":"2026-03-06T19:23:06.570732228Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4590,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-275436907065507:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-275436907065507%3Amatrix.theocloud.dev","duration":17.536191,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:06.572007337Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4582,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986343995302_491?ts=1772560065000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":245.777866,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wusste halt nicht, dass wir es morgens machen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:06.589917044Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:4917641870516@s.whatsapp.net:3A6B6F53EA5580689C33","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-03-03T17:47:45Z","event_id":"$oWhPGGiqIUCGamoUGNhNfBYqd0yOmmCaSPxQMXNs6Mo","part_id":"","time":"2026-03-06T19:23:06.590030468Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4591,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242897714737270:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-242897714737270%3Amatrix.theocloud.dev","duration":25.226376,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:06.59168035Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4592,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/kMNAyBmvwClFmEiXNrbZnBiI?user_id=%40whatsapp_lid-275436907065507%3Amatrix.theocloud.dev","duration":23.025159,"status_code":200,"response_length":33824,"response_mime":"image/jpeg","time":"2026-03-06T19:23:06.595204378Z","message":"Request completed"} +{"level":"debug","transaction_id":"1929","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.631519532Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1929","time":"2026-03-06T19:23:06.631646435Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4595,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-275436907065507:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-275436907065507%3Amatrix.theocloud.dev","duration":38.145857,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kMNAyBmvwClFmEiXNrbZnBiI"},"time":"2026-03-06T19:23:06.633664526Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:06.634323487Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4596,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-1868377903307%3Amatrix.theocloud.dev","duration":9.77749,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-1868377903307","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:06.6443119Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3FED028E0DDF789225","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3FED028E0DDF789225","req_id":4587,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":188.083315,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<18962 bytes>","time":"2026-03-06T19:23:06.649780685Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4597,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1868377903307:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-1868377903307%3Amatrix.theocloud.dev","duration":8.284264,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:23:06.653041966Z","message":"Request completed"} +{"level":"debug","transaction_id":"1930","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.655836423Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1930","time":"2026-03-06T19:23:06.655927078Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4594,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242897714737270:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-242897714737270%3Amatrix.theocloud.dev","duration":77.570386,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sascha (WA)"},"time":"2026-03-06T19:23:06.669427646Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917680834617@s.whatsapp.net","alternate_jid":"242897714737270@lid","time":"2026-03-06T19:23:06.669934561Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4600,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491756680777%3Amatrix.theocloud.dev","duration":9.228949,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491756680777","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:06.679755074Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4601,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491756680777:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491756680777%3Amatrix.theocloud.dev","duration":11.079977,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:06.691145849Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventMessageUpsert","message_id":"3A2EB49BDF37B21B90F4","sender_id":"4917620338641@s.whatsapp.net","parsed_message_type":"text","remote_sender":{"user_id":"4917620338641"},"remote_message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A2EB49BDF37B21B90F4","remote_stream_order":1772824953,"req_id":4576,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986252715171_64?ts=1772824953000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":453.403031,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"moin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:06.706239378Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventMessageUpsert","message_id":"3A2EB49BDF37B21B90F4","sender_id":"4917620338641@s.whatsapp.net","parsed_message_type":"text","remote_sender":{"user_id":"4917620338641"},"remote_message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3A2EB49BDF37B21B90F4","remote_stream_order":1772824953,"event_id":"$dqznht4Tx6t7_W4WI8bm1QGsAxfD5wPEvMPfyy8AEIQ","part_id":"","time":"2026-03-06T19:23:06.706434098Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventMessageUpsert","message_id":"3AE8F52408059458D852","sender_id":"4917620338641@s.whatsapp.net","parsed_message_type":"text","remote_sender":{"user_id":"4917620338641"},"remote_message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AE8F52408059458D852","remote_stream_order":1772824956,"time":"2026-03-06T19:23:06.707087402Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4599,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1868377903307:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-1868377903307%3Amatrix.theocloud.dev","duration":78.23277,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917624327157 (WA)"},"time":"2026-03-06T19:23:06.731431113Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:06.732114099Z","message":""} +{"level":"debug","transaction_id":"1931","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.743392638Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1931","time":"2026-03-06T19:23:06.743490487Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4588,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986520100889_49?ts=1771369287000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":263.652442,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":420777,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/WyzIiNPbsnRDazoJjZnDyqHs"},"time":"2026-03-06T19:23:06.78397515Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A4CE00996D5B5D9B9D4","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-17T23:01:27Z","event_id":"$yeTj5mwfBGLEkzu4TSj7Rvrf1IkfiXzYFZuk44-neZ0","part_id":"","time":"2026-03-06T19:23:06.784098701Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4602,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491756680777:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491756680777%3Amatrix.theocloud.dev","duration":124.380169,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"TJ (WA)"},"time":"2026-03-06T19:23:06.815763411Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"13473413128380@lid","alternate_jid":"491756680777@s.whatsapp.net","time":"2026-03-06T19:23:06.816226116Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917641523941@s.whatsapp.net","alt_jid":"239363409617131@lid","source_push_name":"Artur","alt_push_name":"A.","time":"2026-03-06T19:23:06.816304968Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917641523941@s.whatsapp.net","alternate_jid":"239363409617131@lid","time":"2026-03-06T19:23:06.816440252Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917662782440@s.whatsapp.net","time":"2026-03-06T19:23:06.816801965Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4605,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917662782440%3Amatrix.theocloud.dev","duration":27.040877,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917662782440","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:06.844123957Z","message":"Request completed"} +{"level":"debug","transaction_id":"1932","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.848370014Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1932","time":"2026-03-06T19:23:06.848479037Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:06.855753103Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4593,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986590987795_28?ts=1772561553000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":274.392987,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Colin kommt Mittwoch auch! Vielleicht können wir dann nochmal sein Spiel spielen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:06.865488129Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A9794C1FE26B9637199","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-03T18:12:33Z","event_id":"$8MLJhDwTymrmAWPzSWWzjR_nQZ_B_0J6l30RO-ZGdts","part_id":"","time":"2026-03-06T19:23:06.8655982Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4606,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662782440:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917662782440%3Amatrix.theocloud.dev","duration":21.991076,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:06.866427018Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4607,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491799302414:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491799302414%3Amatrix.theocloud.dev","duration":19.918578,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:06.875954403Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:06.8914116Z","message":""} +{"level":"debug","transaction_id":"1933","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.915280523Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1933","time":"2026-03-06T19:23:06.91540135Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3FED028E0DDF789225","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3FED028E0DDF789225","req_id":4598,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986650176201_42?ts=1772824984000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":298.251084,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":18962,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":18962,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/HmTFAOlyBbkfwwuDlqZjaekf"},"m.relates_to":{"event_id":"$02-UAX-zNC5YoMBSyyKtMXM-GDCEHertaw-eZCTQ61E","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/HmTFAOlyBbkfwwuDlqZjaekf"},"time":"2026-03-06T19:23:06.948750026Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3FED028E0DDF789225","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3FED028E0DDF789225","event_id":"$sHIOzaG-28G_U6zg_btkaeYdR1VfDwqg5CeQx2cbsE0","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A3FED028E0DDF789225","time":"2026-03-06T19:23:06.948970029Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF2B88C73AAC21F1728","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF2B88C73AAC21F1728","time":"2026-03-06T19:23:06.949777894Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4609,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662782440:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917662782440%3Amatrix.theocloud.dev","duration":129.778343,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917662782440 (WA)"},"time":"2026-03-06T19:23:06.996394773Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:06.997272759Z","message":""} +{"level":"debug","transaction_id":"1934","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:06.998325421Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1934","time":"2026-03-06T19:23:06.998472928Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventMessageUpsert","message_id":"3AE8F52408059458D852","sender_id":"4917620338641@s.whatsapp.net","parsed_message_type":"text","remote_sender":{"user_id":"4917620338641"},"remote_message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AE8F52408059458D852","remote_stream_order":1772824956,"req_id":4603,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21RNSkXRfMcfgheHrFjq:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986707790084_65?ts=1772824956000&user_id=%40whatsapp_4917620338641%3Amatrix.theocloud.dev","duration":383.136743,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"meester","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:07.091075033Z","message":"Request completed"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventMessageUpsert","message_id":"3AE8F52408059458D852","sender_id":"4917620338641@s.whatsapp.net","parsed_message_type":"text","remote_sender":{"user_id":"4917620338641"},"remote_message_id":"4917620338641@s.whatsapp.net:4917620338641@s.whatsapp.net:3AE8F52408059458D852","remote_stream_order":1772824956,"event_id":"$Fxr2LZnjg8qVQvzG9Df5bdCxSdYm977O1i3ZHlgahxg","part_id":"","time":"2026-03-06T19:23:07.091290915Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$inv2VdvoEIEYZOluWZuXMj8b4ChMrAdKx48n8Vq9Zoo","event_type":"m.room.member","event_id":"$inv2VdvoEIEYZOluWZuXMj8b4ChMrAdKx48n8Vq9Zoo","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:07.092245658Z","message":"Sending implicit read receipt for event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.096153888Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4604,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986784895112_50?ts=1771369288000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":312.458666,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":500341,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/DGxTKxdNZZTOLriTyTevWfWY"},"time":"2026-03-06T19:23:07.097593196Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AB67DC0F5D3291F845C","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-17T23:01:28Z","event_id":"$MSbMoxxE0ZJ3zRglSKv7y3Kp6UDmUZb6ZPWMdn3FOyw","part_id":"","time":"2026-03-06T19:23:07.097761097Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4612,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-1868377903307%3Amatrix.theocloud.dev","duration":202.260584,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<52534 bytes>","time":"2026-03-06T19:23:07.103309851Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4615,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1868377903307:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-1868377903307%3Amatrix.theocloud.dev","duration":34.394353,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:07.13813541Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF2B88C73AAC21F1728","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF2B88C73AAC21F1728","req_id":4613,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":179.605449,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15004 bytes>","time":"2026-03-06T19:23:07.143354229Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4616,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/josalcwOaHhipxOzMyIRmnbn?user_id=%40whatsapp_lid-1868377903307%3Amatrix.theocloud.dev","duration":11.327986,"status_code":200,"response_length":52534,"response_mime":"image/jpeg","time":"2026-03-06T19:23:07.149627875Z","message":"Request completed"} +{"level":"debug","transaction_id":"1935","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.159020953Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1935","time":"2026-03-06T19:23:07.159113494Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.171590525Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4608,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824986866375753_22?ts=1772561574000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":317.32527,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Yippie!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:07.183821152Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A45B257709D400A1869","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-03T18:12:54Z","event_id":"$CGVrX3DIwjEV_GnONpqzxyfBIV2gFyPE0DqL_hgnnWA","part_id":"","time":"2026-03-06T19:23:07.183937509Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4618,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-1868377903307:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-1868377903307%3Amatrix.theocloud.dev","duration":37.89666,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/josalcwOaHhipxOzMyIRmnbn"},"time":"2026-03-06T19:23:07.187753967Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:07.188775898Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1936","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.204916292Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1936","time":"2026-03-06T19:23:07.205061145Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4620,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-201528505827559%3Amatrix.theocloud.dev","duration":23.235175,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-201528505827559","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:07.212260968Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4621,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-201528505827559:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-201528505827559%3Amatrix.theocloud.dev","duration":8.454329,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:07.221044883Z","message":"Request completed"} +{"level":"debug","transaction_id":"1937","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.230857084Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1937","time":"2026-03-06T19:23:07.230954445Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4610,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59463872561404:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":401.338181,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NmIelWpzwZhHrfrTFHGrEsQH","com.beeper.exclude_from_timeline":true,"displayname":"Pasi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:07.278669243Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4622,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-201528505827559:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-201528505827559%3Amatrix.theocloud.dev","duration":76.854084,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491739356181 (WA)"},"time":"2026-03-06T19:23:07.298088729Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.299020703Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.322375099Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.322564231Z","message":""} +{"level":"debug","transaction_id":"1938","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.322825232Z","message":"Starting handling of transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.32484863Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.327664738Z","message":""} +{"level":"debug","transaction_id":"1938","time":"2026-03-06T19:23:07.329050198Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.329836202Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.333088125Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.334542798Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.336007878Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.340070879Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.341541965Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.343049789Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.34466475Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.346257501Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.347868552Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.350688989Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.352575358Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.355031848Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.356463613Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.357857803Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.359455094Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4614,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824987098737421_51?ts=1771369288000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":264.345138,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":458134,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/urDwRvvMTuNnYoJxbjTUxruJ"},"time":"2026-03-06T19:23:07.36331234Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A1F3FE87F3787FAA240","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-17T23:01:28Z","event_id":"$SMVMctm6HOr_O1Gv8vhH9deK_5np0vnp7r-livhJXbk","part_id":"","time":"2026-03-06T19:23:07.363465224Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.367961875Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.373299705Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.376955665Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.380004976Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.382187266Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.38448242Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.387444847Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.390557575Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.393427042Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.396545636Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.399453027Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.4025191Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.405441857Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.409252378Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4623,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917662782440%3Amatrix.theocloud.dev","duration":179.966533,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<29270 bytes>","time":"2026-03-06T19:23:07.409788207Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.410728702Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.413747632Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.41595723Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF2B88C73AAC21F1728","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF2B88C73AAC21F1728","req_id":4617,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824987143836140_43?ts=1772824984000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":272.047336,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":15004,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":15004,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/HEHWgOjlmvBQzxTgxECachsO"},"m.relates_to":{"event_id":"$glzjcE22MRfRjiLCvSkmFL6gJx67T7Bfogc6r5GHmhI","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/HEHWgOjlmvBQzxTgxECachsO"},"time":"2026-03-06T19:23:07.41615621Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF2B88C73AAC21F1728","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF2B88C73AAC21F1728","event_id":"$yO6WDH_BZqM89U3kCIipLOfjnO8xB4XmV-YvInv-D-0","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF2B88C73AAC21F1728","time":"2026-03-06T19:23:07.416261532Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A31B03903EB3B0E02AC","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A31B03903EB3B0E02AC","time":"2026-03-06T19:23:07.416778085Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.419003956Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.421965615Z","message":""} +{"level":"debug","transaction_id":"1939","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.426253158Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1939","time":"2026-03-06T19:23:07.426393681Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4619,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824987185289655_23?ts=1772561725000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":245.667865,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":183984,"w":190},"m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$FUOtrVWyIxwC7JmHb3Irr-7YiHWTZccEJfJULWU44Yk"}},"url":"mxc://matrix.theocloud.dev/HDPCvNNaNXUwZGXEdYlpOBFg"},"time":"2026-03-06T19:23:07.431226971Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3A8B56C7BCA33F3A0504","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-03T18:15:25Z","event_id":"$fgCDaPumSqiSSKM2a28bGL4K82nI1IaasSX1NlC-QC8","part_id":"","time":"2026-03-06T19:23:07.431394103Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4626,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662782440:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917662782440%3Amatrix.theocloud.dev","duration":23.893787,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:07.433969674Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4628,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/JVxxNAkjrrtvauTjVfjXPMlR?user_id=%40whatsapp_4917662782440%3Amatrix.theocloud.dev","duration":16.152547,"status_code":200,"response_length":29270,"response_mime":"image/jpeg","time":"2026-03-06T19:23:07.450205543Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.457228665Z","message":""} +{"level":"debug","transaction_id":"1940","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.460972557Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1940","time":"2026-03-06T19:23:07.461146813Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4631,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-201528505827559:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-201528505827559%3Amatrix.theocloud.dev","duration":8.824284,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:07.466388331Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4630,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662782440:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917662782440%3Amatrix.theocloud.dev","duration":15.986042,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JVxxNAkjrrtvauTjVfjXPMlR"},"time":"2026-03-06T19:23:07.46645978Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:07.470433173Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917666512961@s.whatsapp.net","time":"2026-03-06T19:23:07.470619093Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4632,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917666512961%3Amatrix.theocloud.dev","duration":6.492881,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917666512961","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:07.47730383Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4633,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-138035987497154%3Amatrix.theocloud.dev","duration":6.717214,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-138035987497154","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:07.478601707Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4634,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666512961:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917666512961%3Amatrix.theocloud.dev","duration":4.942873,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:07.482500369Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4635,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138035987497154:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-138035987497154%3Amatrix.theocloud.dev","duration":3.597432,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:07.482527608Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4637,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138035987497154:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-138035987497154%3Amatrix.theocloud.dev","duration":34.058832,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Claire✨ (WA)"},"time":"2026-03-06T19:23:07.516749241Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.517650485Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4636,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666512961:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917666512961%3Amatrix.theocloud.dev","duration":35.574407,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lisunka (WA)"},"time":"2026-03-06T19:23:07.518241699Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.518809866Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4625,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824987364748156_492?ts=1771392982000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":166.209784,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gerne doch und das freut mich :)","m.mentions":{"user_ids":["@whatsapp_491783743461:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$9O8XrlmVK8U-0byV484zQgPsUe4goFDV9i8X3G_m63c"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:07.531144279Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A62DE2E6C8A0BEFF0FE","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-18T05:36:22Z","event_id":"$330ciAcvUGobz7HX6NYVuqAi4MWCDROVjjxMi2pNqkY","part_id":"","time":"2026-03-06T19:23:07.531283265Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4624,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59463872561404:matrix.theocloud.dev?user_id=%40whatsapp_lid-59463872561404%3Amatrix.theocloud.dev","duration":261.013874,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NmIelWpzwZhHrfrTFHGrEsQH","com.beeper.exclude_from_timeline":true,"displayname":"Pasi (WA)","membership":"join"},"time":"2026-03-06T19:23:07.540462696Z","message":"Request completed"} +{"level":"debug","transaction_id":"1941","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.571127475Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1941","time":"2026-03-06T19:23:07.571251026Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A31B03903EB3B0E02AC","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A31B03903EB3B0E02AC","req_id":4629,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":145.96623,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<141526 bytes>","time":"2026-03-06T19:23:07.580201165Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4627,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824987432377272_493?ts=1772561938132&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":158.344993,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$fgCDaPumSqiSSKM2a28bGL4K82nI1IaasSX1NlC-QC8","key":"😂"}},"time":"2026-03-06T19:23:07.590831498Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363192861790277@g.us:65244881764452@lid:3A8B56C7BCA33F3A0504","target_part_id":"","reaction_sender_id":{"user_id":"4917641870516","is_from_me":true},"reaction_ts":"2026-03-03T18:18:58.132Z","event_id":"$vM47SX2C-8icym7FHJ9kHOr6opSi40iQaVeDVU9IPjU","time":"2026-03-06T19:23:07.590942617Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"1942","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.608987817Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1942","time":"2026-03-06T19:23:07.609229332Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1943","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.623705316Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1943","time":"2026-03-06T19:23:07.623862741Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.673311721Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:07.686016787Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4638,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824987532134012_494?ts=1771703803000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":174.588543,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"video.mp4","info":{"duration":28000,"h":848,"mimetype":"video/mp4","size":5529066,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/QFaLkZaxFIdxyarEWOSFZadE"},"time":"2026-03-06T19:23:07.706950032Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A84BE1211A7C808065F","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T19:56:43Z","event_id":"$y_qGvNin6pDkTGGeNXO4RPRrozvH5Bu84bamkx6eRFU","part_id":"","time":"2026-03-06T19:23:07.70708846Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4642,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138035987497154:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-138035987497154%3Amatrix.theocloud.dev","duration":22.082429,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:07.708426846Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:07.716886972Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4644,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-151414944854040%3Amatrix.theocloud.dev","duration":18.831205,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-151414944854040","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:07.736064385Z","message":"Request completed"} +{"level":"debug","transaction_id":"1944","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.745034149Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1944","time":"2026-03-06T19:23:07.745161681Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4645,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151414944854040:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-151414944854040%3Amatrix.theocloud.dev","duration":14.671962,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:07.751971576Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4641,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824987591560371_8?ts=1772631226000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":183.051394,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":959,"mimetype":"image/jpeg","size":239012,"w":1439},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AYhMSOorLzvBzgjxncqYxkUm"},"time":"2026-03-06T19:23:07.774866619Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3EB0D8BEDF60F0A081A3C2","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-03-04T13:33:46Z","event_id":"$y0cJ7VzNfLsv4ZO7GyL7jn-NiKw6BNK5BbMb7nNM9D4","part_id":"","time":"2026-03-06T19:23:07.775039199Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A31B03903EB3B0E02AC","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A31B03903EB3B0E02AC","req_id":4640,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824987580618123_44?ts=1772824985000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":206.629075,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":141526,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":141526,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/umXiDrHdktwJpxecCBVpjZvG"},"m.relates_to":{"event_id":"$tfXMUvtr0QaQRoZUAh0mK8z9CW4OL3SS85ouOCjAKh8","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/umXiDrHdktwJpxecCBVpjZvG"},"time":"2026-03-06T19:23:07.7875515Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A31B03903EB3B0E02AC","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A31B03903EB3B0E02AC","event_id":"$DzS4YDV_hYHCMbtRJeg3ayBnnTl_uaxEkVpQKDIL3l4","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A31B03903EB3B0E02AC","time":"2026-03-06T19:23:07.787775275Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AE0AC3CA67BA8510CD5","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AE0AC3CA67BA8510CD5","time":"2026-03-06T19:23:07.788540326Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4611,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":914.595354,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<945179 bytes>","time":"2026-03-06T19:23:07.811517364Z","message":"Request completed"} +{"level":"debug","transaction_id":"1945","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.838298079Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1945","time":"2026-03-06T19:23:07.83839956Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4639,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-44419206123644:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":322.990451,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SXNeSLsfibUWbhwpGmCpbXKH","com.beeper.exclude_from_timeline":true,"displayname":"Nes The One (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:07.86440314Z","message":"Request completed"} +{"level":"debug","transaction_id":"1946","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.884810264Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1946","time":"2026-03-06T19:23:07.884987594Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4647,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151414944854040:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-151414944854040%3Amatrix.theocloud.dev","duration":134.424526,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jonas (WA)"},"time":"2026-03-06T19:23:07.886579926Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:07.887427601Z","message":""} +{"level":"debug","transaction_id":"1947","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:07.903745674Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1947","time":"2026-03-06T19:23:07.904028605Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4646,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917666512961%3Amatrix.theocloud.dev","duration":197.362131,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<68226 bytes>","time":"2026-03-06T19:23:07.935179835Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4651,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666512961:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917666512961%3Amatrix.theocloud.dev","duration":5.666438,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:07.941284603Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4643,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824987708004370_495?ts=1771703928000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":259.98419,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":189288,"w":1152},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/DQwcFSlWYqNoeaRiFTNYXfOY"},"time":"2026-03-06T19:23:07.968186424Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC19D0CD299E556EE0E","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T19:58:48Z","event_id":"$T_YZ6DmY_fv_aWrVACOoj3Xy9pJ1ImxvCbPSV8aJV5I","part_id":"","time":"2026-03-06T19:23:07.968279942Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4652,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/CkiCxvcSPsqVKcUNOsHspNin?user_id=%40whatsapp_4917666512961%3Amatrix.theocloud.dev","duration":29.952039,"status_code":200,"response_length":68226,"response_mime":"image/jpeg","time":"2026-03-06T19:23:07.971395882Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AE0AC3CA67BA8510CD5","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AE0AC3CA67BA8510CD5","req_id":4649,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":203.914658,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40730 bytes>","time":"2026-03-06T19:23:08.006649923Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4654,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666512961:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917666512961%3Amatrix.theocloud.dev","duration":35.513854,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CkiCxvcSPsqVKcUNOsHspNin"},"time":"2026-03-06T19:23:08.007045579Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"67950677643499@lid","time":"2026-03-06T19:23:08.009150484Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","transaction_id":"1948","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.009576312Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1948","time":"2026-03-06T19:23:08.009691063Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4656,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-67950677643499%3Amatrix.theocloud.dev","duration":7.536533,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-67950677643499","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.01697316Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4657,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67950677643499:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-67950677643499%3Amatrix.theocloud.dev","duration":7.875337,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:08.025239823Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4648,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824987775928779_9?ts=1772631250000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":262.02463,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$y0cJ7VzNfLsv4ZO7GyL7jn-NiKw6BNK5BbMb7nNM9D4","key":"💙"}},"time":"2026-03-06T19:23:08.038058732Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363192861790277@g.us:27956059590853@lid:3EB0D8BEDF60F0A081A3C2","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2026-03-04T13:34:10Z","event_id":"$ORaifReuzb-fWtEp_GBW9AAdB_L9DkXUtcnMYdxKfqs","time":"2026-03-06T19:23:08.038168663Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.047485683Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4660,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-151414944854040:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-151414944854040%3Amatrix.theocloud.dev","duration":14.238381,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:08.062051276Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:08.063198713Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1949","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.067766114Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1949","time":"2026-03-06T19:23:08.067829112Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4662,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-74122562388154%3Amatrix.theocloud.dev","duration":8.723851,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-74122562388154","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.072204028Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4663,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-74122562388154:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-74122562388154%3Amatrix.theocloud.dev","duration":7.123346,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:08.079586768Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4658,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67950677643499:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-67950677643499%3Amatrix.theocloud.dev","duration":69.471763,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Paul (WA)"},"time":"2026-03-06T19:23:08.094933335Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.095821309Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4650,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-44419206123644:matrix.theocloud.dev?user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":263.224519,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SXNeSLsfibUWbhwpGmCpbXKH","com.beeper.exclude_from_timeline":true,"displayname":"Nes The One (WA)","membership":"join"},"time":"2026-03-06T19:23:08.128313161Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4664,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-74122562388154:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-74122562388154%3Amatrix.theocloud.dev","duration":66.043837,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491733430974 (WA)"},"time":"2026-03-06T19:23:08.145868139Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.146742982Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4653,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824987968912922_52?ts=1771703986000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":203.938125,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bro diese POV hahaha du fetti 😂😂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:08.172993874Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A60093F09BF99893262","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-21T19:59:46Z","event_id":"$ztjmqImLxjFpkikQeNZRioS3Hr7Sj14wz0XSKPz6x7k","part_id":"","time":"2026-03-06T19:23:08.173142847Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1950","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.176653256Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1950","time":"2026-03-06T19:23:08.176938213Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AE0AC3CA67BA8510CD5","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AE0AC3CA67BA8510CD5","req_id":4655,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824988007147130_45?ts=1772824985000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":220.583198,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":40730,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":40730,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xdUJJTHwKjqOXoFijZUNsWCQ"},"m.relates_to":{"event_id":"$hG4jhqNSppvWcGJIshs7yGo3py0-ltweoOkQf9sunak","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xdUJJTHwKjqOXoFijZUNsWCQ"},"time":"2026-03-06T19:23:08.228066898Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AE0AC3CA67BA8510CD5","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AE0AC3CA67BA8510CD5","event_id":"$gZHS-0dLmswXzPXdBOeJNUI5v2J_K0AdhfQNhcn_jxM","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AE0AC3CA67BA8510CD5","time":"2026-03-06T19:23:08.228253586Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A36E837400BF47182F0","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A36E837400BF47182F0","time":"2026-03-06T19:23:08.229007463Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1951","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.231499223Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1951","time":"2026-03-06T19:23:08.231608107Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.255252348Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4659,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824988038606574_9?ts=1772703773000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":218.684608,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"https://drive.google.com/file/d/16UGdDLAQv5kZvBNbunrIBr0vUzTZ4G51/view?usp=sharing","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"drive.google.com","og:description":"https://drive.google.com/file/d/16UGdDLAQv5kZvBNbunrIBr0vUzTZ4G51/view?usp=sharing","matched_url":"https://drive.google.com/file/d/16UGdDLAQv5kZvBNbunrIBr0vUzTZ4G51/view?usp=sharing"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:08.257438339Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3EB095C0BFEFB78DD39EE5","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-03-05T09:42:53Z","event_id":"$eOCBqKVjwYtACChawnEsg3M9ztMOdSPXPBxjyHCr4uo","part_id":"","time":"2026-03-06T19:23:08.25760198Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4668,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67950677643499:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-67950677643499%3Amatrix.theocloud.dev","duration":9.824214,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:08.265416554Z","message":"Request completed"} +{"level":"debug","transaction_id":"1952","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.267574329Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1952","time":"2026-03-06T19:23:08.267732243Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4670,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491783051112%3Amatrix.theocloud.dev","duration":6.75877,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491783051112","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.272820038Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4671,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783051112:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783051112%3Amatrix.theocloud.dev","duration":7.464037,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:08.280669254Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4672,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783051112:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783051112%3Amatrix.theocloud.dev","duration":29.686709,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"🤏🏻😎 (WA)"},"time":"2026-03-06T19:23:08.310561718Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"9461947228209@lid","alternate_jid":"491783051112@s.whatsapp.net","time":"2026-03-06T19:23:08.311060042Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.311560671Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4673,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917670689677%3Amatrix.theocloud.dev","duration":11.436102,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917670689677","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.323020869Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4674,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-74122562388154:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-74122562388154%3Amatrix.theocloud.dev","duration":12.320654,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:08.324152872Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:08.325108593Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4666,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824988173958814_496?ts=1771704002000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":163.755738,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😭😂🫠","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:08.337850046Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3AD0E9800FD6B3E68158","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T20:00:02Z","event_id":"$ESrfzdMaf02jK0JKtec_lOgy4gwFDw_zQTWJ_yiFg5I","part_id":"","time":"2026-03-06T19:23:08.337994829Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4676,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-40007670730843%3Amatrix.theocloud.dev","duration":16.320028,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-40007670730843","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.34169926Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4675,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670689677:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670689677%3Amatrix.theocloud.dev","duration":22.906917,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:08.346271899Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4678,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40007670730843:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-40007670730843%3Amatrix.theocloud.dev","duration":19.952103,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:08.361969842Z","message":"Request completed"} +{"level":"debug","transaction_id":"1953","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.375409578Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1953","time":"2026-03-06T19:23:08.375524538Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4669,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824988258456220_10?ts=1772703778000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":147.812509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Draw.io","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:08.406443683Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3EB08CC9261D7F7D840261","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-03-05T09:42:58Z","event_id":"$x96eZPqqUEjKWSlUIPyoph230LJrSgm6LH3NZEL3Pmk","part_id":"","time":"2026-03-06T19:23:08.406569958Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4665,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195562762690743:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":278.157062,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Daniel Gleissenberg (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:08.407447944Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A36E837400BF47182F0","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A36E837400BF47182F0","req_id":4667,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":166.120107,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49542 bytes>","time":"2026-03-06T19:23:08.410164108Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4679,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670689677:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670689677%3Amatrix.theocloud.dev","duration":78.603841,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Viktor Tevosyan (WA)"},"time":"2026-03-06T19:23:08.425074441Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"102886059073748@lid","alternate_jid":"4917670689677@s.whatsapp.net","time":"2026-03-06T19:23:08.425636531Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"138817721917594@lid","alternate_jid":"4915208878293@s.whatsapp.net","time":"2026-03-06T19:23:08.425763015Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4680,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40007670730843:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-40007670730843%3Amatrix.theocloud.dev","duration":71.669418,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491771848907 (WA)"},"time":"2026-03-06T19:23:08.434301784Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.434879239Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4684,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915757230287%3Amatrix.theocloud.dev","duration":9.542401,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915757230287","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.435894675Z","message":"Request completed"} +{"level":"debug","transaction_id":"1954","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.437911299Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1954","time":"2026-03-06T19:23:08.438016341Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4685,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915757230287:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915757230287%3Amatrix.theocloud.dev","duration":7.651702,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:08.443862623Z","message":"Request completed"} +{"level":"debug","transaction_id":"1955","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.453781054Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1955","time":"2026-03-06T19:23:08.454084519Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4686,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915757230287:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915757230287%3Amatrix.theocloud.dev","duration":37.772551,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Anja (WA)"},"time":"2026-03-06T19:23:08.48178275Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"199870648455306@lid","alternate_jid":"4915757230287@s.whatsapp.net","time":"2026-03-06T19:23:08.482210045Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917652878401@s.whatsapp.net","alternate_jid":"157088529567880@lid","time":"2026-03-06T19:23:08.482309151Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4687,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915754696932%3Amatrix.theocloud.dev","duration":5.572081,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915754696932","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.488308946Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4677,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824988338909832_53?ts=1771704004000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":167.973021,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Einfach sogar mit extra toppings 😭","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:08.507032174Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3AB7290538B53036430B","sender_id":{"user_id":"491783743461"},"message_ts":"2026-02-21T20:00:04Z","event_id":"$jnqcfoDVlSqS-ZRHFFAhvJeevbQU84_X62UWimxRG4w","part_id":"","time":"2026-03-06T19:23:08.50719777Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4688,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915754696932:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915754696932%3Amatrix.theocloud.dev","duration":19.043106,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:08.507745682Z","message":"Request completed"} +{"level":"debug","transaction_id":"1956","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.540834685Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1956","time":"2026-03-06T19:23:08.540917587Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4681,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824988407186664_29?ts=1772703864000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":155.344641,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":8918,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/wxJeQFSjQaqIVpLqRfPkCKmQ"},"time":"2026-03-06T19:23:08.562709403Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A4C87D24630F92527A7","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-05T09:44:24Z","event_id":"$mGFFykNBAZvAQ1pIug62EfpOyuv5BJPDS7sigL5u_Zo","part_id":"","time":"2026-03-06T19:23:08.562805716Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.583790365Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A36E837400BF47182F0","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A36E837400BF47182F0","req_id":4683,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824988410475394_46?ts=1772824985000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":183.453615,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":49542,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":49542,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/IDDBJxaXWWRsElembSWWhjvX"},"m.relates_to":{"event_id":"$XEaME7w5ChcZ_pxrqlQxMAFZYHtcRziitI7fiwiJl-w","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/IDDBJxaXWWRsElembSWWhjvX"},"time":"2026-03-06T19:23:08.594190429Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A36E837400BF47182F0","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A36E837400BF47182F0","event_id":"$yqZmD0d9gdfZvNx5w2WZkJhUmYZxxN9tEp7ohsflY8I","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A36E837400BF47182F0","time":"2026-03-06T19:23:08.594437111Z","message":"Sent message part edit to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4689,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915754696932:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915754696932%3Amatrix.theocloud.dev","duration":86.786484,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yasin Dalowar (WA)"},"time":"2026-03-06T19:23:08.594713337Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AC2EB82DE3B3386CEAD","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC2EB82DE3B3386CEAD","time":"2026-03-06T19:23:08.595460719Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1957","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.596389271Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1957","time":"2026-03-06T19:23:08.596477342Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"50058112307202@lid","alternate_jid":"4915754696932@s.whatsapp.net","time":"2026-03-06T19:23:08.59706227Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"80522080477241@lid","alt_jid":"4917673282928@s.whatsapp.net","source_push_name":"Mahkam","alt_push_name":"Makhkam","time":"2026-03-06T19:23:08.597135186Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"80522080477241@lid","alternate_jid":"4917673282928@s.whatsapp.net","time":"2026-03-06T19:23:08.597249517Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"265076942577859@lid","alternate_jid":"491783900163@s.whatsapp.net","time":"2026-03-06T19:23:08.597382357Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915234825973@s.whatsapp.net","alternate_jid":"105699396837592@lid","time":"2026-03-06T19:23:08.597495362Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915901353554@s.whatsapp.net","alternate_jid":"16114767646828@lid","time":"2026-03-06T19:23:08.597594608Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917656979328@s.whatsapp.net","alt_jid":"38504566390811@lid","source_push_name":"Ahmad Al koudsi","alt_push_name":"Al koudsi","time":"2026-03-06T19:23:08.597665777Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917656979328@s.whatsapp.net","alternate_jid":"38504566390811@lid","time":"2026-03-06T19:23:08.597787651Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4692,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-54756772999170%3Amatrix.theocloud.dev","duration":10.729579,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-54756772999170","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.609103346Z","message":"Request completed"} +{"level":"debug","transaction_id":"1958","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.617786758Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1958","time":"2026-03-06T19:23:08.617935591Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4693,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54756772999170:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-54756772999170%3Amatrix.theocloud.dev","duration":9.381555,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:08.618753583Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4682,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195562762690743:matrix.theocloud.dev?user_id=%40whatsapp_lid-195562762690743%3Amatrix.theocloud.dev","duration":245.977196,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Daniel Gleissenberg (WA)","membership":"join"},"time":"2026-03-06T19:23:08.654128172Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4695,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54756772999170:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-54756772999170%3Amatrix.theocloud.dev","duration":78.966881,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Rudi (WA)"},"time":"2026-03-06T19:23:08.697891717Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.69881559Z","message":""} +{"level":"debug","transaction_id":"1959","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.699226751Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1959","time":"2026-03-06T19:23:08.699495644Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","req_id":4690,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824988508163548_497?ts=1771704022000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":212.277773,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":10322,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/OOAOfJoSflSPwwXamvUyYeJw"},"time":"2026-03-06T19:23:08.720655457Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A474E8F8C20F2EA8F85","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-21T20:00:22Z","event_id":"$8Td5IrAS7joa6d17EzpiQTuB0-NYj6nKb9hNI3-rgFk","part_id":"","time":"2026-03-06T19:23:08.720815815Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:23:08.723199041Z","message":"Backfill finished"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","time":"2026-03-06T19:23:08.72330136Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"error","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:23:08.723426377Z","message":"Failed to get membership"} +{"level":"error","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.name","time":"2026-03-06T19:23:08.723546576Z","message":"Failed to set room metadata"} +{"level":"error","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","error":"context canceled","time":"2026-03-06T19:23:08.723648755Z","message":"Failed to get membership"} +{"level":"error","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","error":"failed to ensure joined: failed to check if user is registered: context canceled","event_type":"m.room.avatar","time":"2026-03-06T19:23:08.72374821Z","message":"Failed to set room metadata"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.724202673Z","message":"5cf3d57cff684e191cc985a2cb39c1a87fc7dd2b9da78da5436ed91de0581198db358519bdf1643e0e13240cc58ec86c754c"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A007C5046203D3CC77A","time":"2026-03-06T19:23:08.724395438Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.725244509Z","message":"cd979c65df042259e64f04bcfad7e1e5ffb3b3f4d4f61680829e0558259d4fe300604f27e5b049b755040086a4e7986549fc"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A926284813638BED283","time":"2026-03-06T19:23:08.725415274Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.726171176Z","message":"96620eb234393eba151c9b3860fd1c677f648057c3045847e380d212fd3ed76a29e8dcec85defce7cf0a93f0990af58a8e88"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A3BA01BAF7AEA49D820","time":"2026-03-06T19:23:08.726323292Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","started_at":"2026-03-06T19:22:00.734278163Z","duration":"1m7.992268834s","time":"2026-03-06T19:23:08.726571372Z","message":"Event that took long finished handling"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.727894113Z","message":"77c5a133818fd060f8acf19b28936b0f2d097a3ab668cfc59add5804dd3286b7847733276cf888a7f332b9ba55a5a2441fc0"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A5B10C668A21075F3AB","time":"2026-03-06T19:23:08.728063341Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.728760785Z","message":"2c9aa75e8fdaa6135e88f7cdab852f9b584aec999d4b36bfc090679af0c247ded389d949b103c43702de25f8d236cc666776"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A44807B65A161FEE355","time":"2026-03-06T19:23:08.728933994Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.729605527Z","message":"4dbd8e20ca9babe1a977c77a4eca4fc1484740c6788d290c86bbd2a147c7e79c747b0bfab43b6b36a10ba7bbdec56f24b5c7"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A669F8C07CC0A62217D","time":"2026-03-06T19:23:08.729774196Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.730451036Z","message":"b8f31132880a028e090ae94532d46691e8dda743c68580241088d0ee936e7e2f65d221a604bdd373356f64cd8de3e2cfb139"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A6A15832DA75B4FCAB8","time":"2026-03-06T19:23:08.730607623Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.731324902Z","message":"eec689595962f3d60e3ff4f5163b27b42291aa179e69c70e6c6bdbef28ae9b26d35a87f75fd65ed7b968df6fb76760340022"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1E9954A5C58F88516F","time":"2026-03-06T19:23:08.731505165Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.732190526Z","message":"d28cb65482d6aa7a03c37adaa35a35399741add285c80010b6a7a1acb8beb40f10d8727992a345eced0e155826b0adaaf9c5"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A91857455F96CE9042F","time":"2026-03-06T19:23:08.732351792Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.733029261Z","message":"d1d929168e35d31dfc63c3828e29eea7346a5decf2b0104921fb528a6bf7402a077c7bedd6eddfb5d598a67728379d05ccb5"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"491783743461@s.whatsapp.net","latest_message_ts":"2026-02-21T20:00:22Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A4A7C6BC0666B1B228B","time":"2026-03-06T19:23:08.733194159Z","message":"Sent media retry request"} +{"level":"debug","transaction_id":"1960","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.760053306Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1960","time":"2026-03-06T19:23:08.760166171Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.768220933Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.768964264Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.770467059Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.771962869Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.772702708Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.773487175Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.774953163Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.775712557Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.776461615Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.777983197Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4691,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824988563394067_11?ts=1772703895000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":223.386106,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":56954,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/ZaxtvSthkWkiNuGVKuBBglnr"},"time":"2026-03-06T19:23:08.786973775Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:27956059590853@lid:3EB0E12E3E0325EB522A14","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2026-03-05T09:44:55Z","event_id":"$rryTDsdG3XMfsXIyiNBTbjmLu_9F4Twj33W58U4T6Ck","part_id":"","time":"2026-03-06T19:23:08.787096069Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AC2EB82DE3B3386CEAD","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC2EB82DE3B3386CEAD","req_id":4694,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":178.084775,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<105988 bytes>","time":"2026-03-06T19:23:08.791458553Z","message":"Request completed"} +{"level":"debug","transaction_id":"1961","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.82306711Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1961","time":"2026-03-06T19:23:08.823210635Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:08.870393027Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4661,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":838.577699,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1005104 bytes>","time":"2026-03-06T19:23:08.888595512Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4700,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-54756772999170:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-54756772999170%3Amatrix.theocloud.dev","duration":25.266326,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:08.896056755Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4697,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-40007670730843%3Amatrix.theocloud.dev","duration":168.757837,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<54445 bytes>","time":"2026-03-06T19:23:08.902773131Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824988788007300_30?ts=1772703912000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":124.155975,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":139366,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/RVjSxIIAcdYjIggcZfclhMib"},"time":"2026-03-06T19:23:08.912375037Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A0B48C7784DE9D36F2C","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-05T09:45:12Z","event_id":"$0UDG2TPc4_Q8-xtKQSa_qlLPcSLErtqMnsiLZYEW3lc","part_id":"","time":"2026-03-06T19:23:08.912475959Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4701,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915157841837%3Amatrix.theocloud.dev","duration":19.786786,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915157841837","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.916652523Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4702,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40007670730843:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-40007670730843%3Amatrix.theocloud.dev","duration":22.497501,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:08.925557963Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4704,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157841837:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915157841837%3Amatrix.theocloud.dev","duration":20.948262,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:08.937915005Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4696,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-40566117134352:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":287.18305,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mustafa (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:08.942009225Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4705,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/dbcfiZwQrlEWDstcADbqIcQD?user_id=%40whatsapp_lid-40007670730843%3Amatrix.theocloud.dev","duration":19.946026,"status_code":200,"response_length":54445,"response_mime":"image/jpeg","time":"2026-03-06T19:23:08.94560987Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AC2EB82DE3B3386CEAD","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC2EB82DE3B3386CEAD","req_id":4699,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824988791895905_498?ts=1772824985000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":159.589371,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":105988,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":105988,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ivjiusBobxTJHZlqhheEDZie"},"m.relates_to":{"event_id":"$hVXdJbOJXa7Ff8YSURt8D_AB2Sw_oJy_JTrnqm25Wao","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ivjiusBobxTJHZlqhheEDZie"},"time":"2026-03-06T19:23:08.95172239Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AC2EB82DE3B3386CEAD","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC2EB82DE3B3386CEAD","event_id":"$DOyyGrKzpLPc6VDc_8PWn2gLF9Q2AsQ5HJQDpw9Zais","part_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3AC2EB82DE3B3386CEAD","time":"2026-03-06T19:23:08.951881141Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":11,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A8C2D81D190BF2894A1","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A8C2D81D190BF2894A1","time":"2026-03-06T19:23:08.952484648Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1962","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.95437807Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1962","time":"2026-03-06T19:23:08.954487303Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4708,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-40007670730843:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-40007670730843%3Amatrix.theocloud.dev","duration":15.83218,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dbcfiZwQrlEWDstcADbqIcQD"},"time":"2026-03-06T19:23:08.961667222Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:08.962393441Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1963","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:08.967268846Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1963","time":"2026-03-06T19:23:08.967552685Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4709,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-101455885258766%3Amatrix.theocloud.dev","duration":8.827845,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-101455885258766","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:08.971439892Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4711,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101455885258766:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101455885258766%3Amatrix.theocloud.dev","duration":14.139834,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:08.985961274Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4706,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157841837:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915157841837%3Amatrix.theocloud.dev","duration":47.975938,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Rudi (WA)"},"time":"2026-03-06T19:23:08.986058984Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:08.987086293Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4712,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101455885258766:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-101455885258766%3Amatrix.theocloud.dev","duration":31.346579,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"dokkis (WA)"},"time":"2026-03-06T19:23:09.017482249Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:09.018050555Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4703,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824988913030436_31?ts=1772703914000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":124.663659,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":351304,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/IRLiLIGaPhkhIMatWjdRWetL"},"time":"2026-03-06T19:23:09.037951114Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AFF174BF918521EB923","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-05T09:45:14Z","event_id":"$hCia6CcZsKbfVAhTuCGLlaEUsHNZPCa52eCdNSQeHJs","part_id":"","time":"2026-03-06T19:23:09.038135987Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1964","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.061850978Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1964","time":"2026-03-06T19:23:09.061972293Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":11,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A8C2D81D190BF2894A1","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A8C2D81D190BF2894A1","req_id":4710,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":107.306543,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<6966 bytes>","time":"2026-03-06T19:23:09.070170302Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4707,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-40566117134352:matrix.theocloud.dev?user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":162.026865,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mustafa (WA)","membership":"join"},"time":"2026-03-06T19:23:09.104885929Z","message":"Request completed"} +{"level":"debug","transaction_id":"1965","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.133162664Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1965","time":"2026-03-06T19:23:09.133511246Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:09.144079001Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4717,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157841837:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915157841837%3Amatrix.theocloud.dev","duration":13.217987,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:09.157683215Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"54756772999170@lid","alternate_jid":"4915157841837@s.whatsapp.net","time":"2026-03-06T19:23:09.158169666Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"169187452428542@lid","alternate_jid":"4915787360808@s.whatsapp.net","time":"2026-03-06T19:23:09.158283508Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"182961395781844@lid","alternate_jid":"380976416447@s.whatsapp.net","time":"2026-03-06T19:23:09.158408805Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"191890615967944@lid","alternate_jid":"393351986428@s.whatsapp.net","time":"2026-03-06T19:23:09.158528724Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4718,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915510889733%3Amatrix.theocloud.dev","duration":8.456075,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915510889733","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:09.167498559Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:09.177809992Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4713,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824989039042469_32?ts=1772705518000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":142.921948,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":270371,"w":1153},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/tqTkwQmzoFVanSljCMNMjgaN"},"time":"2026-03-06T19:23:09.182165143Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3AEB571DC5C019B83D21","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-05T10:11:58Z","event_id":"$ZOieOfuq6A3iNyCROXJ7qG1x6tMN_8KcgkSj2dxZ2TA","part_id":"","time":"2026-03-06T19:23:09.182288833Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4719,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915510889733:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915510889733%3Amatrix.theocloud.dev","duration":20.509862,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:09.188291073Z","message":"Request completed"} +{"level":"debug","transaction_id":"1966","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.229544349Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1966","time":"2026-03-06T19:23:09.229657075Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":11,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A8C2D81D190BF2894A1","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A8C2D81D190BF2894A1","req_id":4715,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824989070684131_47?ts=1772824985000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":199.959354,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":6966,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":6966,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/XPzTFNsOVQanzpVHaizbAeAe"},"m.relates_to":{"event_id":"$5QuDZjjUtOTixo34DhFa3ICNREJ-NcRPujft0DNt518","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/XPzTFNsOVQanzpVHaizbAeAe"},"time":"2026-03-06T19:23:09.270957635Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":11,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A8C2D81D190BF2894A1","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A8C2D81D190BF2894A1","event_id":"$sFJYhowK8WV9zXRD1wnEcQJMbi8_jpA6Vpga_m13pEw","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A8C2D81D190BF2894A1","time":"2026-03-06T19:23:09.271111777Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":12,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF78F9B4C7E8B71157D","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF78F9B4C7E8B71157D","time":"2026-03-06T19:23:09.271608355Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4721,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915510889733:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915510889733%3Amatrix.theocloud.dev","duration":102.854731,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"sirajedine (WA)"},"time":"2026-03-06T19:23:09.291362524Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"209689514090663@lid","alternate_jid":"4915510889733@s.whatsapp.net","time":"2026-03-06T19:23:09.291825229Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"220697532047610@lid","time":"2026-03-06T19:23:09.29215237Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","transaction_id":"1967","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.298736185Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1967","time":"2026-03-06T19:23:09.298854847Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4724,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-220697532047610%3Amatrix.theocloud.dev","duration":13.134385,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-220697532047610","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:09.305553832Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4725,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220697532047610:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220697532047610%3Amatrix.theocloud.dev","duration":5.101345,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:09.310946838Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4714,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":283.968004,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<108328 bytes>","time":"2026-03-06T19:23:09.325125224Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4726,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220697532047610:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-220697532047610%3Amatrix.theocloud.dev","duration":26.422704,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"9annas🖤 (WA)"},"time":"2026-03-06T19:23:09.337470672Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:09.33818453Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4722,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-101455885258766%3Amatrix.theocloud.dev","duration":157.435717,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41855 bytes>","time":"2026-03-06T19:23:09.346056864Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4716,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-8821896405131:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":257.289957,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Louis (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:09.363208294Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4727,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101455885258766:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101455885258766%3Amatrix.theocloud.dev","duration":17.734193,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:09.363995136Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4720,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824989183123867_12?ts=1772705628069&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":195.580597,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$ZOieOfuq6A3iNyCROXJ7qG1x6tMN_8KcgkSj2dxZ2TA","key":"👍️"}},"time":"2026-03-06T19:23:09.37880797Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363192861790277@g.us:266657507356684@lid:3AEB571DC5C019B83D21","target_part_id":"","reaction_sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"reaction_ts":"2026-03-05T10:13:48.069Z","event_id":"$FsgxLexVNvM9vXjGTKd29WfboCjjHp29UMAxiqN8lUA","time":"2026-03-06T19:23:09.378948283Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4729,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/kpIsBtlWKvidTtFuTgqNYJHg?user_id=%40whatsapp_lid-101455885258766%3Amatrix.theocloud.dev","duration":22.168336,"status_code":200,"response_length":41855,"response_mime":"image/jpeg","time":"2026-03-06T19:23:09.386296381Z","message":"Request completed"} +{"level":"debug","transaction_id":"1968","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.394385855Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1968","time":"2026-03-06T19:23:09.39447651Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4731,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-101455885258766:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-101455885258766%3Amatrix.theocloud.dev","duration":9.742778,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kpIsBtlWKvidTtFuTgqNYJHg"},"time":"2026-03-06T19:23:09.39627767Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:09.397189879Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4732,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-208864729415934%3Amatrix.theocloud.dev","duration":5.090868,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-208864729415934","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:09.402568986Z","message":"Request completed"} +{"level":"debug","transaction_id":"1969","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.411097139Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1969","time":"2026-03-06T19:23:09.411356393Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4733,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-208864729415934:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-208864729415934%3Amatrix.theocloud.dev","duration":9.678034,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:09.412547971Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":12,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF78F9B4C7E8B71157D","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF78F9B4C7E8B71157D","req_id":4723,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":138.656056,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<405944 bytes>","time":"2026-03-06T19:23:09.428815688Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4734,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-208864729415934:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-208864729415934%3Amatrix.theocloud.dev","duration":23.465654,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491624100405 (WA)"},"time":"2026-03-06T19:23:09.436168675Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:09.4370651Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4730,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824989379538309_33?ts=1772705542000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":86.864568,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich hab alles vorbereitet Domi! (Josh Platz ist immer noch weg)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:09.466531526Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A498534D9211A41BBD3","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-05T10:12:22Z","event_id":"$x72nWtstmzp_FnPBSABiQmRaAiEJKe5rKO3rAg_CaI0","part_id":"","time":"2026-03-06T19:23:09.46667624Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1970","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.486889831Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1970","time":"2026-03-06T19:23:09.486991452Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-8821896405131:matrix.theocloud.dev?user_id=%40whatsapp_lid-8821896405131%3Amatrix.theocloud.dev","duration":159.643429,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Louis (WA)","membership":"join"},"time":"2026-03-06T19:23:09.523449991Z","message":"Request completed"} +{"level":"debug","transaction_id":"1971","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.554248518Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1971","time":"2026-03-06T19:23:09.554478998Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":12,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF78F9B4C7E8B71157D","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF78F9B4C7E8B71157D","req_id":4735,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824989429251922_48?ts=1772824985000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":141.453445,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AsFTagybTHqPVWJexaBteVnt"},"m.relates_to":{"event_id":"$5Y7e9aEd40_46FeRFHoNS2iwNPtoMXuK5ZmRIHhLLLM","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AsFTagybTHqPVWJexaBteVnt"},"time":"2026-03-06T19:23:09.570987879Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":12,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AF78F9B4C7E8B71157D","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF78F9B4C7E8B71157D","event_id":"$In9Th5053GofSaUphKxuSGQIcFk9D5xdruEDng45OGU","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3AF78F9B4C7E8B71157D","time":"2026-03-06T19:23:09.571152427Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":13,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A2FCEA345B5EA99CE82","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A2FCEA345B5EA99CE82","time":"2026-03-06T19:23:09.571791484Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1972","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.593166062Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1972","time":"2026-03-06T19:23:09.593306096Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:09.594800719Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4739,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-208864729415934:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-208864729415934%3Amatrix.theocloud.dev","duration":5.257652,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:09.600300094Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:09.601315391Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4740,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-127023708139556%3Amatrix.theocloud.dev","duration":4.294597,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-127023708139556","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:09.605906398Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4741,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127023708139556:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-127023708139556%3Amatrix.theocloud.dev","duration":12.321073,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:09.618523183Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4736,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824989467481241_24?ts=1772705651000&user_id=%40whatsapp_lid-65244881764452%3Amatrix.theocloud.dev","duration":169.233323,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wow! Danke maja!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:09.636843353Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:65244881764452@lid:3AFEDB8ABA07FE05A0B3","sender_id":{"user_id":"lid-65244881764452","sender_login":"491736748726"},"message_ts":"2026-03-05T10:14:11Z","event_id":"$pyKWRgoGDD3o15AO0fNegM7bQV1ufhdpTnPyhdf1eP8","part_id":"","time":"2026-03-06T19:23:09.636976961Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:09.64052683Z","message":""} +{"level":"debug","transaction_id":"1973","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.664184271Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1973","time":"2026-03-06T19:23:09.664296298Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4742,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127023708139556:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-127023708139556%3Amatrix.theocloud.dev","duration":58.721441,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491749442314 (WA)"},"time":"2026-03-06T19:23:09.677422931Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:09.678298194Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4737,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-243705789296680:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":243.586846,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wEvgswXxqMzXVjAzbSYdoWIA","com.beeper.exclude_from_timeline":true,"displayname":"Vicente (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:09.767962736Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":13,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A2FCEA345B5EA99CE82","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A2FCEA345B5EA99CE82","req_id":4738,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":180.122141,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<405944 bytes>","time":"2026-03-06T19:23:09.771011278Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4743,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824989637807734_34?ts=1772706816000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":167.816643,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Fahren wir heute nach der Uni in die Schlossstraße?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:09.805763014Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A7927F27F76DCB71A5A","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-05T10:33:36Z","event_id":"$RRQQ29ffFEf1K8I_xusIxuFmFtddbC4iq1K6lzr-oOE","part_id":"","time":"2026-03-06T19:23:09.805887612Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1974","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.808790534Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1974","time":"2026-03-06T19:23:09.808883005Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4744,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-220697532047610%3Amatrix.theocloud.dev","duration":169.571988,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40426 bytes>","time":"2026-03-06T19:23:09.820256668Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4748,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220697532047610:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-220697532047610%3Amatrix.theocloud.dev","duration":5.190324,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:09.82574445Z","message":"Request completed"} +{"level":"debug","transaction_id":"1975","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.828176565Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1975","time":"2026-03-06T19:23:09.828409559Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:09.837822612Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4749,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/vYFuGxKANuXwgkVIpJQovTNc?user_id=%40whatsapp_lid-220697532047610%3Amatrix.theocloud.dev","duration":12.106867,"status_code":200,"response_length":40426,"response_mime":"image/jpeg","time":"2026-03-06T19:23:09.837966696Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4750,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-127023708139556:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-127023708139556%3Amatrix.theocloud.dev","duration":8.12649,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:09.846226096Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:09.847211011Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4752,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-183953482854532%3Amatrix.theocloud.dev","duration":8.494348,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-183953482854532","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:09.856022583Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4751,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-220697532047610:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-220697532047610%3Amatrix.theocloud.dev","duration":18.870387,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vYFuGxKANuXwgkVIpJQovTNc"},"time":"2026-03-06T19:23:09.857083765Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4753,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183953482854532:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-183953482854532%3Amatrix.theocloud.dev","duration":8.278188,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:09.864606888Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4754,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491624232636%3Amatrix.theocloud.dev","duration":9.704015,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491624232636","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:09.867695381Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4756,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624232636:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491624232636%3Amatrix.theocloud.dev","duration":10.709395,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:09.878722767Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4755,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183953482854532:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-183953482854532%3Amatrix.theocloud.dev","duration":44.029924,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491729913174 (WA)"},"time":"2026-03-06T19:23:09.908853742Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:09.909775659Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4757,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624232636:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491624232636%3Amatrix.theocloud.dev","duration":43.205785,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sven (WA)"},"time":"2026-03-06T19:23:09.922076408Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"266502737506505@lid","alternate_jid":"491624232636@s.whatsapp.net","time":"2026-03-06T19:23:09.922612447Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"27956059590853@lid","alternate_jid":"491731828379@s.whatsapp.net","time":"2026-03-06T19:23:09.922749617Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917662101735@s.whatsapp.net","time":"2026-03-06T19:23:09.923065513Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:09.925559998Z","message":"f92aca26b23a438c0a742af1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:09.926296693Z","message":"679e661553a323d553897aca"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:09.926310382Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A926284813638BED283","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A926284813638BED283","time":"2026-03-06T19:23:09.926415006Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:09.929259958Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":13,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A2FCEA345B5EA99CE82","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A2FCEA345B5EA99CE82","req_id":4746,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824989771373410_49?ts=1772824986000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":166.464149,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/OvepxZkfJulJkGOnKamyAtpK"},"m.relates_to":{"event_id":"$NvNZ0zQE-eFv_ZhIfJadsRq6JQTQN2VYNlpAaFpqtN4","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/OvepxZkfJulJkGOnKamyAtpK"},"time":"2026-03-06T19:23:09.938123144Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":13,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A2FCEA345B5EA99CE82","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A2FCEA345B5EA99CE82","event_id":"$9DeLC0Z4B3HRt6wAPHSt9qoYmTQye_dydu95aZtrxwI","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A2FCEA345B5EA99CE82","time":"2026-03-06T19:23:09.9383018Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":14,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A06DB20C328004C79F8","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A06DB20C328004C79F8","time":"2026-03-06T19:23:09.939070344Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4758,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917662101735%3Amatrix.theocloud.dev","duration":23.633834,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917662101735","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:09.946961326Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:09.956300346Z","message":"6ad298bab87485a28d2913af"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:09.957030197Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4747,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824989806741363_3?ts=1772706827000&user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":155.968472,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:09.962856783Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:127753970032737@lid:3AF02DD2D71D17E56825","sender_id":{"user_id":"lid-127753970032737","sender_login":"491753774472"},"message_ts":"2026-03-05T10:33:47Z","event_id":"$3cC1_Etv5srEb-C3YZ1QcA76SN7_SyIBuJyGgO9nIVo","part_id":"","time":"2026-03-06T19:23:09.963009039Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4760,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662101735:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917662101735%3Amatrix.theocloud.dev","duration":20.589762,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:09.967980896Z","message":"Request completed"} +{"level":"debug","transaction_id":"1976","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:09.978321105Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1976","time":"2026-03-06T19:23:09.9784471Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1977","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.001969466Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1977","time":"2026-03-06T19:23:10.002096859Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4745,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-243705789296680:matrix.theocloud.dev?user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":251.013937,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wEvgswXxqMzXVjAzbSYdoWIA","com.beeper.exclude_from_timeline":true,"displayname":"Vicente (WA)","membership":"join"},"time":"2026-03-06T19:23:10.019729431Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4763,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662101735:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917662101735%3Amatrix.theocloud.dev","duration":77.689328,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917662101735 (WA)"},"time":"2026-03-06T19:23:10.045923611Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.046671761Z","message":""} +{"level":"debug","transaction_id":"1978","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.054790568Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1978","time":"2026-03-06T19:23:10.055071474Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.069523851Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.118490292Z","message":"b9d72b6f5902277a03423d6e"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.11935878Z","message":""} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":14,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A06DB20C328004C79F8","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A06DB20C328004C79F8","req_id":4761,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":162.684917,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<467422 bytes>","time":"2026-03-06T19:23:10.12106265Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4762,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824989963982011_4?ts=1772706887000&user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":170.023029,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gehen wir in Datenbanken früher?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:10.134125238Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:127753970032737@lid:3A89F040A96B2B0F9761","sender_id":{"user_id":"lid-127753970032737","sender_login":"491753774472"},"message_ts":"2026-03-05T10:34:47Z","event_id":"$qmog7Lv0xwmT1UAbfquAtK831y8kE3BdsZKCV4uy4GU","part_id":"","time":"2026-03-06T19:23:10.134253608Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A926284813638BED283","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A926284813638BED283","req_id":4759,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":199.336082,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15270 bytes>","time":"2026-03-06T19:23:10.137016705Z","message":"Request completed"} +{"level":"debug","transaction_id":"1979","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.161029643Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1979","time":"2026-03-06T19:23:10.16116367Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.172288556Z","message":"0d6f4568a8c34287e72e4f63"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.17307477Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.212789702Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4764,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-105094192341121:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":207.65806,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Zou (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:10.228308082Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4770,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917662101735:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917662101735%3Amatrix.theocloud.dev","duration":24.611765,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:10.23776758Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4766,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-183953482854532%3Amatrix.theocloud.dev","duration":158.787652,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<76528 bytes>","time":"2026-03-06T19:23:10.24184406Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.253328004Z","message":"359346e3af8a21ca7c844b15"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.253814665Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4772,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-174715159236763%3Amatrix.theocloud.dev","duration":18.754867,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-174715159236763","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:10.257433748Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4773,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183953482854532:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-183953482854532%3Amatrix.theocloud.dev","duration":17.919834,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:10.259956309Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4774,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-174715159236763:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-174715159236763%3Amatrix.theocloud.dev","duration":10.506782,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:10.268127358Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4775,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/tmSasSjAiixhQfdTpmlCdZGi?user_id=%40whatsapp_lid-183953482854532%3Amatrix.theocloud.dev","duration":9.959009,"status_code":200,"response_length":76528,"response_mime":"image/jpeg","time":"2026-03-06T19:23:10.270000945Z","message":"Request completed"} +{"level":"debug","transaction_id":"1980","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.283432998Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1980","time":"2026-03-06T19:23:10.283678424Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4768,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990135104496_35?ts=1772706906000&user_id=%40whatsapp_lid-266657507356684%3Amatrix.theocloud.dev","duration":160.776129,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gar nicht erst hin","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:10.295996494Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:266657507356684@lid:3A2A901A26220A3362FF","sender_id":{"user_id":"lid-266657507356684","sender_login":"4915150515988"},"message_ts":"2026-03-05T10:35:06Z","event_id":"$W_o4gwM1c1RYI7pEgPBwTbsfMqjnwAEWI4Rm9rLQYdc","part_id":"","time":"2026-03-06T19:23:10.296105657Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":14,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A06DB20C328004C79F8","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A06DB20C328004C79F8","req_id":4767,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990121673979_50?ts=1772824986000&user_id=%40whatsapp_4917623702252%3Amatrix.theocloud.dev","duration":179.110198,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":467422,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":467422,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/YjzmpEUOxOLvHCubkPyRVMqR"},"m.relates_to":{"event_id":"$_wwS8FNTihnUJfldz9QlXhMd-T7Lu0QdG6etTjiXZmo","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/YjzmpEUOxOLvHCubkPyRVMqR"},"time":"2026-03-06T19:23:10.301017031Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":14,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A06DB20C328004C79F8","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"4917623702252"},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A06DB20C328004C79F8","event_id":"$evR1rqK0O-pr-tQ8aTP1ygAX0iycEIYSzePr94_bKTE","part_id":"4917623702252@s.whatsapp.net:4917623702252@s.whatsapp.net:3A06DB20C328004C79F8","time":"2026-03-06T19:23:10.301128918Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":15,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3ACF22D8185A2E17637C","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACF22D8185A2E17637C","time":"2026-03-06T19:23:10.301545317Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4777,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183953482854532:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-183953482854532%3Amatrix.theocloud.dev","duration":39.152703,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tmSasSjAiixhQfdTpmlCdZGi"},"time":"2026-03-06T19:23:10.309323225Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:10.309871346Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A926284813638BED283","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A926284813638BED283","req_id":4769,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990137412012_54?ts=1772824989000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":179.253863,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":15270,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":15270,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/IUNNZKTThxKNLTjJXwFgjCMj"},"m.relates_to":{"event_id":"$EOT84ZLTITsI7jFRUyDQKwYnnIVYtDQfsO8dsg7oW-w","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/IUNNZKTThxKNLTjJXwFgjCMj"},"time":"2026-03-06T19:23:10.316942101Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A926284813638BED283","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A926284813638BED283","event_id":"$Lgdb9c4iwK5dRbNsHftGA6K3zZtkCV3yzytZyG8yxVg","part_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A926284813638BED283","time":"2026-03-06T19:23:10.317133399Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3BA01BAF7AEA49D820","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A3BA01BAF7AEA49D820","time":"2026-03-06T19:23:10.317932254Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4765,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":284.20868,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<126019 bytes>","time":"2026-03-06T19:23:10.333420392Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4779,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-156203732750524%3Amatrix.theocloud.dev","duration":24.637956,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-156203732750524","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:10.334680974Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.337257313Z","message":"9c4cffce15ce56f462de24d4"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.337842801Z","message":""} +{"level":"debug","transaction_id":"1981","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.341952456Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1981","time":"2026-03-06T19:23:10.342073073Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4782,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-156203732750524:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-156203732750524%3Amatrix.theocloud.dev","duration":9.567265,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:10.344499252Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4776,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-174715159236763:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-174715159236763%3Amatrix.theocloud.dev","duration":87.090856,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Bryan (WA)"},"time":"2026-03-06T19:23:10.35532626Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.356133008Z","message":""} +{"level":"debug","transaction_id":"1982","content":{"pdu":2,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.359963923Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1982","time":"2026-03-06T19:23:10.360185322Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4783,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-156203732750524:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-156203732750524%3Amatrix.theocloud.dev","duration":31.377938,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wally (WA)"},"time":"2026-03-06T19:23:10.376135746Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.377083924Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.4025581Z","message":"425c30932f37701b00038c75"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.4032839Z","message":""} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4778,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990296717545_5?ts=1772706918000&user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":120.423887,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"???????","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:10.417326933Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:127753970032737@lid:3AAF604417326E5A4791","sender_id":{"user_id":"lid-127753970032737","sender_login":"491753774472"},"message_ts":"2026-03-05T10:35:18Z","event_id":"$9iebDr8EiVeKQZ8FrlVybtn9lioXssbfnOmNVazDv8w","part_id":"","time":"2026-03-06T19:23:10.417470528Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"1983","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.44555813Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1983","time":"2026-03-06T19:23:10.445668551Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-105094192341121:matrix.theocloud.dev?user_id=%40whatsapp_lid-105094192341121%3Amatrix.theocloud.dev","duration":234.830798,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Zou (WA)","membership":"join"},"time":"2026-03-06T19:23:10.463682742Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3BA01BAF7AEA49D820","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A3BA01BAF7AEA49D820","req_id":4781,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":159.930969,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<15270 bytes>","time":"2026-03-06T19:23:10.488618295Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.488865047Z","message":"41e96d531c5408a89496daf2"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":15,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3ACF22D8185A2E17637C","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACF22D8185A2E17637C","req_id":4780,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":170.549569,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<405944 bytes>","time":"2026-03-06T19:23:10.490114525Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.491639948Z","message":""} +{"level":"debug","transaction_id":"1984","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.500660488Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1984","time":"2026-03-06T19:23:10.500926657Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.510528005Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.53380264Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4789,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-156203732750524:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-156203732750524%3Amatrix.theocloud.dev","duration":12.695008,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:10.546750617Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:10.547681544Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4790,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-66993117999129%3Amatrix.theocloud.dev","duration":19.517334,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-66993117999129","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:10.567473149Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4784,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.sticker/mautrix-go_1772824990418190671_6?ts=1772706928000&user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":165.076175,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":554158,"w":190},"m.mentions":{},"url":"mxc://matrix.theocloud.dev/OoNBwYwrAMtrMutqggjzaqek"},"time":"2026-03-06T19:23:10.583485941Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:127753970032737@lid:3A320C90DE3CDB8962D1","sender_id":{"user_id":"lid-127753970032737","sender_login":"491753774472"},"message_ts":"2026-03-05T10:35:28Z","event_id":"$D9pe38D7XXgh-d3ta_WnySFC97H6CommkaJl1ielCRo","part_id":"","time":"2026-03-06T19:23:10.583606419Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4791,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66993117999129:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66993117999129%3Amatrix.theocloud.dev","duration":17.816607,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:10.585661875Z","message":"Request completed"} +{"level":"debug","transaction_id":"1985","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.610906061Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1985","time":"2026-03-06T19:23:10.611008101Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3BA01BAF7AEA49D820","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A3BA01BAF7AEA49D820","req_id":4786,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990489052434_55?ts=1772824989000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":164.754971,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":15270,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":15270,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AXsNtQWiULXdaTakRjtcAkbP"},"m.relates_to":{"event_id":"$V0IYNizT9kC7f9wkA-A84b9oB4TsfdmI4DqPI2YOW8M","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AXsNtQWiULXdaTakRjtcAkbP"},"time":"2026-03-06T19:23:10.654115409Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A3BA01BAF7AEA49D820","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A3BA01BAF7AEA49D820","event_id":"$Z5A6N-lMYmSdMXQ0arGyjd_7rt800T4FfIXGCCYcTNE","part_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A3BA01BAF7AEA49D820","time":"2026-03-06T19:23:10.654305659Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A5B10C668A21075F3AB","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A5B10C668A21075F3AB","time":"2026-03-06T19:23:10.655140902Z","message":"Handling remote event"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":15,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3ACF22D8185A2E17637C","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACF22D8185A2E17637C","req_id":4787,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LBUTlwigiMBbyeQwfV:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990490473863_499?ts=1772824986000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":165.771663,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/FTYkjDXcQyiEagqQnnZIfGsz"},"m.relates_to":{"event_id":"$lUahnpvug5nkWt6yxMGUD_i1xwB65t8VW0gaDe3DHM4","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/FTYkjDXcQyiEagqQnnZIfGsz"},"time":"2026-03-06T19:23:10.656490253Z","message":"Request completed"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":15,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3ACF22D8185A2E17637C","sender_id":"","chat_id":"4917623702252@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACF22D8185A2E17637C","event_id":"$Thnsg6F9bxp1qt9WAngyp3dImbIFpZhnHllbyTmrDG4","part_id":"4917623702252@s.whatsapp.net:4917641870516@s.whatsapp.net:3ACF22D8185A2E17637C","time":"2026-03-06T19:23:10.656669608Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4793,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66993117999129:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-66993117999129%3Amatrix.theocloud.dev","duration":71.042025,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915257212017 (WA)"},"time":"2026-03-06T19:23:10.656907072Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.659587127Z","message":""} +{"level":"debug","transaction_id":"1986","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.688897666Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1986","time":"2026-03-06T19:23:10.689044334Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4788,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-174715159236763%3Amatrix.theocloud.dev","duration":169.258675,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<44798 bytes>","time":"2026-03-06T19:23:10.690547129Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A5B10C668A21075F3AB","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A5B10C668A21075F3AB","req_id":4794,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":28.036058,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<37779 bytes>","time":"2026-03-06T19:23:10.695886146Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4795,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-174715159236763:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-174715159236763%3Amatrix.theocloud.dev","duration":7.702408,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:10.698568087Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4797,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YKCMFdCHOAjMvdqTqMEbsrzg?user_id=%40whatsapp_lid-174715159236763%3Amatrix.theocloud.dev","duration":7.057974,"status_code":200,"response_length":44798,"response_mime":"image/jpeg","time":"2026-03-06T19:23:10.705734736Z","message":"Request completed"} +{"level":"debug","transaction_id":"1987","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.713706665Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1987","time":"2026-03-06T19:23:10.713839295Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4785,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-207820683223254:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":263.226894,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KsgCKZqBmgzTQUlqjzTXEbEt","com.beeper.exclude_from_timeline":true,"displayname":"Tuan (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:10.727871502Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4798,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-174715159236763:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-174715159236763%3Amatrix.theocloud.dev","duration":30.989336,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YKCMFdCHOAjMvdqTqMEbsrzg"},"time":"2026-03-06T19:23:10.73691949Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4800,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491776277400%3Amatrix.theocloud.dev","duration":18.343287,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491776277400","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:10.756046547Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4801,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491776277400:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491776277400%3Amatrix.theocloud.dev","duration":7.354524,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:10.763665493Z","message":"Request completed"} +{"level":"debug","transaction_id":"1988","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.770500531Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1988","time":"2026-03-06T19:23:10.770731918Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4792,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990585040419_10?ts=1772706948000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":199.762259,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wir müssen unterschreiben","m.mentions":{"user_ids":["@whatsapp_lid-266657507356684:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$W_o4gwM1c1RYI7pEgPBwTbsfMqjnwAEWI4Rm9rLQYdc"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:10.784916661Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:251745280225436@lid:ACE87EFB0CE7807E026E15B05E08AC44","sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"message_ts":"2026-03-05T10:35:48Z","event_id":"$D6jttIplqT8q8HNibKCMaywVDgYBi_m7IwB-8HGgIGo","part_id":"","time":"2026-03-06T19:23:10.78503637Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.818816531Z","message":""} +{"level":"debug","transaction_id":"1989","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.819440292Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1989","time":"2026-03-06T19:23:10.819520959Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4802,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491776277400:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491776277400%3Amatrix.theocloud.dev","duration":72.946203,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Bryan (WA)"},"time":"2026-03-06T19:23:10.836752009Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.837489334Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A5B10C668A21075F3AB","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A5B10C668A21075F3AB","req_id":4796,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990696257777_56?ts=1772824989000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":183.527647,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"Voice message.ogg","info":{"duration":16000,"mimetype":"audio/ogg; codecs=opus","size":37779},"m.mentions":{},"m.new_content":{"body":"","filename":"Voice message.ogg","info":{"duration":16000,"mimetype":"audio/ogg; codecs=opus","size":37779},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":16000,"waveform":[4,10,100,100,99,75,66,51,71,54,79,65,90,79,77,85,35,16,6,5,67,100,89,68,100,83,62,54,19,39,92,83,100,89,28,34,81,74,75,49,47,49,60,19,5,2,71,67,66,77,90,46,45,51,54,24,22,9,16,24,19,6,1,1]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/ZuhYEBUqwNqOFjyffucdbNhg"},"m.relates_to":{"event_id":"$fld2DkWN1Xl3eqH-RmLizBojNyp542xWq6Fdi_6lfAs","rel_type":"m.replace"},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":16000,"waveform":[4,10,100,100,99,75,66,51,71,54,79,65,90,79,77,85,35,16,6,5,67,100,89,68,100,83,62,54,19,39,92,83,100,89,28,34,81,74,75,49,47,49,60,19,5,2,71,67,66,77,90,46,45,51,54,24,22,9,16,24,19,6,1,1]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/ZuhYEBUqwNqOFjyffucdbNhg"},"time":"2026-03-06T19:23:10.880271596Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A5B10C668A21075F3AB","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A5B10C668A21075F3AB","event_id":"$sIKVMroq4kc1SK-zdBwtlpzuR8iNRgvz7seac6nP85g","part_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A5B10C668A21075F3AB","time":"2026-03-06T19:23:10.880517301Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A91857455F96CE9042F","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A91857455F96CE9042F","time":"2026-03-06T19:23:10.881211323Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1990","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.908889021Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1990","time":"2026-03-06T19:23:10.909115659Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A91857455F96CE9042F","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A91857455F96CE9042F","req_id":4806,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":22.909431,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<87721 bytes>","time":"2026-03-06T19:23:10.916023961Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","req_id":4803,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21yywjyVJbcWYSiFwjvD:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990785829568_11?ts=1772706965000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":167.19847,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Aber wenn wir vorher schon kurz hin gehen können wir unterschreiben und dann direkt wieder gehen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:10.95318225Z","message":"Request completed"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","message_id":"120363192861790277@g.us:251745280225436@lid:AC0CEC92571BC61E5EADD99866C077C8","sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"message_ts":"2026-03-05T10:36:05Z","event_id":"$qMETTTxWH11uhnd4QaDsk86DyPVmE6XDv36J7HrYc0s","part_id":"","time":"2026-03-06T19:23:10.953374805Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:23:10.955560586Z","message":"Backfill finished"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","time":"2026-03-06T19:23:10.955647051Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"120363192861790277@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363192861790277@g.us","latest_message_ts":"2026-03-05T10:36:05Z","started_at":"2026-03-06T19:22:00.219385341Z","duration":"1m10.736483459s","time":"2026-03-06T19:23:10.955887518Z","message":"Event that took long finished handling"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:10.960564012Z","message":"8eaed3fb53c1378afd813d82"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:10.961435503Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4799,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-207820683223254:matrix.theocloud.dev?user_id=%40whatsapp_lid-207820683223254%3Amatrix.theocloud.dev","duration":262.081482,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KsgCKZqBmgzTQUlqjzTXEbEt","com.beeper.exclude_from_timeline":true,"displayname":"Tuan (WA)","membership":"join"},"time":"2026-03-06T19:23:10.990630523Z","message":"Request completed"} +{"level":"debug","transaction_id":"1991","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:10.993485114Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1991","time":"2026-03-06T19:23:10.993590506Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"1992","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.007228174Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1992","time":"2026-03-06T19:23:11.007524375Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:11.022096672Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4805,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-66993117999129%3Amatrix.theocloud.dev","duration":152.349249,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46712 bytes>","time":"2026-03-06T19:23:11.029207307Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4809,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66993117999129:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-66993117999129%3Amatrix.theocloud.dev","duration":10.13173,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:11.039689714Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4811,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/gorgSLdztPtQjtXDzzPCYOLG?user_id=%40whatsapp_lid-66993117999129%3Amatrix.theocloud.dev","duration":5.224546,"status_code":200,"response_length":46712,"response_mime":"image/jpeg","time":"2026-03-06T19:23:11.045073989Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4812,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-66993117999129:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-66993117999129%3Amatrix.theocloud.dev","duration":27.34043,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gorgSLdztPtQjtXDzzPCYOLG"},"time":"2026-03-06T19:23:11.072676188Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:11.07347651Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A91857455F96CE9042F","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A91857455F96CE9042F","req_id":4807,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824990916615594_500?ts=1772824990000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":158.621847,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"Voice message.ogg","info":{"duration":39000,"mimetype":"audio/ogg; codecs=opus","size":87721},"m.mentions":{},"m.new_content":{"body":"","filename":"Voice message.ogg","info":{"duration":39000,"mimetype":"audio/ogg; codecs=opus","size":87721},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":39000,"waveform":[8,11,77,92,67,49,65,60,74,22,47,53,15,31,85,74,67,57,82,65,92,45,73,66,22,11,32,76,81,76,88,95,34,82,15,53,62,56,72,49,67,52,21,21,73,33,42,39,21,72,69,87,94,77,57,56,32,69,80,72,46,45,26,54]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/WhvmkAxhiWpvUysDRJCCroSN"},"m.relates_to":{"event_id":"$8zbz63qv27yJ67Mpd6hu9LEnKZTvSWsFS97CFeC2ZmA","rel_type":"m.replace"},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":39000,"waveform":[8,11,77,92,67,49,65,60,74,22,47,53,15,31,85,74,67,57,82,65,92,45,73,66,22,11,32,76,81,76,88,95,34,82,15,53,62,56,72,49,67,52,21,21,73,33,42,39,21,72,69,87,94,77,57,56,32,69,80,72,46,45,26,54]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/WhvmkAxhiWpvUysDRJCCroSN"},"time":"2026-03-06T19:23:11.075873844Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A91857455F96CE9042F","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A91857455F96CE9042F","event_id":"$LBAqQi5W4hZMmFq-GMfIUibJTqFcWS5oFw-us26HyiI","part_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A91857455F96CE9042F","time":"2026-03-06T19:23:11.076175213Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A1E9954A5C58F88516F","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1E9954A5C58F88516F","time":"2026-03-06T19:23:11.077047891Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4813,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-261430381154547%3Amatrix.theocloud.dev","duration":19.953848,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-261430381154547","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:11.093683397Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4815,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261430381154547:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-261430381154547%3Amatrix.theocloud.dev","duration":5.782097,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:11.099862476Z","message":"Request completed"} +{"level":"debug","transaction_id":"1993","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.101614119Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1993","time":"2026-03-06T19:23:11.101811563Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A1E9954A5C58F88516F","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1E9954A5C58F88516F","req_id":4814,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":17.212821,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<170365 bytes>","time":"2026-03-06T19:23:11.10985522Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4816,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261430381154547:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-261430381154547%3Amatrix.theocloud.dev","duration":21.201231,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917672718576 (WA)"},"time":"2026-03-06T19:23:11.121309621Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:11.122207722Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4808,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-217626664026259:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":174.025685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491774226359 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:11.165554798Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4810,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491776277400%3Amatrix.theocloud.dev","duration":142.052971,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<44798 bytes>","time":"2026-03-06T19:23:11.173492644Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4819,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491776277400:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491776277400%3Amatrix.theocloud.dev","duration":14.406561,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:11.18829556Z","message":"Request completed"} +{"level":"debug","transaction_id":"1994","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.199592607Z","message":"Starting handling of transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4820,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/WWpWdjpnZnxoBvRDhLmcLcoS?user_id=%40whatsapp_491776277400%3Amatrix.theocloud.dev","duration":11.293345,"status_code":200,"response_length":44798,"response_mime":"image/jpeg","time":"2026-03-06T19:23:11.199793194Z","message":"Request completed"} +{"level":"debug","transaction_id":"1994","time":"2026-03-06T19:23:11.199862058Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4821,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491776277400:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491776277400%3Amatrix.theocloud.dev","duration":12.416477,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WWpWdjpnZnxoBvRDhLmcLcoS"},"time":"2026-03-06T19:23:11.212439662Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"174715159236763@lid","alternate_jid":"491776277400@s.whatsapp.net","time":"2026-03-06T19:23:11.212831267Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"245517661540533@lid","alternate_jid":"919150986374@s.whatsapp.net","time":"2026-03-06T19:23:11.212907465Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915111226110@s.whatsapp.net","time":"2026-03-06T19:23:11.213121321Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4822,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915111226110%3Amatrix.theocloud.dev","duration":16.577467,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915111226110","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:11.22990168Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4823,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111226110:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915111226110%3Amatrix.theocloud.dev","duration":5.037718,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:11.235246075Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A1E9954A5C58F88516F","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1E9954A5C58F88516F","req_id":4817,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824991110199542_501?ts=1772824990000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":157.658304,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"Voice message.ogg","info":{"duration":75000,"mimetype":"audio/ogg; codecs=opus","size":170365},"m.mentions":{},"m.new_content":{"body":"","filename":"Voice message.ogg","info":{"duration":75000,"mimetype":"audio/ogg; codecs=opus","size":170365},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":75000,"waveform":[24,88,74,27,79,89,74,60,51,87,94,61,64,90,79,45,67,73,62,97,78,20,83,57,61,55,86,85,76,66,76,36,49,86,88,60,68,67,54,88,70,86,36,84,50,85,43,60,88,38,95,79,35,61,87,87,28,39,53,86,71,85,56,53]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/khNRWqIFozCaEAMKRbjcvaGx"},"m.relates_to":{"event_id":"$DdZWc88hw_QtFncOR9hi-3htRC_P62S7D1COZMBjiEM","rel_type":"m.replace"},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":75000,"waveform":[24,88,74,27,79,89,74,60,51,87,94,61,64,90,79,45,67,73,62,97,78,20,83,57,61,55,86,85,76,66,76,36,49,86,88,60,68,67,54,88,70,86,36,84,50,85,43,60,88,38,95,79,35,61,87,87,28,39,53,86,71,85,56,53]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/khNRWqIFozCaEAMKRbjcvaGx"},"time":"2026-03-06T19:23:11.268399332Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A1E9954A5C58F88516F","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":true,"wa_event_type":"media retry","remote_sender":{"user_id":"4917641870516","is_from_me":true},"remote_target_message_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1E9954A5C58F88516F","event_id":"$RC0aShMTnGUrU6UPQ3QL6FAAJzW6H6V2BUqnpPqdZaU","part_id":"491783743461@s.whatsapp.net:4917641870516@s.whatsapp.net:3A1E9954A5C58F88516F","time":"2026-03-06T19:23:11.268732689Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A44807B65A161FEE355","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A44807B65A161FEE355","time":"2026-03-06T19:23:11.269615285Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4804,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":441.572878,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<180838 bytes>","time":"2026-03-06T19:23:11.272834941Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:11.286854367Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4826,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261430381154547:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-261430381154547%3Amatrix.theocloud.dev","duration":12.654081,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:11.299873583Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:11.300690806Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"1995","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.303606928Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1995","time":"2026-03-06T19:23:11.303787191Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4827,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-161108786712577%3Amatrix.theocloud.dev","duration":7.925415,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-161108786712577","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:11.308860738Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4824,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111226110:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915111226110%3Amatrix.theocloud.dev","duration":77.470721,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Leon (WA)"},"time":"2026-03-06T19:23:11.312919408Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4828,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-161108786712577:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-161108786712577%3Amatrix.theocloud.dev","duration":3.763796,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:11.313028781Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:11.313848869Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4829,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-161108786712577:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-161108786712577%3Amatrix.theocloud.dev","duration":13.682088,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491741768036 (WA)"},"time":"2026-03-06T19:23:11.326914669Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:11.327728959Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4818,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-217626664026259:matrix.theocloud.dev?user_id=%40whatsapp_lid-217626664026259%3Amatrix.theocloud.dev","duration":185.982461,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491774226359 (WA)","membership":"join"},"time":"2026-03-06T19:23:11.352417411Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:11.353153059Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4830,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917670764502%3Amatrix.theocloud.dev","duration":11.770367,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917670764502","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:11.365192598Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4831,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670764502:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670764502%3Amatrix.theocloud.dev","duration":4.720076,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:11.370241771Z","message":"Request completed"} +{"level":"debug","transaction_id":"1996","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.372177308Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1996","time":"2026-03-06T19:23:11.372464499Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4832,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670764502:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917670764502%3Amatrix.theocloud.dev","duration":11.437989,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917670764502 (WA)"},"time":"2026-03-06T19:23:11.381886981Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:11.382849546Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A44807B65A161FEE355","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A44807B65A161FEE355","req_id":4825,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":118.529767,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<139484 bytes>","time":"2026-03-06T19:23:11.398355563Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A44807B65A161FEE355","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A44807B65A161FEE355","req_id":4833,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824991398708755_57?ts=1772824990000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":35.493041,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":139484,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":139484,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/FfdgsslPkfhqvvTbFsBlThIy"},"m.relates_to":{"event_id":"$IHiib6G3MOXAFEw_UydoDXWJQlTBJt73ZzyP63bTNNU","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/FfdgsslPkfhqvvTbFsBlThIy"},"time":"2026-03-06T19:23:11.434432206Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A44807B65A161FEE355","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A44807B65A161FEE355","event_id":"$UvIb0nSwH55JaXWSweQ-6Q02W_sxSLTAyVD-9zqsB_E","part_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A44807B65A161FEE355","time":"2026-03-06T19:23:11.434552195Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A6A15832DA75B4FCAB8","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A6A15832DA75B4FCAB8","time":"2026-03-06T19:23:11.435007356Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1997","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.447511556Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1997","time":"2026-03-06T19:23:11.447615062Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:11.465982864Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:11.478096016Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4835,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111226110:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915111226110%3Amatrix.theocloud.dev","duration":13.741174,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:11.480007178Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915157563910@s.whatsapp.net","alternate_jid":"80358888464591@lid","time":"2026-03-06T19:23:11.480592875Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915759477451@s.whatsapp.net","time":"2026-03-06T19:23:11.480950677Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4836,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915759477451%3Amatrix.theocloud.dev","duration":13.009647,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915759477451","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:11.494251077Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4838,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915759477451:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915759477451%3Amatrix.theocloud.dev","duration":3.392096,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:11.498113212Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4839,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915759477451:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915759477451%3Amatrix.theocloud.dev","duration":5.541071,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915759477451 (WA)"},"time":"2026-03-06T19:23:11.503839574Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:11.5043812Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 404","media_type":"file attachment","time":"2026-03-06T19:23:11.521837561Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A6A15832DA75B4FCAB8","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A6A15832DA75B4FCAB8","req_id":4834,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":102.838947,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<467422 bytes>","time":"2026-03-06T19:23:11.557562688Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4837,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-161108786712577%3Amatrix.theocloud.dev","duration":79.44055,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43791 bytes>","time":"2026-03-06T19:23:11.570049776Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4841,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-161108786712577:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-161108786712577%3Amatrix.theocloud.dev","duration":4.585559,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:11.575034973Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4842,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/DtGflqjsPOvmtKyfxngYhIrU?user_id=%40whatsapp_lid-161108786712577%3Amatrix.theocloud.dev","duration":2.834965,"status_code":200,"response_length":43791,"response_mime":"image/jpeg","time":"2026-03-06T19:23:11.578001451Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4843,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-161108786712577:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-161108786712577%3Amatrix.theocloud.dev","duration":8.476748,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DtGflqjsPOvmtKyfxngYhIrU"},"time":"2026-03-06T19:23:11.586799893Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:11.587586735Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4844,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-269578168975378%3Amatrix.theocloud.dev","duration":6.665321,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-269578168975378","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:11.594502021Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A6A15832DA75B4FCAB8","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A6A15832DA75B4FCAB8","req_id":4840,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824991558039221_58?ts=1772824990000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":51.358955,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":467422,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":467422,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ZjaPfKXXFkyjxhIcBiWuSTrz"},"m.relates_to":{"event_id":"$_7FIgtYf9sNXof07beugm_Do2CZSTHGSzMUSRH7skAM","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ZjaPfKXXFkyjxhIcBiWuSTrz"},"time":"2026-03-06T19:23:11.609761565Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A6A15832DA75B4FCAB8","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A6A15832DA75B4FCAB8","event_id":"$oP3RKAcwZjnYVuDOMFra8lAnRbJPv0PhWnh-DGufiyc","part_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A6A15832DA75B4FCAB8","time":"2026-03-06T19:23:11.610001264Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4845,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-269578168975378:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-269578168975378%3Amatrix.theocloud.dev","duration":15.361234,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:11.610242708Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A4A7C6BC0666B1B228B","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A4A7C6BC0666B1B228B","time":"2026-03-06T19:23:11.610904673Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1998","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.628706892Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1998","time":"2026-03-06T19:23:11.628861663Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4846,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-269578168975378:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-269578168975378%3Amatrix.theocloud.dev","duration":23.746909,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+573218770957 (WA)"},"time":"2026-03-06T19:23:11.634221004Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:11.635023841Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A4A7C6BC0666B1B228B","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A4A7C6BC0666B1B228B","req_id":4847,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Voice+message.ogg&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":8.294042,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<351187 bytes>","time":"2026-03-06T19:23:11.636544305Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:11.664047887Z","message":""} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A4A7C6BC0666B1B228B","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A4A7C6BC0666B1B228B","req_id":4848,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824991636927809_59?ts=1772824990000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":31.264584,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"Voice message.ogg","info":{"duration":159000,"mimetype":"audio/ogg; codecs=opus","size":351187},"m.mentions":{},"m.new_content":{"body":"","filename":"Voice message.ogg","info":{"duration":159000,"mimetype":"audio/ogg; codecs=opus","size":351187},"m.mentions":{},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":159000,"waveform":[23,44,41,27,35,48,26,37,28,34,28,38,28,9,46,28,39,26,28,39,28,27,24,31,38,27,31,27,38,21,36,34,19,11,0,18,20,48,30,34,35,25,36,47,25,47,43,26,39,33,28,43,22,26,35,36,18,20,27,27,24,45,39,10]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/lIDPujxCyloVEMTvbnMPtYaQ"},"m.relates_to":{"event_id":"$iaF7yXUOdt0cKajLdRSSjf1zAzwGmGlpX2B-XT2Bgu4","rel_type":"m.replace"},"msgtype":"m.audio","org.matrix.msc1767.audio":{"duration":159000,"waveform":[23,44,41,27,35,48,26,37,28,34,28,38,28,9,46,28,39,26,28,39,28,27,24,31,38,27,31,27,38,21,36,34,19,11,0,18,20,48,30,34,35,25,36,47,25,47,43,26,39,33,28,43,22,26,35,36,18,20,27,27,24,45,39,10]},"org.matrix.msc3245.voice":{},"url":"mxc://matrix.theocloud.dev/lIDPujxCyloVEMTvbnMPtYaQ"},"time":"2026-03-06T19:23:11.668678216Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A4A7C6BC0666B1B228B","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A4A7C6BC0666B1B228B","event_id":"$M4mlBFryX0lKCn2dA5vq7WP32CwgbpZm1sv9eFvpuuM","part_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A4A7C6BC0666B1B228B","time":"2026-03-06T19:23:11.66892406Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A669F8C07CC0A62217D","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A669F8C07CC0A62217D","time":"2026-03-06T19:23:11.669523167Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"1999","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.682666632Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"1999","time":"2026-03-06T19:23:11.683159578Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 404","media_type":"file attachment","time":"2026-03-06T19:23:11.710772113Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_count":65,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:23:11.713399577Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_count":65,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:23:11.713494912Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4850,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824991713810738_1?ts=1765105107000&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":55.277103,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Leute, \nder Zeitraum für die Studiengebühren fürs nächste Semester ist jetzt offen. Wir können bis zum 15.01.26 überweisen.\n\nAußerdem nicht vergessen, dass morgen um 20 Uhr die Abgabe der PA endet.","format":"org.matrix.custom.html","formatted_body":"Hey Leute, \u003cbr\u003eder Zeitraum für die Studiengebühren fürs nächste Semester ist jetzt offen. Wir können bis zum 15.01.26 überweisen.\u003cbr\u003e\u003cbr\u003eAußerdem nicht vergessen, dass morgen um 20 Uhr die Abgabe der PA endet.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:11.769273901Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:102147257532455@lid:3AAA252D9750465846C9","sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"message_ts":"2025-12-07T10:58:27Z","event_id":"$4dxcjnfAGKpql_IdCuFWzDz1SSWKoNt8sFg-mw6kLdc","part_id":"","time":"2026-03-06T19:23:11.769480494Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:11.809504478Z","message":""} +{"level":"debug","transaction_id":"2000","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.811142627Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2000","time":"2026-03-06T19:23:11.811246831Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A669F8C07CC0A62217D","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A669F8C07CC0A62217D","req_id":4849,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=sticker.webp&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":127.41614,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<405944 bytes>","time":"2026-03-06T19:23:11.815047994Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4853,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-269578168975378:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-269578168975378%3Amatrix.theocloud.dev","duration":29.24775,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:11.839062468Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:11.840160806Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4855,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-167500134244415%3Amatrix.theocloud.dev","duration":22.398605,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-167500134244415","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:11.862827675Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4856,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-167500134244415:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-167500134244415%3Amatrix.theocloud.dev","duration":5.327703,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:11.868496977Z","message":"Request completed"} +{"level":"debug","transaction_id":"2001","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:11.875618018Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2001","time":"2026-03-06T19:23:11.875698337Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4857,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-167500134244415:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-167500134244415%3Amatrix.theocloud.dev","duration":26.947009,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+5521987169367 (WA)"},"time":"2026-03-06T19:23:11.895625645Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:11.896493644Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:11.910034372Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4851,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824991770262727_1?ts=1765113901341&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":168.172979,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$4dxcjnfAGKpql_IdCuFWzDz1SSWKoNt8sFg-mw6kLdc","key":"👍️"}},"time":"2026-03-06T19:23:11.938567218Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:102147257532455@lid:3AAA252D9750465846C9","target_part_id":"","reaction_sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"reaction_ts":"2025-12-07T13:25:01.341Z","event_id":"$zT5R01Mpf946Zke_r5uWl91ZsZ-B1XpJO0dm_SytI3s","time":"2026-03-06T19:23:11.938706972Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A669F8C07CC0A62217D","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A669F8C07CC0A62217D","req_id":4854,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824991815433453_60?ts=1772824990000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":158.380193,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"m.new_content":{"body":"","filename":"sticker.webp","info":{"h":190,"mimetype":"image/webp","size":405944,"w":190},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/UmQxkuUnmtYDOjUBidhDZMeu"},"m.relates_to":{"event_id":"$Hb3j3cofyyTPr2eyt6v-z_W5R8AT0fv3tp6VaD-0N-s","rel_type":"m.replace"},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/UmQxkuUnmtYDOjUBidhDZMeu"},"time":"2026-03-06T19:23:11.974108799Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A669F8C07CC0A62217D","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A669F8C07CC0A62217D","event_id":"$_LMYNDLXd7YaFIkfsDtOf1HUEIndxEst2NSzQPko4JE","part_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A669F8C07CC0A62217D","time":"2026-03-06T19:23:11.974288992Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A007C5046203D3CC77A","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A007C5046203D3CC77A","time":"2026-03-06T19:23:11.975016538Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"2002","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.975508646Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2002","time":"2026-03-06T19:23:11.97561781Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4852,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915759477451%3Amatrix.theocloud.dev","duration":184.989375,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<93612 bytes>","time":"2026-03-06T19:23:11.981525692Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4860,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915759477451:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915759477451%3Amatrix.theocloud.dev","duration":12.013837,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:11.99389307Z","message":"Request completed"} +{"level":"debug","transaction_id":"2003","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:11.995872468Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2003","time":"2026-03-06T19:23:11.996021791Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4861,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/NTWMpJcemTPsoVXHEFwSBuDr?user_id=%40whatsapp_4915759477451%3Amatrix.theocloud.dev","duration":4.808636,"status_code":200,"response_length":93612,"response_mime":"image/jpeg","time":"2026-03-06T19:23:11.9988196Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4862,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915759477451:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915759477451%3Amatrix.theocloud.dev","duration":7.663715,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NTWMpJcemTPsoVXHEFwSBuDr"},"time":"2026-03-06T19:23:12.006792367Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917663325906@s.whatsapp.net","alternate_jid":"135437549052023@lid","time":"2026-03-06T19:23:12.007415779Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4863,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491796839444%3Amatrix.theocloud.dev","duration":7.429744,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491796839444","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:12.015376323Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4864,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491796839444:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491796839444%3Amatrix.theocloud.dev","duration":5.814294,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:12.021493593Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824991939204528_1?ts=1765106573991&user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":116.149963,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$4dxcjnfAGKpql_IdCuFWzDz1SSWKoNt8sFg-mw6kLdc","key":"❤️"}},"time":"2026-03-06T19:23:12.055494734Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:102147257532455@lid:3AAA252D9750465846C9","target_part_id":"","reaction_sender_id":{"user_id":"lid-16114767646828","sender_login":"4915901353554"},"reaction_ts":"2025-12-07T11:22:53.991Z","event_id":"$3-tw5OjuTop4224HllwtGqivEHQdCjS2LAEYEzCo9WY","time":"2026-03-06T19:23:12.055676813Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:12.066785565Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4868,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-167500134244415:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-167500134244415%3Amatrix.theocloud.dev","duration":24.653531,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:12.091749334Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:12.092799622Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"2004","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.096372469Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2004","time":"2026-03-06T19:23:12.096483379Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4865,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491796839444:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491796839444%3Amatrix.theocloud.dev","duration":76.331594,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mahmoud (WA)"},"time":"2026-03-06T19:23:12.097997698Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:12.098639408Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4869,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-198268692730012%3Amatrix.theocloud.dev","duration":15.030252,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-198268692730012","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:12.108128659Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4858,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917670764502%3Amatrix.theocloud.dev","duration":206.241381,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35744 bytes>","time":"2026-03-06T19:23:12.124113305Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4870,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198268692730012:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198268692730012%3Amatrix.theocloud.dev","duration":18.364379,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:12.126926619Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4871,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670764502:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917670764502%3Amatrix.theocloud.dev","duration":8.260587,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:12.132745033Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A007C5046203D3CC77A","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A007C5046203D3CC77A","req_id":4867,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":78.252326,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2426588 bytes>","time":"2026-03-06T19:23:12.137921039Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4873,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/vgqFinUJAUUfwVIFwLQwBaoG?user_id=%40whatsapp_4917670764502%3Amatrix.theocloud.dev","duration":8.964806,"status_code":200,"response_length":35744,"response_mime":"image/jpeg","time":"2026-03-06T19:23:12.141838209Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4875,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917670764502:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917670764502%3Amatrix.theocloud.dev","duration":10.220779,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vgqFinUJAUUfwVIFwLQwBaoG"},"time":"2026-03-06T19:23:12.152286533Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4872,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198268692730012:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198268692730012%3Amatrix.theocloud.dev","duration":30.851886,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Charles Grütte (WA)"},"time":"2026-03-06T19:23:12.157925663Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:12.158662568Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4866,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824992056225423_7?ts=1765105134558&user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":144.270252,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$4dxcjnfAGKpql_IdCuFWzDz1SSWKoNt8sFg-mw6kLdc","key":"❤️"}},"time":"2026-03-06T19:23:12.200627188Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:102147257532455@lid:3AAA252D9750465846C9","target_part_id":"","reaction_sender_id":{"user_id":"lid-127753970032737","sender_login":"491753774472"},"reaction_ts":"2025-12-07T10:58:54.558Z","event_id":"$LxHAxihi55rnvS89o17xRQFmwCE91MwaUuQybVekNBM","time":"2026-03-06T19:23:12.200753183Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2005","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.234714095Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2005","time":"2026-03-06T19:23:12.234828497Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A007C5046203D3CC77A","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A007C5046203D3CC77A","req_id":4874,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824992138395338_61?ts=1772824990000&user_id=%40whatsapp_491783743461%3Amatrix.theocloud.dev","duration":143.77968,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":15000,"h":832,"mimetype":"video/mp4","size":2426588,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":15000,"h":832,"mimetype":"video/mp4","size":2426588,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/gmegdxgAGtdeKtOfEShZWcyA"},"m.relates_to":{"event_id":"$FNAIcULJxU8Eq5fbV__7FKOZ-2GvdjYaWGo14MXqWyA","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/gmegdxgAGtdeKtOfEShZWcyA"},"time":"2026-03-06T19:23:12.282472126Z","message":"Request completed"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A007C5046203D3CC77A","sender_id":"","chat_id":"491783743461@s.whatsapp.net","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"491783743461"},"remote_target_message_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A007C5046203D3CC77A","event_id":"$UhHZ46bWJGqeu9juoAguVCZ8mcUKX4dEa-FKdUXtqyQ","part_id":"491783743461@s.whatsapp.net:491783743461@s.whatsapp.net:3A007C5046203D3CC77A","time":"2026-03-06T19:23:12.282650782Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2006","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.301181177Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2006","time":"2026-03-06T19:23:12.301298721Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:12.308292301Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4878,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198268692730012:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-198268692730012%3Amatrix.theocloud.dev","duration":6.880156,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:12.315490378Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:12.316728052Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4879,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-181380881375395%3Amatrix.theocloud.dev","duration":6.022214,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-181380881375395","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:12.3230098Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4880,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-181380881375395:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-181380881375395%3Amatrix.theocloud.dev","duration":13.344192,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:12.336680713Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4876,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-67585655734448:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":199.11098,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Kadl (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:12.352440537Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4877,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824992201196541_1?ts=1765111966682&user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":155.479716,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$4dxcjnfAGKpql_IdCuFWzDz1SSWKoNt8sFg-mw6kLdc","key":"❤️"}},"time":"2026-03-06T19:23:12.356770754Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:102147257532455@lid:3AAA252D9750465846C9","target_part_id":"","reaction_sender_id":{"user_id":"lid-220327544094730","sender_login":"4915751114529"},"reaction_ts":"2025-12-07T12:52:46.682Z","event_id":"$SjnxJgaJGHxv65v9XQhN10p2f5CBBBHEQWIc9Q5SnZs","time":"2026-03-06T19:23:12.356884387Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:12.367565146Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4884,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491796839444:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491796839444%3Amatrix.theocloud.dev","duration":9.554554,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:12.37748679Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:12.378876091Z","message":""} +{"level":"debug","transaction_id":"2007","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.381445446Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2007","time":"2026-03-06T19:23:12.38153247Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2008","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.400186555Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2008","time":"2026-03-06T19:23:12.400510134Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4881,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-181380881375395:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-181380881375395%3Amatrix.theocloud.dev","duration":64.793942,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+33783410767 (WA)"},"time":"2026-03-06T19:23:12.401643882Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:12.402400273Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4883,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824992357637286_13?ts=1765105126912&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":92.842572,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$4dxcjnfAGKpql_IdCuFWzDz1SSWKoNt8sFg-mw6kLdc","key":"❤️"}},"time":"2026-03-06T19:23:12.450697765Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:102147257532455@lid:3AAA252D9750465846C9","target_part_id":"","reaction_sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"reaction_ts":"2025-12-07T10:58:46.912Z","event_id":"$Nd8yqBU-9IH5tmZkAt82svkAatFViVD4HjemeDaYhtw","time":"2026-03-06T19:23:12.450841431Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2009","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.480970311Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2009","time":"2026-03-06T19:23:12.481069417Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4882,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-67585655734448:matrix.theocloud.dev?user_id=%40whatsapp_lid-67585655734448%3Amatrix.theocloud.dev","duration":158.431806,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Kadl (WA)","membership":"join"},"time":"2026-03-06T19:23:12.51141837Z","message":"Request completed"} +{"level":"debug","transaction_id":"2010","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.53293375Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2010","time":"2026-03-06T19:23:12.533241056Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:12.561831172Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4885,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824992451433413_2?ts=1765113946000&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":132.989687,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Na Hauptsache SAM geht wieder🙈","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:12.584569839Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:116685805768767@lid:3A1FCEEA3FAD20618A5C","sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"message_ts":"2025-12-07T13:25:46Z","event_id":"$PPeAFVNFGpw4uMqSu5b48b3atjZPBd6PySgzb27pMEM","part_id":"","time":"2026-03-06T19:23:12.584703727Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2011","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.616540737Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2011","time":"2026-03-06T19:23:12.616619869Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2012","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:12.673810229Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2012","time":"2026-03-06T19:23:12.673875671Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25529302425761:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":190.207636,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OUIiCSWWOIfTUYLvgoSIqMqJ","com.beeper.exclude_from_timeline":true,"displayname":"Michael Spaller (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:12.702449514Z","message":"Request completed"} +{"level":"debug","transaction_id":"2013","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.729362999Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2013","time":"2026-03-06T19:23:12.729696775Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4887,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824992585540506_1?ts=1765113970094&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":158.812796,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$PPeAFVNFGpw4uMqSu5b48b3atjZPBd6PySgzb27pMEM","key":"😂"}},"time":"2026-03-06T19:23:12.744470636Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:116685805768767@lid:3A1FCEEA3FAD20618A5C","target_part_id":"","reaction_sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"reaction_ts":"2025-12-07T13:26:10.094Z","event_id":"$SS-xZUhOPR27V2kYsymGzJKal90nQeAyRz_TfmQFIdQ","time":"2026-03-06T19:23:12.744593698Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2014","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.78032539Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2014","time":"2026-03-06T19:23:12.780437627Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4888,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-181380881375395%3Amatrix.theocloud.dev","duration":171.7797,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35232 bytes>","time":"2026-03-06T19:23:12.864561865Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4891,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-181380881375395:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-181380881375395%3Amatrix.theocloud.dev","duration":3.354033,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:12.868257985Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4892,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/IQvEzDbWDsPwtPJbAgULKVeP?user_id=%40whatsapp_lid-181380881375395%3Amatrix.theocloud.dev","duration":3.610912,"status_code":200,"response_length":35232,"response_mime":"image/jpeg","time":"2026-03-06T19:23:12.872032816Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4893,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-181380881375395:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-181380881375395%3Amatrix.theocloud.dev","duration":5.622926,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IQvEzDbWDsPwtPJbAgULKVeP"},"time":"2026-03-06T19:23:12.877857726Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:12.878667896Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4894,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-198964544585847%3Amatrix.theocloud.dev","duration":5.577109,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-198964544585847","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:12.884466335Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4895,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198964544585847:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198964544585847%3Amatrix.theocloud.dev","duration":7.596807,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:12.892391819Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:12.895539817Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491796839444@s.whatsapp.net","alternate_jid":"129064018960516@lid","time":"2026-03-06T19:23:12.895621393Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"67585655734448@lid","alternate_jid":"491783561145@s.whatsapp.net","time":"2026-03-06T19:23:12.895705413Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4890,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824992745112626_1?ts=1765196194000&user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":178.593855,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ey ist BS Klausur open book?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:12.92384847Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:273069826400467@lid:AC2129F916D9D6A9D38C2A09ECA2E21D","sender_id":{"user_id":"lid-273069826400467","sender_login":"48723807797"},"message_ts":"2025-12-08T12:16:34Z","event_id":"$wjvOCq_Yx9q8ErekaOJhuoUAyBB4T9ISZTJV7PCFOMs","part_id":"","time":"2026-03-06T19:23:12.923979144Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4897,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915206843979%3Amatrix.theocloud.dev","duration":29.43807,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915206843979","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:12.925766756Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4899,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915206843979:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915206843979%3Amatrix.theocloud.dev","duration":23.119237,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:12.949376215Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4889,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25529302425761:matrix.theocloud.dev?user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":247.613179,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OUIiCSWWOIfTUYLvgoSIqMqJ","com.beeper.exclude_from_timeline":true,"displayname":"Michael Spaller (WA)","membership":"join"},"time":"2026-03-06T19:23:12.950749383Z","message":"Request completed"} +{"level":"debug","transaction_id":"2015","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:12.966664885Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2015","time":"2026-03-06T19:23:12.966746949Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4896,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198964544585847:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198964544585847%3Amatrix.theocloud.dev","duration":102.157706,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917632073067 (WA)"},"time":"2026-03-06T19:23:12.994778258Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:12.99568034Z","message":""} +{"level":"debug","transaction_id":"2016","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.008964537Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2016","time":"2026-03-06T19:23:13.009263183Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4900,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915206843979:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915206843979%3Amatrix.theocloud.dev","duration":77.052716,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915206843979 (WA)"},"time":"2026-03-06T19:23:13.026630006Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:13.02737641Z","message":""} +{"level":"debug","transaction_id":"2017","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:13.033779334Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2017","time":"2026-03-06T19:23:13.033888706Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4898,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824992924802095_1?ts=1765196211000&user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":159.959744,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Man darf alle folien nutzen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:13.08489887Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:173804609343590@lid:3A09536364335B443047","sender_id":{"user_id":"lid-173804609343590","sender_login":"4917655578514"},"message_ts":"2025-12-08T12:16:51Z","event_id":"$Qi1qmD_aBQPUqzbexqQaoy6r_fQE8-vKbskAJlPcxrk","part_id":"","time":"2026-03-06T19:23:13.08502249Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2018","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.115048563Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2018","time":"2026-03-06T19:23:13.115166666Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:13.161102234Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4903,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198964544585847:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-198964544585847%3Amatrix.theocloud.dev","duration":8.843421,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:13.170366384Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:13.171464373Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4901,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-165566878843022:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":232.941078,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Anna vdM (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:13.184519767Z","message":"Request completed"} +{"level":"debug","transaction_id":"2019","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:13.186473044Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2019","time":"2026-03-06T19:23:13.186551267Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4904,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-138770527572092%3Amatrix.theocloud.dev","duration":21.500434,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-138770527572092","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:13.193257865Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:13.203823803Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4906,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138770527572092:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-138770527572092%3Amatrix.theocloud.dev","duration":15.76618,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:13.209414183Z","message":"Request completed"} +{"level":"debug","transaction_id":"2020","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.218892259Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2020","time":"2026-03-06T19:23:13.219208575Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4907,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138770527572092:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-138770527572092%3Amatrix.theocloud.dev","duration":40.174425,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491749058614 (WA)"},"time":"2026-03-06T19:23:13.249797296Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:13.250514086Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824993085798717_2?ts=1765196214000&user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":180.301077,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"also mitnehmen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:13.266229351Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:173804609343590@lid:3A298E408A2CE790E3A8","sender_id":{"user_id":"lid-173804609343590","sender_login":"4917655578514"},"message_ts":"2025-12-08T12:16:54Z","event_id":"$GV9Gqyldz_xyIb4EVhXxxtpSppyb5KPkbQXLZsGAUNA","part_id":"","time":"2026-03-06T19:23:13.266357651Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2021","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.298895948Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2021","time":"2026-03-06T19:23:13.29902781Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4905,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-165566878843022:matrix.theocloud.dev?user_id=%40whatsapp_lid-165566878843022%3Amatrix.theocloud.dev","duration":185.35451,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Anna vdM (WA)","membership":"join"},"time":"2026-03-06T19:23:13.37058974Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4908,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915206843979%3Amatrix.theocloud.dev","duration":157.218367,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61714 bytes>","time":"2026-03-06T19:23:13.378005586Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4911,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915206843979:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915206843979%3Amatrix.theocloud.dev","duration":23.373183,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:13.401765555Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4909,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824993267078353_3?ts=1765196221000&user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":140.124627,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"aber kein laptop kein internet","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:13.407358938Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:173804609343590@lid:3A202635D7ADED0B4733","sender_id":{"user_id":"lid-173804609343590","sender_login":"4917655578514"},"message_ts":"2025-12-08T12:17:01Z","event_id":"$t97DupY1D8jH5hB5bz0cKAG0pIrHRecDzRTJ9Aa4wT4","part_id":"","time":"2026-03-06T19:23:13.407531588Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4912,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/jPgppTFAjKSzbKMvArshdIYB?user_id=%40whatsapp_4915206843979%3Amatrix.theocloud.dev","duration":6.357456,"status_code":200,"response_length":61714,"response_mime":"image/jpeg","time":"2026-03-06T19:23:13.40825655Z","message":"Request completed"} +{"level":"debug","transaction_id":"2022","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.411727917Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2022","time":"2026-03-06T19:23:13.411834357Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4913,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915206843979:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915206843979%3Amatrix.theocloud.dev","duration":10.535348,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jPgppTFAjKSzbKMvArshdIYB"},"time":"2026-03-06T19:23:13.419124766Z","message":"Request completed"} +{"level":"debug","transaction_id":"2023","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.433070089Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2023","time":"2026-03-06T19:23:13.43338403Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4915,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-177846240706669%3Amatrix.theocloud.dev","duration":15.105193,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-177846240706669","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:13.435388501Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4916,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177846240706669:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-177846240706669%3Amatrix.theocloud.dev","duration":4.088423,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:13.439867552Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4917,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177846240706669:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-177846240706669%3Amatrix.theocloud.dev","duration":25.347552,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915206843979 (WA)"},"time":"2026-03-06T19:23:13.465415761Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:13.466258686Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4914,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824993408579081_2?ts=1765196236000&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":80.090083,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Und notizen auf den Folien?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:13.488826519Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:102147257532455@lid:3EB0A75433DD1EF4D23A8C","sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"message_ts":"2025-12-08T12:17:16Z","event_id":"$1a0K3BkpJ8Ao6RxDtBCEhUnoApeVeocDLGejJ8XF8hE","part_id":"","time":"2026-03-06T19:23:13.488972349Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2024","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.50717239Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2024","time":"2026-03-06T19:23:13.507278271Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4910,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-213099231596676:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":177.94509,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"René (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:13.549662014Z","message":"Request completed"} +{"level":"debug","transaction_id":"2025","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.573631649Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2025","time":"2026-03-06T19:23:13.573891183Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4918,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824993489777630_4?ts=1765196255000&user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":125.710873,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"er meinte mir es ist erlaubt die folien zu markieren und notizen so weit ich weiss auch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:13.615633565Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:173804609343590@lid:3A04210F4D1E0F5E6E57","sender_id":{"user_id":"lid-173804609343590","sender_login":"4917655578514"},"message_ts":"2025-12-08T12:17:35Z","event_id":"$-FqGmaoc_ZaEt5XzAp0GklZsaqd2o1nu3WN5t0SRz78","part_id":"","time":"2026-03-06T19:23:13.6157773Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2026","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.641191272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2026","time":"2026-03-06T19:23:13.641273686Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4919,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-213099231596676:matrix.theocloud.dev?user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":136.984312,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"René (WA)","membership":"join"},"time":"2026-03-06T19:23:13.687403416Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:13.688381207Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4921,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_380668433334%3Amatrix.theocloud.dev","duration":15.618393,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_380668433334","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:13.704317801Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4922,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380668433334:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380668433334%3Amatrix.theocloud.dev","duration":7.567473,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:13.712380176Z","message":"Request completed"} +{"level":"debug","transaction_id":"2027","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.720861953Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2027","time":"2026-03-06T19:23:13.721114293Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4920,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824993616694817_3?ts=1765196268000&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":117.878627,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ok danke","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:13.734731288Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:102147257532455@lid:3EB0E855FD94A1582CC3DE","sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"message_ts":"2025-12-08T12:17:48Z","event_id":"$6V00pIJmthofWZyk805W6SogCZjLVWzlw2N8IQM2R4E","part_id":"","time":"2026-03-06T19:23:13.734891227Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2028","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.756160623Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2028","time":"2026-03-06T19:23:13.756224738Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4923,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380668433334:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380668433334%3Amatrix.theocloud.dev","duration":50.102773,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Daniil Bykov (WA)"},"time":"2026-03-06T19:23:13.762662024Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:13.763456549Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4924,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824993735768445_5?ts=1765196274876&user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":66.041812,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$6V00pIJmthofWZyk805W6SogCZjLVWzlw2N8IQM2R4E","key":"👍️"}},"time":"2026-03-06T19:23:13.801978647Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:102147257532455@lid:3EB0E855FD94A1582CC3DE","target_part_id":"","reaction_sender_id":{"user_id":"lid-173804609343590","sender_login":"4917655578514"},"reaction_ts":"2025-12-08T12:17:54.876Z","event_id":"$2E56ZxjkIYh9V3PrTaVaKyJkl72ihvUwwW4QKHWnR5k","time":"2026-03-06T19:23:13.80209221Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:13.809857267Z","message":""} +{"level":"debug","transaction_id":"2029","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.82086342Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2029","time":"2026-03-06T19:23:13.82094311Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:13.844374123Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4925,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824993802627620_3?ts=1765815889000&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":59.767468,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hello hello, seit heute soll es ja möglich sein die Wahlpflichtfächer für Semester 6 in SAM zu priorisieren. Also bei mir geht das leider nicht, funktioniert das bei jemandem von euch?\nIch wünsche euch viel Erfolg bei den Klausuren!✊","format":"org.matrix.custom.html","formatted_body":"Hello hello, seit heute soll es ja möglich sein die Wahlpflichtfächer für Semester 6 in SAM zu priorisieren. Also bei mir geht das leider nicht, funktioniert das bei jemandem von euch?\u003cbr\u003eIch wünsche euch viel Erfolg bei den Klausuren!✊","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:13.862516334Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:116685805768767@lid:3BBF34F2E1D4DD6356E6","sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"message_ts":"2025-12-15T16:24:49Z","event_id":"$dkQ3ExhFD7pRFsPXXEV_vBLuCEYirhL7CvjXs92Jxs4","part_id":"","time":"2026-03-06T19:23:13.86264219Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2030","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.880465991Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2030","time":"2026-03-06T19:23:13.88055057Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4927,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824993863286205_1?ts=1765816091610&user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":63.936209,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$dkQ3ExhFD7pRFsPXXEV_vBLuCEYirhL7CvjXs92Jxs4","key":"👎️"}},"time":"2026-03-06T19:23:13.927377674Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:116685805768767@lid:3BBF34F2E1D4DD6356E6","target_part_id":"","reaction_sender_id":{"user_id":"lid-33994833981513","sender_login":"4915119111000"},"reaction_ts":"2025-12-15T16:28:11.61Z","event_id":"$XU8XlpO5VlHtFYd6scJIsj6jN_X1LdWfaMrhHAFw9V4","time":"2026-03-06T19:23:13.927507999Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:13.930580986Z","message":""} +{"level":"debug","transaction_id":"2031","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:13.952472048Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2031","time":"2026-03-06T19:23:13.952563541Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4926,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-177846240706669%3Amatrix.theocloud.dev","duration":123.724909,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61714 bytes>","time":"2026-03-06T19:23:13.98041361Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4931,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177846240706669:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-177846240706669%3Amatrix.theocloud.dev","duration":4.412142,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:13.985135572Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4932,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/pPtMaYNoMUyFhpjrPJETPjXl?user_id=%40whatsapp_lid-177846240706669%3Amatrix.theocloud.dev","duration":8.494209,"status_code":200,"response_length":61714,"response_mime":"image/jpeg","time":"2026-03-06T19:23:13.99373203Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4933,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-177846240706669:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-177846240706669%3Amatrix.theocloud.dev","duration":10.628727,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pPtMaYNoMUyFhpjrPJETPjXl"},"time":"2026-03-06T19:23:14.004622874Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915206843979@s.whatsapp.net","alternate_jid":"177846240706669@lid","time":"2026-03-06T19:23:14.005088372Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"116685805768767@lid","alternate_jid":"491703010843@s.whatsapp.net","time":"2026-03-06T19:23:14.005223238Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"236846508454136@lid","alternate_jid":"4915141630205@s.whatsapp.net","time":"2026-03-06T19:23:14.00528861Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917634347723@s.whatsapp.net","time":"2026-03-06T19:23:14.005557014Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4928,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824993927998431_6?ts=1765815981245&user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":89.215875,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$dkQ3ExhFD7pRFsPXXEV_vBLuCEYirhL7CvjXs92Jxs4","key":"👎️"}},"time":"2026-03-06T19:23:14.017357972Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:116685805768767@lid:3BBF34F2E1D4DD6356E6","target_part_id":"","reaction_sender_id":{"user_id":"lid-173804609343590","sender_login":"4917655578514"},"reaction_ts":"2025-12-15T16:26:21.245Z","event_id":"$AQrc9ciOpU7PSRLJmylK_5tmeooQSLqIb7mK45u-xLE","time":"2026-03-06T19:23:14.01754906Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4934,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917634347723%3Amatrix.theocloud.dev","duration":14.776167,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917634347723","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.020550389Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4936,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634347723:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634347723%3Amatrix.theocloud.dev","duration":21.539197,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:14.042450391Z","message":"Request completed"} +{"level":"debug","transaction_id":"2032","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.04687245Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2032","time":"2026-03-06T19:23:14.046963524Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4937,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634347723:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634347723%3Amatrix.theocloud.dev","duration":20.619375,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917634347723 (WA)"},"time":"2026-03-06T19:23:14.063241507Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:14.063955504Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4929,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_380668433334%3Amatrix.theocloud.dev","duration":126.445403,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<42258 bytes>","time":"2026-03-06T19:23:14.066367505Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4930,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-138770527572092%3Amatrix.theocloud.dev","duration":113.364237,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<96181 bytes>","time":"2026-03-06T19:23:14.068230546Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4938,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380668433334:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380668433334%3Amatrix.theocloud.dev","duration":4.179357,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:14.070944125Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4939,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138770527572092:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-138770527572092%3Amatrix.theocloud.dev","duration":4.162316,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:14.0727346Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4940,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/EwqXeqOylRmbRTtfDExbWjKl?user_id=%40whatsapp_380668433334%3Amatrix.theocloud.dev","duration":4.599947,"status_code":200,"response_length":42258,"response_mime":"image/jpeg","time":"2026-03-06T19:23:14.07569996Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4941,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/SMHnOtFWDxFvinmocLCUAdhe?user_id=%40whatsapp_lid-138770527572092%3Amatrix.theocloud.dev","duration":3.084162,"status_code":200,"response_length":96181,"response_mime":"image/jpeg","time":"2026-03-06T19:23:14.075949017Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4943,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138770527572092:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-138770527572092%3Amatrix.theocloud.dev","duration":10.519982,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SMHnOtFWDxFvinmocLCUAdhe"},"time":"2026-03-06T19:23:14.086723784Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4942,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380668433334:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380668433334%3Amatrix.theocloud.dev","duration":10.926184,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EwqXeqOylRmbRTtfDExbWjKl"},"time":"2026-03-06T19:23:14.086839652Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:14.089789159Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:14.091628383Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4935,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824994018201107_2?ts=1765817018076&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":87.007604,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$dkQ3ExhFD7pRFsPXXEV_vBLuCEYirhL7CvjXs92Jxs4","key":"👎️"}},"time":"2026-03-06T19:23:14.1053199Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:116685805768767@lid:3BBF34F2E1D4DD6356E6","target_part_id":"","reaction_sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"reaction_ts":"2025-12-15T16:43:38.076Z","event_id":"$3GveAiGwa-HC1qDdcG7dlVLvnnSxEmP-S49WApDojbI","time":"2026-03-06T19:23:14.105447711Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4944,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-30378387624044%3Amatrix.theocloud.dev","duration":17.741317,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-30378387624044","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.107791546Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4945,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917684328837%3Amatrix.theocloud.dev","duration":20.330997,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917684328837","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.112207878Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4947,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-30378387624044:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-30378387624044%3Amatrix.theocloud.dev","duration":16.942881,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:14.125005135Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4948,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684328837:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917684328837%3Amatrix.theocloud.dev","duration":14.235657,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:14.126811045Z","message":"Request completed"} +{"level":"debug","transaction_id":"2033","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.131458974Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2033","time":"2026-03-06T19:23:14.131557801Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4949,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-30378387624044:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-30378387624044%3Amatrix.theocloud.dev","duration":25.817451,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491633456827 (WA)"},"time":"2026-03-06T19:23:14.150992233Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4950,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684328837:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917684328837%3Amatrix.theocloud.dev","duration":24.576425,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vincent (WA)"},"time":"2026-03-06T19:23:14.151593435Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:14.151753234Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:14.152158737Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4946,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824994105942753_1?ts=1765871693000&user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":76.160342,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gestern wurde es noch nicht angezeigt, aber seit heute morgen gibt es unter \"SAM \u003e Mein Studium \u003e Kursbelegung\" den Button \"Priorisierung\" (unten beim 6. Semester) - zumindest bei mir 🤷‍♂","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:14.182296278Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:218845914619936@lid:AC244DB2C3AE8D43EA5F103A59D427F0","sender_id":{"user_id":"lid-218845914619936","sender_login":"4917695111675"},"message_ts":"2025-12-16T07:54:53Z","event_id":"$n-exLrxUVwobvIuVcnVn9B66Og6pQYQdN9FJg7vrGuE","part_id":"","time":"2026-03-06T19:23:14.182450769Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2034","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.204511617Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2034","time":"2026-03-06T19:23:14.204598012Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:14.226805249Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4952,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634347723:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917634347723%3Amatrix.theocloud.dev","duration":9.523334,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:14.23656465Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"77859284607025@lid","alternate_jid":"491708034509@s.whatsapp.net","time":"2026-03-06T19:23:14.237056479Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4953,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917627697253%3Amatrix.theocloud.dev","duration":4.02312,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917627697253","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.241625626Z","message":"Request completed"} +{"level":"debug","transaction_id":"2035","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:14.246446763Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2035","time":"2026-03-06T19:23:14.246579743Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4954,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627697253:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917627697253%3Amatrix.theocloud.dev","duration":6.290758,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:14.248383557Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4955,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917627697253:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917627697253%3Amatrix.theocloud.dev","duration":15.362701,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Shirin (WA)"},"time":"2026-03-06T19:23:14.263914788Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"12730350215211@lid","alternate_jid":"4917627697253@s.whatsapp.net","time":"2026-03-06T19:23:14.264531983Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4956,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-138440217739301%3Amatrix.theocloud.dev","duration":9.105747,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-138440217739301","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.2742888Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4951,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824994183162601_4?ts=1765874425000&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":104.97982,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jup jetzt geht es : )","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:14.288302778Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:116685805768767@lid:3B01C0BAB4F9A37465A0","sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"message_ts":"2025-12-16T08:40:25Z","event_id":"$2X_2KpuNsZHK4RUenqN4wjFqg_Hx5jBxQI0Pa9kASgk","part_id":"","time":"2026-03-06T19:23:14.288511117Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4957,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138440217739301:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-138440217739301%3Amatrix.theocloud.dev","duration":15.270789,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:14.289863542Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:14.301097521Z","message":""} +{"level":"debug","transaction_id":"2036","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.306300696Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2036","time":"2026-03-06T19:23:14.306432837Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:14.308563094Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4960,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684328837:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917684328837%3Amatrix.theocloud.dev","duration":7.299558,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:14.308785472Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:14.309663877Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4961,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917632063161%3Amatrix.theocloud.dev","duration":4.627256,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917632063161","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.314567149Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4962,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917632063161:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917632063161%3Amatrix.theocloud.dev","duration":2.908509,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:14.317850082Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4959,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138440217739301:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-138440217739301%3Amatrix.theocloud.dev","duration":30.318431,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vicente (WA)"},"time":"2026-03-06T19:23:14.320323055Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:14.320904631Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4964,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917632063161:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917632063161%3Amatrix.theocloud.dev","duration":18.261083,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917632063161 (WA)"},"time":"2026-03-06T19:23:14.33629038Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:14.337199027Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4958,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824994289436317_3?ts=1765976276000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":68.421476,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Die Konferenz hat noch nicht gestartet richtig?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:14.358071091Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:AC6997A89458EFD40FC5588E855975B9","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2025-12-17T12:57:56Z","event_id":"$az_IGk419ec5G0HRkrW9kTfMm3boZXfioVkSXStKxus","part_id":"","time":"2026-03-06T19:23:14.35820009Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2037","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.382550784Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2037","time":"2026-03-06T19:23:14.38265911Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2038","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:14.422666541Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2038","time":"2026-03-06T19:23:14.422753145Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4965,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824994358902213_2?ts=1765976782513&user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":100.586675,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$az_IGk419ec5G0HRkrW9kTfMm3boZXfioVkSXStKxus","key":"➕️"}},"time":"2026-03-06T19:23:14.45961223Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:198041059483854@lid:AC6997A89458EFD40FC5588E855975B9","target_part_id":"","reaction_sender_id":{"user_id":"lid-16114767646828","sender_login":"4915901353554"},"reaction_ts":"2025-12-17T13:06:22.513Z","event_id":"$H19kWzxa5H5aZKwj-1i9zPpq0ry3O_ri6AI7WbDzI-o","time":"2026-03-06T19:23:14.459774892Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4963,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-30378387624044%3Amatrix.theocloud.dev","duration":147.414058,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<36564 bytes>","time":"2026-03-06T19:23:14.464074868Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4967,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-30378387624044:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-30378387624044%3Amatrix.theocloud.dev","duration":15.600514,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:14.480032764Z","message":"Request completed"} +{"level":"debug","transaction_id":"2039","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.483734471Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2039","time":"2026-03-06T19:23:14.483851945Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:14.484771348Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4968,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/hNHKWbTItPRFRlFNaBHkoDqQ?user_id=%40whatsapp_lid-30378387624044%3Amatrix.theocloud.dev","duration":6.354174,"status_code":200,"response_length":36564,"response_mime":"image/jpeg","time":"2026-03-06T19:23:14.486508114Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4969,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-138440217739301:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-138440217739301%3Amatrix.theocloud.dev","duration":5.808567,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:14.490844268Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4970,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-30378387624044:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-30378387624044%3Amatrix.theocloud.dev","duration":7.574667,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hNHKWbTItPRFRlFNaBHkoDqQ"},"time":"2026-03-06T19:23:14.494351953Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:14.495423612Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4971,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915773851281%3Amatrix.theocloud.dev","duration":5.191092,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915773851281","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.497190061Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4972,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-179671467585603%3Amatrix.theocloud.dev","duration":5.844117,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-179671467585603","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.50157657Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4973,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915773851281:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915773851281%3Amatrix.theocloud.dev","duration":4.622367,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:14.50213901Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:14.503624134Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4974,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-179671467585603:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-179671467585603%3Amatrix.theocloud.dev","duration":4.582208,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:14.506591799Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4976,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917632063161:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917632063161%3Amatrix.theocloud.dev","duration":5.800745,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:14.509767036Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4975,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915773851281:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915773851281%3Amatrix.theocloud.dev","duration":20.507418,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Vicente (WA)"},"time":"2026-03-06T19:23:14.522829763Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:14.52367227Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4977,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-179671467585603:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-179671467585603%3Amatrix.theocloud.dev","duration":17.826175,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917631572023 (WA)"},"time":"2026-03-06T19:23:14.524650759Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:14.525436065Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4966,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824994460353745_8?ts=1765976288453&user_id=%40whatsapp_lid-127753970032737%3Amatrix.theocloud.dev","duration":96.310936,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$az_IGk419ec5G0HRkrW9kTfMm3boZXfioVkSXStKxus","key":"👎️"}},"time":"2026-03-06T19:23:14.556865476Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:198041059483854@lid:AC6997A89458EFD40FC5588E855975B9","target_part_id":"","reaction_sender_id":{"user_id":"lid-127753970032737","sender_login":"491753774472"},"reaction_ts":"2025-12-17T12:58:08.453Z","event_id":"$XLpzSyl8bRDNNB87bLwzdrzFvdIUmKlXDBTi_Zb2tUs","time":"2026-03-06T19:23:14.557012145Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:14.567307585Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4980,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915773851281:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915773851281%3Amatrix.theocloud.dev","duration":9.496026,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:14.577145069Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"138440217739301@lid","alternate_jid":"4915773851281@s.whatsapp.net","time":"2026-03-06T19:23:14.577765547Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"157088495980744@lid","alternate_jid":"491755792374@s.whatsapp.net","time":"2026-03-06T19:23:14.577894336Z","message":"Synced alternate ghost with info"} +{"level":"debug","transaction_id":"2040","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.581077674Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2040","time":"2026-03-06T19:23:14.581177059Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4981,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915735563523%3Amatrix.theocloud.dev","duration":7.320022,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915735563523","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.585843985Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4982,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735563523:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915735563523%3Amatrix.theocloud.dev","duration":21.89616,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:14.60806114Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4983,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735563523:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915735563523%3Amatrix.theocloud.dev","duration":20.516497,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Ahmad Bakdad (WA)"},"time":"2026-03-06T19:23:14.628766281Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"220538484043940@lid","alternate_jid":"4915735563523@s.whatsapp.net","time":"2026-03-06T19:23:14.629246447Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4984,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917651769219%3Amatrix.theocloud.dev","duration":10.811853,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917651769219","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.640742823Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4985,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917651769219:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917651769219%3Amatrix.theocloud.dev","duration":16.401813,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:14.665498742Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:14.674633544Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4979,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824994557563410_12?ts=1765976328000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":160.093841,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$az_IGk419ec5G0HRkrW9kTfMm3boZXfioVkSXStKxus","key":"➕️"}},"time":"2026-03-06T19:23:14.717793653Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:198041059483854@lid:AC6997A89458EFD40FC5588E855975B9","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2025-12-17T12:58:48Z","event_id":"$2QMgOovPHzWNFYzJae3cdZc3pZdl54h5lV0dftW95bQ","time":"2026-03-06T19:23:14.717928238Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4978,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-105029298036926:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":244.230582,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Paul (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:14.754867572Z","message":"Request completed"} +{"level":"debug","transaction_id":"2041","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.755803038Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2041","time":"2026-03-06T19:23:14.755906894Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4986,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917651769219:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917651769219%3Amatrix.theocloud.dev","duration":96.135841,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nora Ouwerkerk (WA)"},"time":"2026-03-06T19:23:14.761874212Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"84069857669232@lid","alternate_jid":"4917651769219@s.whatsapp.net","time":"2026-03-06T19:23:14.762478417Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4989,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915775817696%3Amatrix.theocloud.dev","duration":3.854522,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915775817696","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.767007614Z","message":"Request completed"} +{"level":"debug","transaction_id":"2042","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.769501749Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2042","time":"2026-03-06T19:23:14.769721682Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4990,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915775817696:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915775817696%3Amatrix.theocloud.dev","duration":4.415564,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:14.77176757Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4991,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915775817696:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915775817696%3Amatrix.theocloud.dev","duration":27.360475,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Claire✨ (WA)"},"time":"2026-03-06T19:23:14.799357336Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"138035987497154@lid","alternate_jid":"4915775817696@s.whatsapp.net","time":"2026-03-06T19:23:14.799846232Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"156500169334858@lid","time":"2026-03-06T19:23:14.800180985Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4992,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-156500169334858%3Amatrix.theocloud.dev","duration":12.09234,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-156500169334858","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:14.812558072Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4993,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-156500169334858:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-156500169334858%3Amatrix.theocloud.dev","duration":4.154075,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:14.817016589Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4987,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824994719535377_2?ts=1765976293000&user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":116.979339,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"jep, bei mir auch noch nicht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:14.836649303Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:33994833981513@lid:3EB03D6701751755135104","sender_id":{"user_id":"lid-33994833981513","sender_login":"4915119111000"},"message_ts":"2025-12-17T12:58:13Z","event_id":"$mh4Fp7BOACSGV5SZx7_CuxZ_h_HvbzIB6dOYusaBuog","part_id":"","time":"2026-03-06T19:23:14.836771457Z","message":"Sent message part to Matrix"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":3670,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s3083_990_8_392_444_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30025.684785,"status_code":200,"response_length":144,"response_mime":"application/json","time":"2026-03-06T19:23:14.857123615Z","message":"Request completed"} +{"level":"debug","transaction_id":"2043","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.865302557Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2043","time":"2026-03-06T19:23:14.865415422Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":4994,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-156500169334858:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-156500169334858%3Amatrix.theocloud.dev","duration":58.014987,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sandra (WA)"},"time":"2026-03-06T19:23:14.875155616Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:14.875780843Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4988,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-105029298036926:matrix.theocloud.dev?user_id=%40whatsapp_lid-105029298036926%3Amatrix.theocloud.dev","duration":150.630642,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Paul (WA)","membership":"join"},"time":"2026-03-06T19:23:14.906183575Z","message":"Request completed"} +{"level":"debug","transaction_id":"2044","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:14.908130496Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2044","time":"2026-03-06T19:23:14.908214097Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2045","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:14.929643222Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2045","time":"2026-03-06T19:23:14.930051101Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4995,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824994837545029_4?ts=1765976316217&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":138.418872,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$mh4Fp7BOACSGV5SZx7_CuxZ_h_HvbzIB6dOYusaBuog","key":"👍️"}},"time":"2026-03-06T19:23:14.976108334Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:33994833981513@lid:3EB03D6701751755135104","target_part_id":"","reaction_sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"reaction_ts":"2025-12-17T12:58:36.217Z","event_id":"$MChCWjN6QDXKQYgLPnoUI8U6FTZ7St33xJECR0ydGY4","time":"2026-03-06T19:23:14.976219243Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2046","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.001300767Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2046","time":"2026-03-06T19:23:15.001436191Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":4996,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-179671467585603%3Amatrix.theocloud.dev","duration":149.373621,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35470 bytes>","time":"2026-03-06T19:23:15.006574552Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5000,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-179671467585603:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-179671467585603%3Amatrix.theocloud.dev","duration":12.92912,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:15.019867689Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5001,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/oEdivUmQDuafkXXkgZRIgmdx?user_id=%40whatsapp_lid-179671467585603%3Amatrix.theocloud.dev","duration":13.392453,"status_code":200,"response_length":35470,"response_mime":"image/jpeg","time":"2026-03-06T19:23:15.033445572Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:15.036875034Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5003,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-156500169334858:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-156500169334858%3Amatrix.theocloud.dev","duration":7.228389,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:15.044455987Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"25696839700643@lid","alternate_jid":"4917610305000@s.whatsapp.net","time":"2026-03-06T19:23:15.044993632Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:15.045745413Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5002,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-179671467585603:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-179671467585603%3Amatrix.theocloud.dev","duration":13.19005,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oEdivUmQDuafkXXkgZRIgmdx"},"time":"2026-03-06T19:23:15.046892502Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:15.04796004Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5004,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-272618854867152%3Amatrix.theocloud.dev","duration":11.023195,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-272618854867152","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:15.059288725Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5005,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-272618854867152:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-272618854867152%3Amatrix.theocloud.dev","duration":3.047844,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:15.062711552Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":4998,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-87162133413943:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":192.345296,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"christian rzadeh (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:15.099492832Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5006,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-272618854867152:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-272618854867152%3Amatrix.theocloud.dev","duration":36.979144,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917657796759 (WA)"},"time":"2026-03-06T19:23:15.099934584Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:15.100548846Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":4999,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824994976697104_13?ts=1765976724000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":128.820457,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Geht es inzwischen bei jemandem? bzw. weiß wer warum nicht?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:15.10565487Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:251745280225436@lid:3EB0191A89614001EF10EA","sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"message_ts":"2025-12-17T13:05:24Z","event_id":"$iiPZ_TdKRkXz-V_1ub_ADJD6GeGl-w_QzIeY4iQmzww","part_id":"","time":"2026-03-06T19:23:15.10582326Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2047","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.124761184Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2047","time":"2026-03-06T19:23:15.124874817Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2048","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.147691916Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2048","time":"2026-03-06T19:23:15.148035191Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2049","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.174600512Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2049","time":"2026-03-06T19:23:15.174913405Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915903048642@s.whatsapp.net","portal_mxid":"!mMUaMjiwvONNjaXkHE:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$acPN401a_0FHIgLoSV8erMelCaVZZ9WAC1SOevA7Q0A","event_type":"m.room.member","event_id":"$acPN401a_0FHIgLoSV8erMelCaVZZ9WAC1SOevA7Q0A","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:15.175435964Z","message":"Sending implicit read receipt for event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:15.201862369Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5009,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491756680777:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491756680777%3Amatrix.theocloud.dev","duration":10.601069,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:15.212882841Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:15.214057377Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5008,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824995106768085_2?ts=1765976738000&user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":133.043676,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"nein es geht nicht los","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:15.23996234Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:220327544094730@lid:3B79BFFC769995002912","sender_id":{"user_id":"lid-220327544094730","sender_login":"4915751114529"},"message_ts":"2025-12-17T13:05:38Z","event_id":"$F2BIuQb4pNEYaKTZCJmyFBwH8JdrF0lJOYuobZiZyA4","part_id":"","time":"2026-03-06T19:23:15.240123816Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2050","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.258673347Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2050","time":"2026-03-06T19:23:15.25880458Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:15.264871982Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5011,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-272618854867152:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-272618854867152%3Amatrix.theocloud.dev","duration":13.478568,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:15.27870465Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:15.279892876Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5012,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-256676053647524%3Amatrix.theocloud.dev","duration":11.799771,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-256676053647524","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:15.291987031Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5013,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256676053647524:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-256676053647524%3Amatrix.theocloud.dev","duration":11.319047,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:15.303802447Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5007,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-87162133413943:matrix.theocloud.dev?user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":205.88749,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"christian rzadeh (WA)","membership":"join"},"time":"2026-03-06T19:23:15.308440109Z","message":"Request completed"} +{"level":"debug","transaction_id":"2051","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:15.323480977Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2051","time":"2026-03-06T19:23:15.32355969Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2052","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.348229842Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2052","time":"2026-03-06T19:23:15.348524646Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5014,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256676053647524:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-256676053647524%3Amatrix.theocloud.dev","duration":46.170168,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"LENA (WA)"},"time":"2026-03-06T19:23:15.350199812Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:15.35074486Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5010,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824995241015072_14?ts=1765976740000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":132.203194,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$F2BIuQb4pNEYaKTZCJmyFBwH8JdrF0lJOYuobZiZyA4","key":"❤️"}},"time":"2026-03-06T19:23:15.373367449Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:220327544094730@lid:3B79BFFC769995002912","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2025-12-17T13:05:40Z","event_id":"$DCizCoMm0uBER98g1IytRwHciI-FKoh_ZiDagNXHow0","time":"2026-03-06T19:23:15.373511743Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:15.37513739Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491756680777@s.whatsapp.net","alternate_jid":"13473413128380@lid","time":"2026-03-06T19:23:15.375219385Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917664432115@s.whatsapp.net","time":"2026-03-06T19:23:15.37557125Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5017,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917664432115%3Amatrix.theocloud.dev","duration":13.843703,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917664432115","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:15.389632931Z","message":"Request completed"} +{"level":"debug","transaction_id":"2053","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.395420196Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2053","time":"2026-03-06T19:23:15.395548566Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5018,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664432115:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917664432115%3Amatrix.theocloud.dev","duration":7.526406,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:15.39743207Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5019,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664432115:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917664432115%3Amatrix.theocloud.dev","duration":19.227489,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917664432115 (WA)"},"time":"2026-03-06T19:23:15.416884591Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:15.417778152Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5015,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12786134462711:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":148.183022,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iBMYaSAapOMhftFicdtIYIGH","com.beeper.exclude_from_timeline":true,"displayname":"Giuseppe Tullo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:15.457435395Z","message":"Request completed"} +{"level":"debug","transaction_id":"2054","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:15.481204653Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2054","time":"2026-03-06T19:23:15.481318636Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5016,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824995374024106_5?ts=1765976763000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":115.135086,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sorry an die KI leute haha","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:15.489287911Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:AC7D31710CB4A7412267B0A41564DDCD","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2025-12-17T13:06:03Z","event_id":"$iUSikFuXblhQYAgZmo7OQGz5EBvLvmqWhmeCtsMjRkk","part_id":"","time":"2026-03-06T19:23:15.489450713Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2055","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.505359091Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2055","time":"2026-03-06T19:23:15.505824101Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2056","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.523436629Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2056","time":"2026-03-06T19:23:15.523507658Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:15.523552567Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5022,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-256676053647524:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-256676053647524%3Amatrix.theocloud.dev","duration":5.257162,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:15.529081695Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:15.529965758Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5023,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-174736533360837%3Amatrix.theocloud.dev","duration":16.994285,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-174736533360837","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:15.547209519Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5024,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-174736533360837:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-174736533360837%3Amatrix.theocloud.dev","duration":10.519773,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:15.558077385Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:15.580602684Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5025,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-174736533360837:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-174736533360837%3Amatrix.theocloud.dev","duration":53.82662,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915904833440 (WA)"},"time":"2026-03-06T19:23:15.612089157Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:15.613139793Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5021,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824995490327372_4?ts=1765976781000&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":126.000019,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Alles gut","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:15.616466447Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:102147257532455@lid:3A1D292BCA1830B27779","sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"message_ts":"2025-12-17T13:06:21Z","event_id":"$9Scvga5v35H3d5QaoYUaF2pxuHRBb5V7Oo-BigqIe8c","part_id":"","time":"2026-03-06T19:23:15.616581687Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2057","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.639234448Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2057","time":"2026-03-06T19:23:15.639369942Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5020,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12786134462711:matrix.theocloud.dev?user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":197.09694,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iBMYaSAapOMhftFicdtIYIGH","com.beeper.exclude_from_timeline":true,"displayname":"Giuseppe Tullo (WA)","membership":"join"},"time":"2026-03-06T19:23:15.655175861Z","message":"Request completed"} +{"level":"debug","transaction_id":"2058","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.672860397Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2058","time":"2026-03-06T19:23:15.673273514Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5026,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824995617512474_7?ts=1765976791000&user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":115.606871,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"allet jut viel glück euch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:15.73327188Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:173804609343590@lid:3A2BE724768B806B8B2D","sender_id":{"user_id":"lid-173804609343590","sender_login":"4917655578514"},"message_ts":"2025-12-17T13:06:31Z","event_id":"$x59tsHtuLVTcoVzyGSmtAhkVMipOS8hnOWMvpLITlcA","part_id":"","time":"2026-03-06T19:23:15.73347959Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2059","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.743685353Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2059","time":"2026-03-06T19:23:15.743797868Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:15.767408794Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5027,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917664432115%3Amatrix.theocloud.dev","duration":133.116451,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<44617 bytes>","time":"2026-03-06T19:23:15.776981088Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5030,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664432115:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917664432115%3Amatrix.theocloud.dev","duration":19.888546,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:15.797210533Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5032,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/zMvVchVyUmIJmeekdWnuOJbv?user_id=%40whatsapp_4917664432115%3Amatrix.theocloud.dev","duration":13.903349,"status_code":200,"response_length":44617,"response_mime":"image/jpeg","time":"2026-03-06T19:23:15.811241693Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5033,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664432115:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917664432115%3Amatrix.theocloud.dev","duration":15.829247,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/zMvVchVyUmIJmeekdWnuOJbv"},"time":"2026-03-06T19:23:15.82745158Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917666660850@s.whatsapp.net","time":"2026-03-06T19:23:15.82808917Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5028,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-264544232407203:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":173.531062,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iHftjmntHIOnjnfAsgdWVTvG","com.beeper.exclude_from_timeline":true,"displayname":"Linus Grabenhenrich (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:15.829492928Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5034,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917666660850%3Amatrix.theocloud.dev","duration":9.33071,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917666660850","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:15.837628637Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5036,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666660850:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917666660850%3Amatrix.theocloud.dev","duration":5.730203,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:15.843697506Z","message":"Request completed"} +{"level":"debug","transaction_id":"2060","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.845473523Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2060","time":"2026-03-06T19:23:15.845811909Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5029,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824995734425952_6?ts=1765976823135&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":143.912031,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$x59tsHtuLVTcoVzyGSmtAhkVMipOS8hnOWMvpLITlcA","key":"❤️"}},"time":"2026-03-06T19:23:15.878487305Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:173804609343590@lid:3A2BE724768B806B8B2D","target_part_id":"","reaction_sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"reaction_ts":"2025-12-17T13:07:03.135Z","event_id":"$l8OuJgrruIQ6kpN9eyiVbMEtAGwh077JX-3bJL5w-Lc","time":"2026-03-06T19:23:15.87860471Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5037,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666660850:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917666660850%3Amatrix.theocloud.dev","duration":43.045707,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917666660850 (WA)"},"time":"2026-03-06T19:23:15.88689051Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:15.88766534Z","message":""} +{"level":"debug","transaction_id":"2061","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.887916422Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2061","time":"2026-03-06T19:23:15.887997719Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5031,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-174736533360837%3Amatrix.theocloud.dev","duration":130.899519,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55517 bytes>","time":"2026-03-06T19:23:15.909044388Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5039,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-174736533360837:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-174736533360837%3Amatrix.theocloud.dev","duration":3.976605,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:15.913486073Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5040,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/hcMgFyYeObPsJrBcywjtwCxd?user_id=%40whatsapp_lid-174736533360837%3Amatrix.theocloud.dev","duration":7.393985,"status_code":200,"response_length":55517,"response_mime":"image/jpeg","time":"2026-03-06T19:23:15.921094334Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5041,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-174736533360837:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-174736533360837%3Amatrix.theocloud.dev","duration":12.776025,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hcMgFyYeObPsJrBcywjtwCxd"},"time":"2026-03-06T19:23:15.934170541Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:15.935368963Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5035,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-264544232407203:matrix.theocloud.dev?user_id=%40whatsapp_lid-264544232407203%3Amatrix.theocloud.dev","duration":114.046665,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iHftjmntHIOnjnfAsgdWVTvG","com.beeper.exclude_from_timeline":true,"displayname":"Linus Grabenhenrich (WA)","membership":"join"},"time":"2026-03-06T19:23:15.944407662Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:15.945323573Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5042,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-158883775557821%3Amatrix.theocloud.dev","duration":16.919693,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-158883775557821","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:15.952631023Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5043,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917663142096%3Amatrix.theocloud.dev","duration":16.594508,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917663142096","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:15.962245501Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5044,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-158883775557821:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-158883775557821%3Amatrix.theocloud.dev","duration":9.801935,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:15.962734257Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5038,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824995879157092_15?ts=1765976813000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":92.963119,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$x59tsHtuLVTcoVzyGSmtAhkVMipOS8hnOWMvpLITlcA","key":"❤️"}},"time":"2026-03-06T19:23:15.972274562Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:173804609343590@lid:3A2BE724768B806B8B2D","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2025-12-17T13:06:53Z","event_id":"$6p0cDU8ZTizpTyWYve8ZDcZylqzf5_Cw3OBfPfLYuCs","time":"2026-03-06T19:23:15.972478362Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5045,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663142096:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663142096%3Amatrix.theocloud.dev","duration":10.091081,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:15.97268712Z","message":"Request completed"} +{"level":"debug","transaction_id":"2062","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.976413551Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2062","time":"2026-03-06T19:23:15.976510143Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2063","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:15.990115475Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2063","time":"2026-03-06T19:23:15.990496953Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5046,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-158883775557821:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-158883775557821%3Amatrix.theocloud.dev","duration":36.713533,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917624286664 (WA)"},"time":"2026-03-06T19:23:15.999593271Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5047,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663142096:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663142096%3Amatrix.theocloud.dev","duration":27.208638,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917663142096 (WA)"},"time":"2026-03-06T19:23:16.000032579Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:16.000531462Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:16.002004923Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5048,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824995973191102_3?ts=1765976833000&user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":51.55584,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"geht los","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.024903319Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:220327544094730@lid:3B99C480DBC7C78F0670","sender_id":{"user_id":"lid-220327544094730","sender_login":"4915751114529"},"message_ts":"2025-12-17T13:07:13Z","event_id":"$v_xnkb4iZNTVORzKL1anW-2yiKPeLMvBzvjnmEqWOtY","part_id":"","time":"2026-03-06T19:23:16.025036787Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2064","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.031354154Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2064","time":"2026-03-06T19:23:16.031436708Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5049,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824996025788778_16?ts=1765976874000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":30.11575,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$v_xnkb4iZNTVORzKL1anW-2yiKPeLMvBzvjnmEqWOtY","key":"❤️"}},"time":"2026-03-06T19:23:16.056040371Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:220327544094730@lid:3B99C480DBC7C78F0670","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2025-12-17T13:07:54Z","event_id":"$v28r5QMj391jkk48X-SsiieDQ6tIcsYIUpJ82LCDOBU","time":"2026-03-06T19:23:16.056235021Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:16.059833292Z","message":""} +{"level":"debug","transaction_id":"2065","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.063428699Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2065","time":"2026-03-06T19:23:16.06350776Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5050,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996056936307_7?ts=1765976834000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":31.826255,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Jeeeeetzt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.088903923Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:ACE200E18661CFC46BEAF4872DF42A18","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2025-12-17T13:07:14Z","event_id":"$8GVvqyx6cJJ0gSx14qP9i-um5XG0EyFLbJc2lul3oYM","part_id":"","time":"2026-03-06T19:23:16.089045353Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2066","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.092701732Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2066","time":"2026-03-06T19:23:16.092808102Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5051,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824996089641456_17?ts=1765976876000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":28.423543,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$8GVvqyx6cJJ0gSx14qP9i-um5XG0EyFLbJc2lul3oYM","key":"❤️"}},"time":"2026-03-06T19:23:16.118195464Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:198041059483854@lid:ACE200E18661CFC46BEAF4872DF42A18","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2025-12-17T13:07:56Z","event_id":"$pDsr6FiJFDnL7EqAhKQhPPt_ER4qIoX0b1lSZa4xycE","time":"2026-03-06T19:23:16.11837433Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2067","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.127407162Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2067","time":"2026-03-06T19:23:16.127478611Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:16.150563346Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5053,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663142096:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917663142096%3Amatrix.theocloud.dev","duration":6.066633,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:16.156962428Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5052,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996119059622_1?ts=1765976967000&user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":53.373693,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"habt ihr die kamera an?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.172610365Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:143632363450509@lid:3F967C616ACC309ED190","sender_id":{"user_id":"lid-143632363450509","sender_login":"4915253705809"},"message_ts":"2025-12-17T13:09:27Z","event_id":"$qOteiKpeD9kldER09OzBOHmW0GL5uJgRBeea68YK8m8","part_id":"","time":"2026-03-06T19:23:16.172761923Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2068","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.200799727Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2068","time":"2026-03-06T19:23:16.200872782Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2069","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:16.244724817Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2069","time":"2026-03-06T19:23:16.244821619Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5055,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996173750679_3?ts=1765976997000&user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":106.233557,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bisher nicht ^^","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.280165407Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:33994833981513@lid:3EB0D58947077C610BE53F","sender_id":{"user_id":"lid-33994833981513","sender_login":"4915119111000"},"message_ts":"2025-12-17T13:09:57Z","event_id":"$-gy79s6VrUgN49wPxsaKBrFJXnfMMI73ROPcJzbzfKE","part_id":"","time":"2026-03-06T19:23:16.28038094Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2070","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.301730026Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2070","time":"2026-03-06T19:23:16.301832694Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5054,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70029659869242:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":168.492226,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WjSuHViEFInUkmDqEAsBENJI","com.beeper.exclude_from_timeline":true,"displayname":"Helena (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:16.326480567Z","message":"Request completed"} +{"level":"debug","transaction_id":"2071","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.347921635Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2071","time":"2026-03-06T19:23:16.34829152Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5056,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917666660850%3Amatrix.theocloud.dev","duration":125.152344,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<65295 bytes>","time":"2026-03-06T19:23:16.352597012Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5059,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666660850:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917666660850%3Amatrix.theocloud.dev","duration":11.334761,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:16.364285315Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5060,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XwDlyZiGauPJyLITrcqwMcPR?user_id=%40whatsapp_4917666660850%3Amatrix.theocloud.dev","duration":5.566354,"status_code":200,"response_length":65295,"response_mime":"image/jpeg","time":"2026-03-06T19:23:16.36999296Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:16.377097798Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917666660850:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917666660850%3Amatrix.theocloud.dev","duration":11.892591,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XwDlyZiGauPJyLITrcqwMcPR"},"time":"2026-03-06T19:23:16.382123084Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915734716148@s.whatsapp.net","time":"2026-03-06T19:23:16.382902104Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5062,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915734716148%3Amatrix.theocloud.dev","duration":19.074535,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915734716148","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:16.402287158Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996281414674_18?ts=1765977001000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":129.614982,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"nein","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.411177931Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:251745280225436@lid:3EB0F51F33CB8139A88631","sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"message_ts":"2025-12-17T13:10:01Z","event_id":"$_9UTY34KDTT3b8omf16ttziXFJu2wY-kq0VeMSORz5I","part_id":"","time":"2026-03-06T19:23:16.411362035Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5064,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915734716148:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915734716148%3Amatrix.theocloud.dev","duration":12.384489,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:16.415130441Z","message":"Request completed"} +{"level":"debug","transaction_id":"2072","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.428645746Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2072","time":"2026-03-06T19:23:16.428780961Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5066,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915734716148:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915734716148%3Amatrix.theocloud.dev","duration":26.533264,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915734716148 (WA)"},"time":"2026-03-06T19:23:16.441841802Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:16.442520529Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5058,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70029659869242:matrix.theocloud.dev?user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":138.495767,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WjSuHViEFInUkmDqEAsBENJI","com.beeper.exclude_from_timeline":true,"displayname":"Helena (WA)","membership":"join"},"time":"2026-03-06T19:23:16.465794815Z","message":"Request completed"} +{"level":"debug","transaction_id":"2073","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.483852308Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2073","time":"2026-03-06T19:23:16.484248942Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5065,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996412261672_2?ts=1765977006000&user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":96.953414,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"hahahah okay","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.509366085Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:143632363450509@lid:3F70B6207A7925E6236B","sender_id":{"user_id":"lid-143632363450509","sender_login":"4915253705809"},"message_ts":"2025-12-17T13:10:06Z","event_id":"$a7Z0qUGP57n2F-mIGggvc29kaSLqkewYJqlKEPMBBt0","part_id":"","time":"2026-03-06T19:23:16.509573796Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2074","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.514618079Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2074","time":"2026-03-06T19:23:16.514742259Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5063,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-158883775557821%3Amatrix.theocloud.dev","duration":141.3315,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<51909 bytes>","time":"2026-03-06T19:23:16.530104401Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5069,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-158883775557821:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-158883775557821%3Amatrix.theocloud.dev","duration":5.789849,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:16.536284878Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5070,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YdptPheZgMIMbOvYpqICGtti?user_id=%40whatsapp_lid-158883775557821%3Amatrix.theocloud.dev","duration":5.628304,"status_code":200,"response_length":51909,"response_mime":"image/jpeg","time":"2026-03-06T19:23:16.542092676Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5071,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-158883775557821:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-158883775557821%3Amatrix.theocloud.dev","duration":7.347121,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YdptPheZgMIMbOvYpqICGtti"},"time":"2026-03-06T19:23:16.549750455Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:16.550463893Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5072,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-252960856604824%3Amatrix.theocloud.dev","duration":5.892937,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-252960856604824","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:16.556551549Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5073,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252960856604824:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-252960856604824%3Amatrix.theocloud.dev","duration":3.794108,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:16.560675312Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5068,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996510651182_4?ts=1765977019000&user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":85.925818,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"nein","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.596735751Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:220327544094730@lid:3BECD8CCD3098F9333B3","sender_id":{"user_id":"lid-220327544094730","sender_login":"4915751114529"},"message_ts":"2025-12-17T13:10:19Z","event_id":"$HR_dqlHlghQwBgeHnoFGgJCyY15dUqlEFWOqLYSDaZQ","part_id":"","time":"2026-03-06T19:23:16.596879487Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:16.60657582Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5067,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101816561881152:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":144.81083,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/URHQSzcZOkoAwYOvSLwKknXR","com.beeper.exclude_from_timeline":true,"displayname":"JH (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:16.611733317Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5076,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915734716148:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915734716148%3Amatrix.theocloud.dev","duration":11.754863,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:16.618646858Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"236399445938270@lid","alternate_jid":"4917620338641@s.whatsapp.net","time":"2026-03-06T19:23:16.619123461Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5074,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252960856604824:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-252960856604824%3Amatrix.theocloud.dev","duration":58.333188,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Siddhant (WA)"},"time":"2026-03-06T19:23:16.619208459Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"261327436177425@lid","time":"2026-03-06T19:23:16.619553549Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:16.621902482Z","message":""} +{"level":"debug","transaction_id":"2075","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.622618295Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2075","time":"2026-03-06T19:23:16.622702804Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5078,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-261327436177425%3Amatrix.theocloud.dev","duration":8.036254,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-261327436177425","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:16.627849756Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5079,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261327436177425:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-261327436177425%3Amatrix.theocloud.dev","duration":4.030943,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:16.632162442Z","message":"Request completed"} +{"level":"debug","transaction_id":"2076","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.635481064Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2076","time":"2026-03-06T19:23:16.635760643Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5080,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261327436177425:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-261327436177425%3Amatrix.theocloud.dev","duration":34.235183,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Momo (WA)"},"time":"2026-03-06T19:23:16.666551138Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:16.667294399Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5075,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996597839538_5?ts=1765977026000&user_id=%40whatsapp_lid-220327544094730%3Amatrix.theocloud.dev","duration":89.941256,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"warum sagt er nichts dazu","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.687954352Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:220327544094730@lid:3BABE0D38FF709AE1DB0","sender_id":{"user_id":"lid-220327544094730","sender_login":"4915751114529"},"message_ts":"2025-12-17T13:10:26Z","event_id":"$UNxq3u-RS7XUoBuT3P4W3YQpd7UdFReKKMJLDV2YkCw","part_id":"","time":"2026-03-06T19:23:16.688097808Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2077","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.705281924Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2077","time":"2026-03-06T19:23:16.70540743Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5077,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101816561881152:matrix.theocloud.dev?user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":126.381917,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/URHQSzcZOkoAwYOvSLwKknXR","com.beeper.exclude_from_timeline":true,"displayname":"JH (WA)","membership":"join"},"time":"2026-03-06T19:23:16.73875401Z","message":"Request completed"} +{"level":"debug","transaction_id":"2078","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.751704641Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2078","time":"2026-03-06T19:23:16.752055179Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:16.779823742Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5081,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996688940174_3?ts=1765977060000&user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":98.233133,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"keine Ahnung aber umso besser","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.787279327Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:143632363450509@lid:3F3B2D33C527117CA951","sender_id":{"user_id":"lid-143632363450509","sender_login":"4915253705809"},"message_ts":"2025-12-17T13:11:00Z","event_id":"$16eI8_SYP6EaNOmft3TCKYqj_NjubXcBqTu76gn_olU","part_id":"","time":"2026-03-06T19:23:16.787427044Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2079","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.803428312Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2079","time":"2026-03-06T19:23:16.803541107Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5082,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-72000915652689:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":112.518517,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Linda Elke Alice (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:16.852196261Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5083,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996788276185_2?ts=1766229713000&user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":65.279205,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"BS ist da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.853672167Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:273069826400467@lid:AC4F8374025E7A1F3C5DF59802E0B878","sender_id":{"user_id":"lid-273069826400467","sender_login":"48723807797"},"message_ts":"2025-12-20T11:21:53Z","event_id":"$_9HzBIIEmLLPJiGC7_G9swShxXru63vPMnZpKcBVmy4","part_id":"","time":"2026-03-06T19:23:16.853769038Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2080","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.870663309Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2080","time":"2026-03-06T19:23:16.870758224Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2081","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.879026983Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2081","time":"2026-03-06T19:23:16.879288332Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5086,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996854432748_8?ts=1766230526000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":69.659149,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Noch nicht bei allen offenbar :/","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:16.924221874Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:AC1159D3275B44DA0805E60593B276C0","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2025-12-20T11:35:26Z","event_id":"$3IddssLz35NKJIB44aj6Y7lAGnGUB0j6BTZ88OjElR0","part_id":"","time":"2026-03-06T19:23:16.924399902Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2082","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:16.937757294Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2082","time":"2026-03-06T19:23:16.937890832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:16.955421435Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5088,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-261327436177425:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-261327436177425%3Amatrix.theocloud.dev","duration":14.621955,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:16.970425217Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"393201550470@s.whatsapp.net","alternate_jid":"12786134462711@lid","time":"2026-03-06T19:23:16.971176929Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915110633551@s.whatsapp.net","time":"2026-03-06T19:23:16.971597519Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5085,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-72000915652689:matrix.theocloud.dev?user_id=%40whatsapp_lid-72000915652689%3Amatrix.theocloud.dev","duration":126.276176,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Linda Elke Alice (WA)","membership":"join"},"time":"2026-03-06T19:23:16.97915661Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:16.980244123Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5084,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-252960856604824%3Amatrix.theocloud.dev","duration":141.757818,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<75898 bytes>","time":"2026-03-06T19:23:16.982637616Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5089,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915110633551%3Amatrix.theocloud.dev","duration":14.060284,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915110633551","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:16.985967413Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5090,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915738711750%3Amatrix.theocloud.dev","duration":13.8803,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915738711750","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:16.99446225Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5091,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252960856604824:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-252960856604824%3Amatrix.theocloud.dev","duration":13.219872,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:16.996105218Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5092,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915110633551:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915110633551%3Amatrix.theocloud.dev","duration":11.645279,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:16.998000317Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5093,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915738711750:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915738711750%3Amatrix.theocloud.dev","duration":7.515091,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:17.002378376Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5094,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YMYLGMswkQSuDBKwlmTbXSIj?user_id=%40whatsapp_lid-252960856604824%3Amatrix.theocloud.dev","duration":6.389584,"status_code":200,"response_length":75898,"response_mime":"image/jpeg","time":"2026-03-06T19:23:17.002634557Z","message":"Request completed"} +{"level":"debug","transaction_id":"2083","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.008287445Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2083","time":"2026-03-06T19:23:17.00869274Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5097,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-252960856604824:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-252960856604824%3Amatrix.theocloud.dev","duration":11.325612,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YMYLGMswkQSuDBKwlmTbXSIj"},"time":"2026-03-06T19:23:17.01429604Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:17.015659081Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5098,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-264840736174206%3Amatrix.theocloud.dev","duration":4.74941,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-264840736174206","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:17.020752393Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5099,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-264840736174206:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-264840736174206%3Amatrix.theocloud.dev","duration":5.439381,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:17.026627869Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5095,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915110633551:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915110633551%3Amatrix.theocloud.dev","duration":33.026703,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915110633551 (WA)"},"time":"2026-03-06T19:23:17.031213289Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:17.032126965Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5096,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915738711750:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915738711750%3Amatrix.theocloud.dev","duration":32.604996,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Zou (WA)"},"time":"2026-03-06T19:23:17.035132973Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:17.03568752Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5087,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824996925427281_5?ts=1766230534000&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":122.992055,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Nur email","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:17.048610633Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:102147257532455@lid:3AD5741003FF9DAFE19F","sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"message_ts":"2025-12-20T11:35:34Z","event_id":"$_rByddXowzNaqVZClDtz48RXoZjWANd8qazRqN6xk58","part_id":"","time":"2026-03-06T19:23:17.048713651Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2084","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.062738664Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2084","time":"2026-03-06T19:23:17.062857885Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5100,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-264840736174206:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-264840736174206%3Amatrix.theocloud.dev","duration":37.460147,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917661608163 (WA)"},"time":"2026-03-06T19:23:17.064256195Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:17.065177833Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5101,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824997049388047_14?ts=1766230541000&user_id=%40whatsapp_lid-27956059590853%3Amatrix.theocloud.dev","duration":41.055903,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"E-Mail! Nicht bei sam","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:17.090575532Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:27956059590853@lid:3A81D9AFF6DDC8D9EB8E","sender_id":{"user_id":"lid-27956059590853","sender_login":"491731828379"},"message_ts":"2025-12-20T11:35:41Z","event_id":"$4iaPyi8POC6q88QW7u43ESTN_ELPuhuVzLtGynKOWF4","part_id":"","time":"2026-03-06T19:23:17.09068707Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2085","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.097771235Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2085","time":"2026-03-06T19:23:17.097881865Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5102,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824997091443811_9?ts=1766232217000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":30.253758,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ah sorry, mein Fehler","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:17.121830059Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:AC1664041D5111EF7BA9F911E3AB43D4","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2025-12-20T12:03:37Z","event_id":"$Hz1kMEhuj7JASsJl_G4FdfrgtejZDPeP1G_pZOeuGvc","part_id":"","time":"2026-03-06T19:23:17.121972328Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2086","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.130479108Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2086","time":"2026-03-06T19:23:17.130580729Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5103,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824997122990906_3?ts=1766389595000&user_id=%40whatsapp_lid-273069826400467%3Amatrix.theocloud.dev","duration":49.606475,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"KI ist da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:17.172755504Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:273069826400467@lid:AC550F48A309D05A064027DE3CE3A107","sender_id":{"user_id":"lid-273069826400467","sender_login":"48723807797"},"message_ts":"2025-12-22T07:46:35Z","event_id":"$3JzmKv9Ytqn9Um37vYNoHzAVP30EBMi-vDCgMa_osCY","part_id":"","time":"2026-03-06T19:23:17.172939817Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:17.187099207Z","message":""} +{"level":"debug","transaction_id":"2087","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.187610173Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2087","time":"2026-03-06T19:23:17.187720593Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:17.192309296Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5105,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915110633551:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915110633551%3Amatrix.theocloud.dev","duration":18.991144,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:17.206468197Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5106,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915738711750:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915738711750%3Amatrix.theocloud.dev","duration":15.375482,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:17.207951925Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:17.215567798Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5107,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_34640820670%3Amatrix.theocloud.dev","duration":11.876458,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_34640820670","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:17.219411145Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5109,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_34640820670:matrix.theocloud.dev/displayname?user_id=%40whatsapp_34640820670%3Amatrix.theocloud.dev","duration":8.632706,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:23:17.22841171Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_34640820670:matrix.theocloud.dev/displayname?user_id=%40whatsapp_34640820670%3Amatrix.theocloud.dev","duration":64.393955,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Aitor sav (WA)"},"time":"2026-03-06T19:23:17.293005763Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"101829530640580@lid","alternate_jid":"34640820670@s.whatsapp.net","time":"2026-03-06T19:23:17.293763271Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5112,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917657652041%3Amatrix.theocloud.dev","duration":7.698218,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917657652041","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:17.302177511Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5113,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657652041:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917657652041%3Amatrix.theocloud.dev","duration":5.958658,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:17.30844976Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5104,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824997174989127_8?ts=1766391994000&user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":152.703907,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"einfach in 2 tagen durchgezogen ist crazy","m.mentions":{"user_ids":["@whatsapp_lid-273069826400467:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$3JzmKv9Ytqn9Um37vYNoHzAVP30EBMi-vDCgMa_osCY"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:17.327885938Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:173804609343590@lid:3A2BF97F4C855EF71CA9","sender_id":{"user_id":"lid-173804609343590","sender_login":"4917655578514"},"message_ts":"2025-12-22T08:26:34Z","event_id":"$JycUdYag9ph8C9h8u7hLE_JYLedkEimvmL6LuGfB19Y","part_id":"","time":"2026-03-06T19:23:17.328056283Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2088","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.349897129Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2088","time":"2026-03-06T19:23:17.350042889Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657652041:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917657652041%3Amatrix.theocloud.dev","duration":50.527204,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jonas (WA)"},"time":"2026-03-06T19:23:17.359207095Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"151414944854040@lid","alternate_jid":"4917657652041@s.whatsapp.net","time":"2026-03-06T19:23:17.359907752Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"16114767646828@lid","alternate_jid":"4915901353554@s.whatsapp.net","time":"2026-03-06T19:23:17.360035912Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5116,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915253941210%3Amatrix.theocloud.dev","duration":15.446722,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915253941210","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:17.376029428Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5110,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-264840736174206%3Amatrix.theocloud.dev","duration":152.788347,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45631 bytes>","time":"2026-03-06T19:23:17.380710951Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5117,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253941210:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915253941210%3Amatrix.theocloud.dev","duration":7.650655,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:17.384079441Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5118,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-264840736174206:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-264840736174206%3Amatrix.theocloud.dev","duration":5.942384,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:17.387073367Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5120,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/bSBVMfsjdKdWLIIBVJLkxPCK?user_id=%40whatsapp_lid-264840736174206%3Amatrix.theocloud.dev","duration":9.800048,"status_code":200,"response_length":45631,"response_mime":"image/jpeg","time":"2026-03-06T19:23:17.397014985Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5121,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-264840736174206:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-264840736174206%3Amatrix.theocloud.dev","duration":16.248999,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/bSBVMfsjdKdWLIIBVJLkxPCK"},"time":"2026-03-06T19:23:17.413589239Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:17.414793249Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5108,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-150517229604984:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":220.489959,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xFzHZPHqVdJiEQnxwZXDOSpZ","com.beeper.exclude_from_timeline":true,"displayname":"+4915112997658 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:17.429218319Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5122,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-215268173324429%3Amatrix.theocloud.dev","duration":20.095209,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-215268173324429","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:17.435179072Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5124,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-215268173324429:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-215268173324429%3Amatrix.theocloud.dev","duration":8.680129,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:17.444260165Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5119,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915253941210:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915253941210%3Amatrix.theocloud.dev","duration":65.05131,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Charles Grütte (WA)"},"time":"2026-03-06T19:23:17.449313807Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"198268692730012@lid","alternate_jid":"4915253941210@s.whatsapp.net","time":"2026-03-06T19:23:17.449939034Z","message":"Synced alternate ghost with info"} +{"level":"debug","transaction_id":"2089","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.457010488Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2089","time":"2026-03-06T19:23:17.457374925Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5126,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917664704658%3Amatrix.theocloud.dev","duration":9.283216,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917664704658","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:17.459810322Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5127,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664704658:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917664704658%3Amatrix.theocloud.dev","duration":4.929253,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:17.465119936Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824997329091764_1?ts=1766392018000&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":161.821039,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich dachte wir sitzen jetzt erstmal 4 Wochen vor nichts lol","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:17.491056747Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:46858126766286@lid:AC55564E0DFC711D10CAA7E7DFBA1691","sender_id":{"user_id":"lid-46858126766286","sender_login":"491702130605"},"message_ts":"2025-12-22T08:26:58Z","event_id":"$fRk8OP9Hg5Dd62eEXlaJ8FgsRu0RG9EnTEkAqSGlCd0","part_id":"","time":"2026-03-06T19:23:17.491176387Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5125,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-215268173324429:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-215268173324429%3Amatrix.theocloud.dev","duration":56.279199,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917622717740 (WA)"},"time":"2026-03-06T19:23:17.500784859Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:17.501729405Z","message":""} +{"level":"debug","transaction_id":"2090","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.509859387Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2090","time":"2026-03-06T19:23:17.509978188Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5128,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917664704658:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917664704658%3Amatrix.theocloud.dev","duration":56.53084,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Zaki (WA)"},"time":"2026-03-06T19:23:17.521839001Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"267950527361145@lid","alternate_jid":"4917664704658@s.whatsapp.net","time":"2026-03-06T19:23:17.522519195Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5130,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491777059558%3Amatrix.theocloud.dev","duration":12.95084,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491777059558","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:17.536055382Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5131,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491777059558:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491777059558%3Amatrix.theocloud.dev","duration":6.048195,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:17.542484427Z","message":"Request completed"} +{"level":"debug","transaction_id":"2091","content":{"pdu":0,"unstable_edu":15,"unstable_to_device":0},"time":"2026-03-06T19:23:17.556397134Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2091","time":"2026-03-06T19:23:17.556605963Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491777059558:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491777059558%3Amatrix.theocloud.dev","duration":23.19306,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mustafa (WA)"},"time":"2026-03-06T19:23:17.565816753Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"40566117134352@lid","alternate_jid":"491777059558@s.whatsapp.net","time":"2026-03-06T19:23:17.566374792Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915256124901@s.whatsapp.net","time":"2026-03-06T19:23:17.566715482Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5133,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915256124901%3Amatrix.theocloud.dev","duration":14.1457,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915256124901","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:17.581129866Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5134,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256124901:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256124901%3Amatrix.theocloud.dev","duration":9.176707,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:17.590768579Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:17.609901782Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5123,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-150517229604984:matrix.theocloud.dev?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":180.500057,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xFzHZPHqVdJiEQnxwZXDOSpZ","com.beeper.exclude_from_timeline":true,"displayname":"+4915112997658 (WA)","membership":"join"},"time":"2026-03-06T19:23:17.610511295Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5129,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824997491955337_9?ts=1766392025912&user_id=%40whatsapp_lid-173804609343590%3Amatrix.theocloud.dev","duration":134.558972,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$fRk8OP9Hg5Dd62eEXlaJ8FgsRu0RG9EnTEkAqSGlCd0","key":"💯"}},"time":"2026-03-06T19:23:17.626647428Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:46858126766286@lid:AC55564E0DFC711D10CAA7E7DFBA1691","target_part_id":"","reaction_sender_id":{"user_id":"lid-173804609343590","sender_login":"4917655578514"},"reaction_ts":"2025-12-22T08:27:05.912Z","event_id":"$tlzQ1EWJMAEzxTcWyH_HDL28TwHMUDAQTO1Yl8u6_Y0","time":"2026-03-06T19:23:17.626780967Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2092","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.633882033Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2092","time":"2026-03-06T19:23:17.633961095Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5135,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256124901:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256124901%3Amatrix.theocloud.dev","duration":48.579584,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915256124901 (WA)"},"time":"2026-03-06T19:23:17.639537506Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:17.640428273Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:17.651361931Z","message":""} +{"level":"debug","transaction_id":"2093","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.652201504Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2093","time":"2026-03-06T19:23:17.652533464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:17.652826801Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5137,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824997627536799_2?ts=1767131300000&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":75.655452,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Betriebssysteme ist jetzt in SAM eingetragen btw.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:17.703364272Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:46858126766286@lid:ACB0697F15E68BC10F4F0E9436824452","sender_id":{"user_id":"lid-46858126766286","sender_login":"491702130605"},"message_ts":"2025-12-30T21:48:20Z","event_id":"$MWkp4ze4soTlLepHYFTpJZYVQ__rssieGHDERVemH60","part_id":"","time":"2026-03-06T19:23:17.703527214Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2094","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.715434612Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2094","time":"2026-03-06T19:23:17.715539026Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5136,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-91422824890466:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":136.331078,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917663142096 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:17.747853688Z","message":"Request completed"} +{"level":"debug","transaction_id":"2095","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.766663591Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2095","time":"2026-03-06T19:23:17.767025094Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5138,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-215268173324429%3Amatrix.theocloud.dev","duration":126.37102,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40373 bytes>","time":"2026-03-06T19:23:17.789236312Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:17.794636581Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5141,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-215268173324429:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-215268173324429%3Amatrix.theocloud.dev","duration":6.574526,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:17.796222977Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5142,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/SwLWUAgYYXeOUWfhnQIjMoME?user_id=%40whatsapp_lid-215268173324429%3Amatrix.theocloud.dev","duration":4.171675,"status_code":200,"response_length":40373,"response_mime":"image/jpeg","time":"2026-03-06T19:23:17.800543765Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5143,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-215268173324429:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-215268173324429%3Amatrix.theocloud.dev","duration":12.838045,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SwLWUAgYYXeOUWfhnQIjMoME"},"time":"2026-03-06T19:23:17.813615083Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:17.814684437Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824997704546142_2?ts=1768199451000&user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":114.539053,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"\"Human Factors\" findet nicht statt (siehe Mail von Frau Pätzoldt). Wer es in SAM gewählt hat, muss umwählen.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:17.819220689Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:218845914619936@lid:AC8F3A07253C250628A8E97220F0985A","sender_id":{"user_id":"lid-218845914619936","sender_login":"4917695111675"},"message_ts":"2026-01-12T06:30:51Z","event_id":"$ZoPgjW5UxEhBk6hMGmqeWiZO7UORTc9dIFQk1EUodmI","part_id":"","time":"2026-03-06T19:23:17.819400393Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5144,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-144049092702394%3Amatrix.theocloud.dev","duration":13.635224,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-144049092702394","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:17.828624104Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5147,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-144049092702394:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-144049092702394%3Amatrix.theocloud.dev","duration":20.997082,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:17.850053508Z","message":"Request completed"} +{"level":"debug","transaction_id":"2096","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.857476128Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2096","time":"2026-03-06T19:23:17.857576212Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5148,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-144049092702394:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-144049092702394%3Amatrix.theocloud.dev","duration":31.254177,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491735425217 (WA)"},"time":"2026-03-06T19:23:17.881492838Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:17.88246092Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5140,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-91422824890466:matrix.theocloud.dev?user_id=%40whatsapp_lid-91422824890466%3Amatrix.theocloud.dev","duration":165.829073,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917663142096 (WA)","membership":"join"},"time":"2026-03-06T19:23:17.914473584Z","message":"Request completed"} +{"level":"debug","transaction_id":"2097","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.952476545Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2097","time":"2026-03-06T19:23:17.952862283Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5145,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824997820303592_3?ts=1768206824907&user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":144.651101,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$ZoPgjW5UxEhBk6hMGmqeWiZO7UORTc9dIFQk1EUodmI","key":"👍🏻"}},"time":"2026-03-06T19:23:17.965112676Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:218845914619936@lid:AC8F3A07253C250628A8E97220F0985A","target_part_id":"","reaction_sender_id":{"user_id":"lid-16114767646828","sender_login":"4915901353554"},"reaction_ts":"2026-01-12T08:33:44.907Z","event_id":"$qMm_1CvMbkWqGfMujW_4IFJBFAccBrBgPE3w1uzQy3c","time":"2026-03-06T19:23:17.96525243Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5146,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915256124901%3Amatrix.theocloud.dev","duration":138.834502,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<24152 bytes>","time":"2026-03-06T19:23:17.967584461Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5151,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256124901:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915256124901%3Amatrix.theocloud.dev","duration":16.279311,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:17.984201528Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5152,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/xDZojhNBbZDlgCEtueiqggcw?user_id=%40whatsapp_4915256124901%3Amatrix.theocloud.dev","duration":5.772878,"status_code":200,"response_length":24152,"response_mime":"image/jpeg","time":"2026-03-06T19:23:17.990112344Z","message":"Request completed"} +{"level":"debug","transaction_id":"2098","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:17.994410154Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2098","time":"2026-03-06T19:23:17.994492638Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5153,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256124901:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915256124901%3Amatrix.theocloud.dev","duration":15.599047,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xDZojhNBbZDlgCEtueiqggcw"},"time":"2026-03-06T19:23:18.005950671Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5154,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915736562158%3Amatrix.theocloud.dev","duration":6.366536,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915736562158","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:18.013469184Z","message":"Request completed"} +{"level":"debug","transaction_id":"2099","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.018036376Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2099","time":"2026-03-06T19:23:18.018436641Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491736748726@s.whatsapp.net","portal_mxid":"!lZlymPnIGrcecKHucv:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$XOgrLnJbR1lTrzcdugiOIcQEehYBIQ7_3bs-eMemlX8","event_type":"m.room.member","event_id":"$XOgrLnJbR1lTrzcdugiOIcQEehYBIQ7_3bs-eMemlX8","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:18.018939854Z","message":"Sending implicit read receipt for event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5155,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915736562158:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915736562158%3Amatrix.theocloud.dev","duration":8.004615,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:18.02193371Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5156,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915736562158:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915736562158%3Amatrix.theocloud.dev","duration":28.222118,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tobi (WA)"},"time":"2026-03-06T19:23:18.050406143Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:18.051481852Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5150,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824997965875911_5?ts=1768201301407&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":114.205346,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$ZoPgjW5UxEhBk6hMGmqeWiZO7UORTc9dIFQk1EUodmI","key":"👍️"}},"time":"2026-03-06T19:23:18.080229533Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:218845914619936@lid:AC8F3A07253C250628A8E97220F0985A","target_part_id":"","reaction_sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"reaction_ts":"2026-01-12T07:01:41.407Z","event_id":"$9wIipJ-Z8KiaLGFSqhF8O1xUsIEZbD2RNjSmEsh17Aw","time":"2026-03-06T19:23:18.080441434Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2100","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.104478398Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2100","time":"2026-03-06T19:23:18.104606698Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5149,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-83674703904795:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":209.756049,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uHMfWBOwjpDinqKTHuYIBuJO","com.beeper.exclude_from_timeline":true,"displayname":"Zakaria (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:18.125318753Z","message":"Request completed"} +{"level":"debug","transaction_id":"2101","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.141632565Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2101","time":"2026-03-06T19:23:18.142004126Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:18.207926648Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5157,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824998081122535_1?ts=1768207040560&user_id=%40whatsapp_lid-1975802458312%3Amatrix.theocloud.dev","duration":130.096264,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$ZoPgjW5UxEhBk6hMGmqeWiZO7UORTc9dIFQk1EUodmI","key":"👍🏻"}},"time":"2026-03-06T19:23:18.21139585Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:218845914619936@lid:AC8F3A07253C250628A8E97220F0985A","target_part_id":"","reaction_sender_id":{"user_id":"lid-1975802458312","sender_login":"4917663302838"},"reaction_ts":"2026-01-12T08:37:20.56Z","event_id":"$mKg2Otq3yUJTRA09OKSs62BA-8nGJfyNcktblA9I2sU","time":"2026-03-06T19:23:18.211532251Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2102","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.239513134Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2102","time":"2026-03-06T19:23:18.239633752Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2103","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:18.26451853Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2103","time":"2026-03-06T19:23:18.264643547Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:18.268596546Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5161,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-144049092702394:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-144049092702394%3Amatrix.theocloud.dev","duration":12.924859,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:18.28182913Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:18.28253719Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5162,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-198736911294586%3Amatrix.theocloud.dev","duration":11.732862,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-198736911294586","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:18.294475039Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5158,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-83674703904795:matrix.theocloud.dev?user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":177.769366,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uHMfWBOwjpDinqKTHuYIBuJO","com.beeper.exclude_from_timeline":true,"displayname":"Zakaria (WA)","membership":"join"},"time":"2026-03-06T19:23:18.303842486Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5163,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198736911294586:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198736911294586%3Amatrix.theocloud.dev","duration":16.137809,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:18.31106417Z","message":"Request completed"} +{"level":"debug","transaction_id":"2104","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.332236555Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2104","time":"2026-03-06T19:23:18.332713857Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5165,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198736911294586:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-198736911294586%3Amatrix.theocloud.dev","duration":55.969728,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+201559445990 (WA)"},"time":"2026-03-06T19:23:18.367244192Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:18.368089423Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5159,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824998212215099_6?ts=1770290462000&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":167.634634,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey, kurze Frage:\nHat jemand von euch die Studienarbeit Teil 1 ohne Unterschrift vom Unternehmen abgegeben und gabs da Probleme? Ich hab nächste Woche Urlaub und will Teil 2 dort zu Ende schreiben, aber hab keine Lust danach nochmal ins Unternehmen zu fahren für die Unterschrift. Wie war es bei euch?","format":"org.matrix.custom.html","formatted_body":"Hey, kurze Frage:\u003cbr\u003eHat jemand von euch die Studienarbeit Teil 1 ohne Unterschrift vom Unternehmen abgegeben und gabs da Probleme? Ich hab nächste Woche Urlaub und will Teil 2 dort zu Ende schreiben, aber hab keine Lust danach nochmal ins Unternehmen zu fahren für die Unterschrift. Wie war es bei euch?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:18.380044593Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:102147257532455@lid:3EB0F48E9D569705371B75","sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"message_ts":"2026-02-05T11:21:02Z","event_id":"$oUodZUh09FS0pkYxmZgM3OkMoIgKLFON9D0S0OBlntg","part_id":"","time":"2026-03-06T19:23:18.380210677Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5160,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915736562158%3Amatrix.theocloud.dev","duration":179.060889,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38712 bytes>","time":"2026-03-06T19:23:18.395543905Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5167,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915736562158:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915736562158%3Amatrix.theocloud.dev","duration":7.139969,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:18.403041536Z","message":"Request completed"} +{"level":"debug","transaction_id":"2105","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.405580789Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2105","time":"2026-03-06T19:23:18.405715724Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5168,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VxKAiFNriuRamCFJGrPLQPVr?user_id=%40whatsapp_4915736562158%3Amatrix.theocloud.dev","duration":7.832384,"status_code":200,"response_length":38712,"response_mime":"image/jpeg","time":"2026-03-06T19:23:18.410998588Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5169,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915736562158:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915736562158%3Amatrix.theocloud.dev","duration":7.88721,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VxKAiFNriuRamCFJGrPLQPVr"},"time":"2026-03-06T19:23:18.419122354Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:18.420174038Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5166,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824998381267110_3?ts=1770290658000&user_id=%40whatsapp_lid-218845914619936%3Amatrix.theocloud.dev","duration":96.852771,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Beim 1. PTB gab es mal Probleme (man hatte nur 24 Stunden um die Unterschrift nachzureichen), aber beim Studienprojekt weiß ich nicht...","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:18.47828876Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:218845914619936@lid:AC34BC060E88BFFF0BF23307702AC53A","sender_id":{"user_id":"lid-218845914619936","sender_login":"4917695111675"},"message_ts":"2026-02-05T11:24:18Z","event_id":"$y47E1n-WoS06Rern9AuNIQ1QEGFF0hruTHb0FA_b-KM","part_id":"","time":"2026-03-06T19:23:18.478535443Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5164,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-108456681980086:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":177.29842,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RwxeVmcOQFgdXMwsSIHhRZJS","com.beeper.exclude_from_timeline":true,"displayname":"+4917656794491 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:18.482260128Z","message":"Request completed"} +{"level":"debug","transaction_id":"2106","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.495104389Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2106","time":"2026-03-06T19:23:18.495197349Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2107","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.511787107Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2107","time":"2026-03-06T19:23:18.512101747Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5170,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824998479473144_3?ts=1770291149000&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":121.343569,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Also wir hatten ja auch bei Grohmann und bei uns gab's keine Unterschrift, hat ihn glaube ich nicht allzu sehr interessiert","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:18.600980074Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:46858126766286@lid:AC60A56F6BCE947010A03A8E3C17DF8F","sender_id":{"user_id":"lid-46858126766286","sender_login":"491702130605"},"message_ts":"2026-02-05T11:32:29Z","event_id":"$0q3iJEEUi4viMGDpAUH7bHMpM2P-JkbzBSJgTcR_sjc","part_id":"","time":"2026-03-06T19:23:18.601196795Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2108","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.615777682Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2108","time":"2026-03-06T19:23:18.615915481Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5171,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-108456681980086:matrix.theocloud.dev?user_id=%40whatsapp_lid-108456681980086%3Amatrix.theocloud.dev","duration":166.630722,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RwxeVmcOQFgdXMwsSIHhRZJS","com.beeper.exclude_from_timeline":true,"displayname":"+4917656794491 (WA)","membership":"join"},"time":"2026-03-06T19:23:18.649677413Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:18.654061338Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5174,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-198736911294586:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-198736911294586%3Amatrix.theocloud.dev","duration":11.862001,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:18.666221076Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:18.667124065Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5175,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-73023721844742%3Amatrix.theocloud.dev","duration":11.984294,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-73023721844742","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:18.679379417Z","message":"Request completed"} +{"level":"debug","transaction_id":"2109","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.687738132Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2109","time":"2026-03-06T19:23:18.687992428Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5176,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73023721844742:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-73023721844742%3Amatrix.theocloud.dev","duration":10.333993,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:18.690043973Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5177,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73023721844742:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-73023721844742%3Amatrix.theocloud.dev","duration":71.029454,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915110698014 (WA)"},"time":"2026-03-06T19:23:18.761286794Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:18.761909647Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824998602323280_4?ts=1770291170000&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":166.475742,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich weiß natürlich nicht, ob er es nur übersehen hat oder es ihn wirklich nicht juckt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:18.768990739Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:46858126766286@lid:ACE7773FF96BA6F6D4FAED079EAF21FD","sender_id":{"user_id":"lid-46858126766286","sender_login":"491702130605"},"message_ts":"2026-02-05T11:32:50Z","event_id":"$LEaH7ILvXG-R2qNtg8UkzjkrjWaqt2_aEEGJDXE2ll0","part_id":"","time":"2026-03-06T19:23:18.769165414Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2110","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.791598381Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2110","time":"2026-03-06T19:23:18.791692878Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-54975749202069:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":183.300101,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jnnPELKejCzCqucCZGnhsglN","com.beeper.exclude_from_timeline":true,"displayname":". (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:18.833936238Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:18.839362558Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915736562158@s.whatsapp.net","alternate_jid":"190219840168190@lid","time":"2026-03-06T19:23:18.839452654Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915226901910@s.whatsapp.net","time":"2026-03-06T19:23:18.839847822Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5180,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915226901910%3Amatrix.theocloud.dev","duration":14.186488,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915226901910","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:18.854293565Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5178,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824998770086982_7?ts=1770291261000&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":89.416741,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok dann gehe ich mal das Risiko ein (das Unternehmen hat ja auch ehrlich garnichts mit dem studienprojekt zu tun). Danke euch","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:18.859649624Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:102147257532455@lid:3AAB5C426A9BFD1860FF","sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"message_ts":"2026-02-05T11:34:21Z","event_id":"$YLebmoM7YE4mlb_9hFrzGhEZ44gDLJHhjnwpaDnoWEw","part_id":"","time":"2026-03-06T19:23:18.859767447Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2111","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.866407555Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2111","time":"2026-03-06T19:23:18.866495696Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5181,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226901910:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915226901910%3Amatrix.theocloud.dev","duration":14.606869,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:18.869208158Z","message":"Request completed"} +{"level":"debug","transaction_id":"2112","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.882570718Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2112","time":"2026-03-06T19:23:18.88282641Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5183,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226901910:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915226901910%3Amatrix.theocloud.dev","duration":27.799154,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915226901910 (WA)"},"time":"2026-03-06T19:23:18.897235067Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:18.89807925Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5182,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824998860502886_5?ts=1770291310000&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":69.137148,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Viel Glück und sehr gerne","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:18.929774551Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:46858126766286@lid:AC8789B02E014250310ED046470D270D","sender_id":{"user_id":"lid-46858126766286","sender_login":"491702130605"},"message_ts":"2026-02-05T11:35:10Z","event_id":"$UkzkfLdur-KwKEn3QjIPMJ_qcfjGie83wYZxF1bVGGM","part_id":"","time":"2026-03-06T19:23:18.929927715Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2113","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.948191102Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2113","time":"2026-03-06T19:23:18.948293561Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5179,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-54975749202069:matrix.theocloud.dev?user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":132.236579,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jnnPELKejCzCqucCZGnhsglN","com.beeper.exclude_from_timeline":true,"displayname":". (WA)","membership":"join"},"time":"2026-03-06T19:23:18.96695023Z","message":"Request completed"} +{"level":"debug","transaction_id":"2114","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:18.98149913Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2114","time":"2026-03-06T19:23:18.981805947Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5184,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824998930878966_8?ts=1770364951000&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":103.187529,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hallöchen,\nich hab noch ein Anliegen: Es wird bald eine Infoveranstaltung zum Thema Abschlussfeier/Bachelorball stattfinden. Leider wurde sie so gelegt, dass wir dort Vorlesung haben. Deshalb müssen wir das hier schon etwas früher klären. Der Ball ist an sich eine schöne Idee, allerdings ist aus dem Jahrgang über mir keiner da gewesen weil es ihnen zu teuer war. In der Infoveranstaltung soll ein Organisationsteam geformt werden, welches sich um das Konzept und die Organisation des Balls kümmern soll. Da wir nicht an der Veranstaltung teilnehmen können würde ich vorschlagen, dass jeder der gerne Teil dieses Organisationsteams wäre, sich einmal kurz persönlich bei mir meldet, damit ich eure Namen + Email an Frau Pätzoldt weiterleiten kann. Viel mehr Informationen hab ich leider auch nicht dazu, aber wenn ihr noch Fragen habt, kann ich versuchen sie zu beantworten.","format":"org.matrix.custom.html","formatted_body":"Hallöchen,\u003cbr\u003eich hab noch ein Anliegen: Es wird bald eine Infoveranstaltung zum Thema Abschlussfeier/Bachelorball stattfinden. Leider wurde sie so gelegt, dass wir dort Vorlesung haben. Deshalb müssen wir das hier schon etwas früher klären. Der Ball ist an sich eine schöne Idee, allerdings ist aus dem Jahrgang über mir keiner da gewesen weil es ihnen zu teuer war. In der Infoveranstaltung soll ein Organisationsteam geformt werden, welches sich um das Konzept und die Organisation des Balls kümmern soll. Da wir nicht an der Veranstaltung teilnehmen können würde ich vorschlagen, dass jeder der gerne Teil dieses Organisationsteams wäre, sich einmal kurz persönlich bei mir meldet, damit ich eure Namen + Email an Frau Pätzoldt weiterleiten kann. Viel mehr Informationen hab ich leider auch nicht dazu, aber wenn ihr noch Fragen habt, kann ich versuchen sie zu beantworten.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:19.034281329Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:102147257532455@lid:3EB0751D94A31AE34E8371","sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"message_ts":"2026-02-06T08:02:31Z","event_id":"$CAXpuUdtHT00CLzb61uVTDvMWIvlw9ozQrQdopFUXKg","part_id":"","time":"2026-03-06T19:23:19.034479262Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2115","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.053684472Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2115","time":"2026-03-06T19:23:19.053860823Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:19.058606811Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5187,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915226901910:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915226901910%3Amatrix.theocloud.dev","duration":4.927437,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:19.063945828Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915736345532@s.whatsapp.net","time":"2026-03-06T19:23:19.064770176Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5188,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915736345532%3Amatrix.theocloud.dev","duration":5.086888,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915736345532","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:19.070124768Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5189,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915736345532:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915736345532%3Amatrix.theocloud.dev","duration":10.270576,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:19.080776473Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5185,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-175110245867630:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":141.71235,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PvkWtcTEtdTVwzftscgQGOqO","com.beeper.exclude_from_timeline":true,"displayname":"+4915256299774 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:19.109694499Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:19.116931827Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5192,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-73023721844742:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-73023721844742%3Amatrix.theocloud.dev","duration":6.380575,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:19.123670902Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:19.124415839Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5193,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-85641681445100%3Amatrix.theocloud.dev","duration":7.31185,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-85641681445100","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:19.131945597Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5190,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915736345532:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915736345532%3Amatrix.theocloud.dev","duration":53.391573,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915736345532 (WA)"},"time":"2026-03-06T19:23:19.134350753Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:19.134877363Z","message":""} +{"level":"debug","transaction_id":"2116","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.135667209Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2116","time":"2026-03-06T19:23:19.135856621Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5194,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-85641681445100:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-85641681445100%3Amatrix.theocloud.dev","duration":9.620764,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:19.141895946Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5186,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824999035379249_10?ts=1770636761000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":113.665746,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Heyo, habt ihr schon Betreuende für eure BA? Seid ihr einfach auf die Profs zugegangen oder gibts darüber noch mehr Infos irgendwo?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:19.149165542Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:AC4E153C1CC87869C701917357C2F314","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2026-02-09T11:32:41Z","event_id":"$B_MxuKSy9UCRc8botwDzzpHBcUEcYBHHPH47wz-uqCc","part_id":"","time":"2026-03-06T19:23:19.14927282Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2117","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.17343508Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2117","time":"2026-03-06T19:23:19.173559329Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5195,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-85641681445100:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-85641681445100%3Amatrix.theocloud.dev","duration":58.787092,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491717806781 (WA)"},"time":"2026-03-06T19:23:19.200862393Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:19.201560746Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5196,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824999149841754_19?ts=1770636859000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":92.865829,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Die Profs werden soweit ich weiß zugewiesen, aber man kann einen Wunsch angeben. Und sonst muss die BA noch jemand aus dem Unternehmen betreuen.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:19.242876811Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:251745280225436@lid:ACB0B36212946068E7DE51E8F772FA59","sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"message_ts":"2026-02-09T11:34:19Z","event_id":"$5bJu3wlfJpV-MJM6U8n1Oicq0mihI9b4n9Ib3XA4L54","part_id":"","time":"2026-03-06T19:23:19.243041429Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5191,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-175110245867630:matrix.theocloud.dev?user_id=%40whatsapp_lid-175110245867630%3Amatrix.theocloud.dev","duration":164.79883,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PvkWtcTEtdTVwzftscgQGOqO","com.beeper.exclude_from_timeline":true,"displayname":"+4915256299774 (WA)","membership":"join"},"time":"2026-03-06T19:23:19.275198526Z","message":"Request completed"} +{"level":"debug","transaction_id":"2118","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.277947655Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2118","time":"2026-03-06T19:23:19.278069041Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2119","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.292800019Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2119","time":"2026-03-06T19:23:19.293097058Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:19.294645809Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5197,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824999244149405_11?ts=1770637064000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":101.89461,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Naja es gäbe wohl Themen von der HWR die man nehmen könnte, wenn man keins vom Betrieb nehmen will/ kann. Stimmt das?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:19.346207865Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:AC7EF8A906F17F2BC7301AA452FFC7B7","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2026-02-09T11:37:44Z","event_id":"$MdLWlD-6gd3DMpqvwysmlYZjlDfedYNivadyoek8jmw","part_id":"","time":"2026-03-06T19:23:19.346410897Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:19.359222122Z","message":""} +{"level":"debug","transaction_id":"2120","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.361394285Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2120","time":"2026-03-06T19:23:19.361502121Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5198,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242661625704624:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":129.820458,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uqwUMQmMtuKNwqDZtQRUNROn","com.beeper.exclude_from_timeline":true,"displayname":"Chris (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:19.406102935Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5199,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915736345532%3Amatrix.theocloud.dev","duration":124.044786,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<44587 bytes>","time":"2026-03-06T19:23:19.426887067Z","message":"Request completed"} +{"level":"debug","transaction_id":"2121","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.430508455Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2121","time":"2026-03-06T19:23:19.430818694Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5203,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915736345532:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915736345532%3Amatrix.theocloud.dev","duration":10.639063,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:19.437912428Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5204,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/MSmwAQsQlsNKwQimaRVGvFiW?user_id=%40whatsapp_4915736345532%3Amatrix.theocloud.dev","duration":15.791672,"status_code":200,"response_length":44587,"response_mime":"image/jpeg","time":"2026-03-06T19:23:19.453838616Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5205,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915736345532:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915736345532%3Amatrix.theocloud.dev","duration":16.949586,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MSmwAQsQlsNKwQimaRVGvFiW"},"time":"2026-03-06T19:23:19.471105634Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5200,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824999347238596_6?ts=1770637659000&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":123.979693,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Müsstest du nochmal in die Richtlinie zur BA gucken, ich meine da steht drin, dass das Thema vom Betrieb sein soll","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:19.471384305Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:46858126766286@lid:AC25545175245137F3B1469F2C5C5346","sender_id":{"user_id":"lid-46858126766286","sender_login":"491702130605"},"message_ts":"2026-02-09T11:47:39Z","event_id":"$jTT5FTEMTrVcLJzmjswgzpY3yBqsyah1dV6fhkP5X4I","part_id":"","time":"2026-03-06T19:23:19.471561494Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:19.472501431Z","message":""} +{"level":"debug","transaction_id":"2122","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.489700493Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2122","time":"2026-03-06T19:23:19.489810076Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5201,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-85641681445100%3Amatrix.theocloud.dev","duration":121.319125,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61535 bytes>","time":"2026-03-06T19:23:19.51918019Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5207,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-85641681445100:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-85641681445100%3Amatrix.theocloud.dev","duration":5.001051,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:19.524561532Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5208,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/FheAeRnuJBRFmezVYrgtSJHo?user_id=%40whatsapp_lid-85641681445100%3Amatrix.theocloud.dev","duration":4.09834,"status_code":200,"response_length":61535,"response_mime":"image/jpeg","time":"2026-03-06T19:23:19.528816109Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5206,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/join?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":56.081685,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:23:19.531787476Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5209,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-85641681445100:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-85641681445100%3Amatrix.theocloud.dev","duration":12.288387,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FheAeRnuJBRFmezVYrgtSJHo"},"time":"2026-03-06T19:23:19.541369897Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:19.542290906Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5211,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-2379713908979%3Amatrix.theocloud.dev","duration":4.802979,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-2379713908979","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:19.547364802Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5212,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2379713908979:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-2379713908979%3Amatrix.theocloud.dev","duration":6.40041,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:23:19.554116379Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5202,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242661625704624:matrix.theocloud.dev?user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":154.464838,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uqwUMQmMtuKNwqDZtQRUNROn","com.beeper.exclude_from_timeline":true,"displayname":"Chris (WA)","membership":"join"},"time":"2026-03-06T19:23:19.561314666Z","message":"Request completed"} +{"level":"debug","transaction_id":"2123","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.581266628Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2123","time":"2026-03-06T19:23:19.5815446Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5213,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2379713908979:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-2379713908979%3Amatrix.theocloud.dev","duration":36.904203,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491783144400 (WA)"},"time":"2026-03-06T19:23:19.591176888Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:19.591965616Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:19.62159694Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5210,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/invite?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":100.701286,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@whatsapp_4917641870516:matrix.theocloud.dev"},"time":"2026-03-06T19:23:19.632712537Z","message":"Request completed"} +{"level":"debug","transaction_id":"2124","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.650400564Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2124","time":"2026-03-06T19:23:19.650671552Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5214,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-166700683100354:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":113.319678,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"B (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:19.675570578Z","message":"Request completed"} +{"level":"debug","transaction_id":"2125","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.700527014Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2125","time":"2026-03-06T19:23:19.700859044Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:19.763423552Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5215,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/join?user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":131.986334,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:23:19.765092082Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5216,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491702130605%3Amatrix.theocloud.dev","duration":140.198241,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<9803 bytes>","time":"2026-03-06T19:23:19.775765019Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5218,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-2379713908979:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-2379713908979%3Amatrix.theocloud.dev","duration":15.661556,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:19.779439417Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:19.780421748Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5220,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491702130605:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491702130605%3Amatrix.theocloud.dev","duration":10.984083,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:19.78709105Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5221,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-107533213667570%3Amatrix.theocloud.dev","duration":11.015862,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-107533213667570","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:19.791721449Z","message":"Request completed"} +{"level":"debug","transaction_id":"2126","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.796765872Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2126","time":"2026-03-06T19:23:19.7970011Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5222,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/QdHctZBDEARlDyXPhZretBUW?user_id=%40whatsapp_491702130605%3Amatrix.theocloud.dev","duration":12.614411,"status_code":200,"response_length":9803,"response_mime":"image/jpeg","time":"2026-03-06T19:23:19.799814205Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5223,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-107533213667570:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-107533213667570%3Amatrix.theocloud.dev","duration":11.397898,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:19.803471562Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5217,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-166700683100354:matrix.theocloud.dev?user_id=%40whatsapp_lid-166700683100354%3Amatrix.theocloud.dev","duration":141.415381,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"B (WA)","membership":"join"},"time":"2026-03-06T19:23:19.817837056Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5224,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491702130605:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491702130605%3Amatrix.theocloud.dev","duration":27.438348,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QdHctZBDEARlDyXPhZretBUW"},"time":"2026-03-06T19:23:19.827516836Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:19.828668185Z","message":""} +{"level":"debug","transaction_id":"2127","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.848168967Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2127","time":"2026-03-06T19:23:19.848520134Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5225,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-107533213667570:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-107533213667570%3Amatrix.theocloud.dev","duration":53.163608,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917676631864 (WA)"},"time":"2026-03-06T19:23:19.856791826Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:19.857666529Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5219,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824999765520425_502?ts=1770643631000&user_id=%40whatsapp_4917641870516%3Amatrix.theocloud.dev","duration":124.606807,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hab ich auch so verstanden","m.mentions":{"user_ids":["@whatsapp_lid-46858126766286:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$jTT5FTEMTrVcLJzmjswgzpY3yBqsyah1dV6fhkP5X4I"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:19.890317481Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:4917641870516@s.whatsapp.net:3A945D9D5171DE5EF9BC","sender_id":{"user_id":"4917641870516","is_from_me":true},"message_ts":"2026-02-09T13:27:11Z","event_id":"$EdRAkQneMdPTfWzOuANEo4W3PCw48RmziEhcUkDT880","part_id":"","time":"2026-03-06T19:23:19.890484125Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2128","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.903985391Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2128","time":"2026-03-06T19:23:19.904107196Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5226,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-169187452428542:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":120.244811,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/udykTnEPHBOgHLTkPsnMTXfX","com.beeper.exclude_from_timeline":true,"displayname":"Nico (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:19.939026832Z","message":"Request completed"} +{"level":"debug","transaction_id":"2129","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.95347942Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2129","time":"2026-03-06T19:23:19.953750966Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5227,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772824999891184363_4?ts=1771314802000&user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":83.076396,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old file attachment. Media will be requested from your phone automatically soon.\n\nHier ist übrigens eine Probeklausur vom 2021 Jahrgang für Datenbanken.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.file","body":"Hier ist übrigens eine Probeklausur vom 2021 Jahrgang für Datenbanken.","info":{"mimetype":"application/pdf","size":744328},"filename":"Klausur_Datenbanken_gelost.pdf"},"extra":{"info":{}},"whatsapp_media":{"key":"t/zfp4Ia5h93iONFcCMRYSAD4fkc/DwhGKaavJTGlW4=","length":744328,"type":"WhatsApp Document Keys","sha256":"I1Bb5zbExOJsceBPRD+lBnnqQX5WG8Q7Jr+gnh/FDKU=","enc_sha256":"UHkmMe0gZSk4QWgehijE3wp6WPC/7in00AZ0bPW7U8Y=","mime_type":"application/pdf"},"type_description":"file attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:19.974460647Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","sender_id":{"user_id":"lid-33994833981513","sender_login":"4915119111000"},"message_ts":"2026-02-17T07:53:22Z","event_id":"$gJh6Rk61cqSP3IoW9-Tl-fvIr__R3DGeg2Mo8WfBfhc","part_id":"","time":"2026-03-06T19:23:19.974586922Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2130","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:19.986877125Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2130","time":"2026-03-06T19:23:19.986986358Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:20.041677205Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491702130605@s.whatsapp.net","alternate_jid":"46858126766286@lid","time":"2026-03-06T19:23:20.041782737Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491729374600@s.whatsapp.net","time":"2026-03-06T19:23:20.042366967Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5228,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-169187452428542:matrix.theocloud.dev?user_id=%40whatsapp_lid-169187452428542%3Amatrix.theocloud.dev","duration":108.376525,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/udykTnEPHBOgHLTkPsnMTXfX","com.beeper.exclude_from_timeline":true,"displayname":"Nico (WA)","membership":"join"},"time":"2026-03-06T19:23:20.048001906Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5230,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491729374600%3Amatrix.theocloud.dev","duration":14.404536,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491729374600","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:20.05705569Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5232,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729374600:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491729374600%3Amatrix.theocloud.dev","duration":6.909071,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:20.064285686Z","message":"Request completed"} +{"level":"debug","transaction_id":"2131","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.071294351Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2131","time":"2026-03-06T19:23:20.071563313Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5229,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772824999975160885_7?ts=1771314857009&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":107.894125,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$gJh6Rk61cqSP3IoW9-Tl-fvIr__R3DGeg2Mo8WfBfhc","key":"👍️"}},"time":"2026-03-06T19:23:20.083152301Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","target_part_id":"","reaction_sender_id":{"user_id":"lid-46858126766286","sender_login":"491702130605"},"reaction_ts":"2026-02-17T07:54:17.009Z","event_id":"$TpuR6lQDXhCB9fdF3-6Ewv2pkRNA9JJNIYgDLALRcf0","time":"2026-03-06T19:23:20.083260416Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2132","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.097859323Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2132","time":"2026-03-06T19:23:20.097940899Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5233,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729374600:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491729374600%3Amatrix.theocloud.dev","duration":36.951765,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Luis (WA)"},"time":"2026-03-06T19:23:20.101431682Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:20.101925816Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5234,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825000083724518_6?ts=1771323045708&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":67.916098,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$gJh6Rk61cqSP3IoW9-Tl-fvIr__R3DGeg2Mo8WfBfhc","key":"❤️"}},"time":"2026-03-06T19:23:20.151769474Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","target_part_id":"","reaction_sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"reaction_ts":"2026-02-17T10:10:45.708Z","event_id":"$vQzCq8BhoK-SxMp2qftSt6HfkMC5LapDer-5gm9kJ2Y","time":"2026-03-06T19:23:20.151917609Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:20.175157534Z","message":""} +{"level":"debug","transaction_id":"2133","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.175599705Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2133","time":"2026-03-06T19:23:20.175706633Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5231,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-161684144570509:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":151.718224,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Pablo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:20.200706441Z","message":"Request completed"} +{"level":"debug","transaction_id":"2134","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.226703945Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2134","time":"2026-03-06T19:23:20.227014743Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:20.250864809Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5235,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825000152546818_20?ts=1771314866000&user_id=%40whatsapp_lid-251745280225436%3Amatrix.theocloud.dev","duration":116.160649,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$gJh6Rk61cqSP3IoW9-Tl-fvIr__R3DGeg2Mo8WfBfhc","key":"💓"}},"time":"2026-03-06T19:23:20.268852669Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","target_part_id":"","reaction_sender_id":{"user_id":"lid-251745280225436","sender_login":"4917655091547"},"reaction_ts":"2026-02-17T07:54:26Z","event_id":"$Q7cIocTk2v0D9ruUGjdnuJtahtdI_E69-S3JuCtlMxg","time":"2026-03-06T19:23:20.269050043Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2135","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.288574711Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2135","time":"2026-03-06T19:23:20.288675493Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5236,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-107533213667570%3Amatrix.theocloud.dev","duration":132.865997,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49590 bytes>","time":"2026-03-06T19:23:20.320412141Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5239,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-107533213667570:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-107533213667570%3Amatrix.theocloud.dev","duration":8.807451,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:20.329633337Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5240,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/mbSIZjibeLxFkMxJlaysPEuX?user_id=%40whatsapp_lid-107533213667570%3Amatrix.theocloud.dev","duration":15.264572,"status_code":200,"response_length":49590,"response_mime":"image/jpeg","time":"2026-03-06T19:23:20.345053937Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5241,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-107533213667570:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-107533213667570%3Amatrix.theocloud.dev","duration":21.963348,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mbSIZjibeLxFkMxJlaysPEuX"},"time":"2026-03-06T19:23:20.367379208Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:20.36862638Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5237,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-161684144570509:matrix.theocloud.dev?user_id=%40whatsapp_lid-161684144570509%3Amatrix.theocloud.dev","duration":173.865746,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Pablo (WA)","membership":"join"},"time":"2026-03-06T19:23:20.375253917Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:20.375852674Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5242,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-15603716907169%3Amatrix.theocloud.dev","duration":11.078929,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-15603716907169","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:20.380039156Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5243,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491739504364%3Amatrix.theocloud.dev","duration":13.630615,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491739504364","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:20.389674586Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5244,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-15603716907169:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-15603716907169%3Amatrix.theocloud.dev","duration":9.775465,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:20.390101322Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5245,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739504364:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739504364%3Amatrix.theocloud.dev","duration":4.59862,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:20.394602582Z","message":"Request completed"} +{"level":"debug","transaction_id":"2136","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.40076937Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2136","time":"2026-03-06T19:23:20.401021291Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5238,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825000269710471_4?ts=1771314957689&user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":152.696504,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$gJh6Rk61cqSP3IoW9-Tl-fvIr__R3DGeg2Mo8WfBfhc","key":"❤️"}},"time":"2026-03-06T19:23:20.422558252Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","target_part_id":"","reaction_sender_id":{"user_id":"lid-16114767646828","sender_login":"4915901353554"},"reaction_ts":"2026-02-17T07:55:57.689Z","event_id":"$-HH4ucsACJZicI0VE20xFiXsgdp17xoc6ll2O8zIBlg","time":"2026-03-06T19:23:20.422655123Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5246,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-15603716907169:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-15603716907169%3Amatrix.theocloud.dev","duration":44.524336,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915731849652 (WA)"},"time":"2026-03-06T19:23:20.434768765Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:20.435351529Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5247,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739504364:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739504364%3Amatrix.theocloud.dev","duration":46.90393,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tuan (WA)"},"time":"2026-03-06T19:23:20.441679931Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:20.44242836Z","message":""} +{"level":"debug","transaction_id":"2137","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.443080826Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2137","time":"2026-03-06T19:23:20.443156744Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2138","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.483545165Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2138","time":"2026-03-06T19:23:20.483892351Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491628947581@s.whatsapp.net","portal_mxid":"!xRkqecNmTFOMvkWiXu:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$ngo1epbhdzRIGaxU5mpk2bwRhjVD01RrzxCcfvrXUiU","event_type":"m.room.member","event_id":"$ngo1epbhdzRIGaxU5mpk2bwRhjVD01RrzxCcfvrXUiU","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:20.48454775Z","message":"Sending implicit read receipt for event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5248,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491729374600%3Amatrix.theocloud.dev","duration":103.853405,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<44693 bytes>","time":"2026-03-06T19:23:20.507999505Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5250,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729374600:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491729374600%3Amatrix.theocloud.dev","duration":4.938402,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:20.513249544Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5251,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YmIlijJoHktQNkdFYThVRsLW?user_id=%40whatsapp_491729374600%3Amatrix.theocloud.dev","duration":4.028917,"status_code":200,"response_length":44693,"response_mime":"image/jpeg","time":"2026-03-06T19:23:20.517407739Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5249,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825000423082558_1?ts=1771325058000&user_id=%40whatsapp_lid-151054134034515%3Amatrix.theocloud.dev","duration":108.103722,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old file attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.file","body":"","info":{"mimetype":"application/pdf","size":68707},"filename":"IT23B_Gruppeneinteilung.pdf"},"extra":{"info":{}},"whatsapp_media":{"key":"Ac6EGJzm/L7auctrLBkQ99lSeGixo+n/gDf0EiqaH5o=","length":68707,"type":"WhatsApp Document Keys","sha256":"3lK7/fiRMfz+/JNwy9QHh0o58rfGOVd64Sycw/hCNHc=","enc_sha256":"64vi1eddDI1s37tPBkLPe2MBQMQZ4ECgQQ+Hxtezq04=","mime_type":"application/pdf"},"type_description":"file attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:20.53142975Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:151054134034515@lid:3EB0C9A4C15462039D7170","sender_id":{"user_id":"lid-151054134034515","sender_login":"4915238583118"},"message_ts":"2026-02-17T10:44:18Z","event_id":"$tsyhHNlDvPbDmbO3YQIntjt66o96iY0ubPAAC41gm9k","part_id":"","time":"2026-03-06T19:23:20.531578653Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5252,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729374600:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491729374600%3Amatrix.theocloud.dev","duration":25.004767,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YmIlijJoHktQNkdFYThVRsLW"},"time":"2026-03-06T19:23:20.542634744Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491753774472@s.whatsapp.net","alternate_jid":"127753970032737@lid","time":"2026-03-06T19:23:20.543218136Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5254,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-8310828876018%3Amatrix.theocloud.dev","duration":12.835601,"status_code":200,"response_length":99,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-8310828876018","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:20.556502613Z","message":"Request completed"} +{"level":"debug","transaction_id":"2139","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.55919042Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2139","time":"2026-03-06T19:23:20.559312644Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5255,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-8310828876018:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-8310828876018%3Amatrix.theocloud.dev","duration":7.451605,"status_code":200,"response_length":44,"response_mime":"application/json","time":"2026-03-06T19:23:20.564350432Z","message":"Request completed"} +{"level":"debug","transaction_id":"2140","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:20.601312394Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2140","time":"2026-03-06T19:23:20.601442091Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:20.603459204Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5256,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-8310828876018:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-8310828876018%3Amatrix.theocloud.dev","duration":39.293364,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917658289477 (WA)"},"time":"2026-03-06T19:23:20.603776008Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917658289477@s.whatsapp.net","alternate_jid":"8310828876018@lid","time":"2026-03-06T19:23:20.604154483Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"145066932846614@lid","alternate_jid":"380668433334@s.whatsapp.net","time":"2026-03-06T19:23:20.604233195Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5257,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491749085513%3Amatrix.theocloud.dev","duration":13.264711,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491749085513","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:20.6178856Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5259,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749085513:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491749085513%3Amatrix.theocloud.dev","duration":7.186903,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:20.625419269Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5260,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749085513:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491749085513%3Amatrix.theocloud.dev","duration":39.91964,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"LENA (WA)"},"time":"2026-03-06T19:23:20.665493889Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5253,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825000532352225_5?ts=1771445315015&user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":133.259837,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$tsyhHNlDvPbDmbO3YQIntjt66o96iY0ubPAAC41gm9k","key":"👍🏻"}},"time":"2026-03-06T19:23:20.665739245Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:151054134034515@lid:3EB0C9A4C15462039D7170","target_part_id":"","reaction_sender_id":{"user_id":"lid-16114767646828","sender_login":"4915901353554"},"reaction_ts":"2026-02-18T20:08:35.015Z","event_id":"$KmsFsUu9onWsNU5dC-NKd9nicsR83vVN_Rs6FJg0kfg","time":"2026-03-06T19:23:20.665877462Z","message":"Sent reaction to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"256676053647524@lid","alternate_jid":"491749085513@s.whatsapp.net","time":"2026-03-06T19:23:20.666088805Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:20.667111016Z","message":""} +{"level":"debug","transaction_id":"2141","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.687677939Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2141","time":"2026-03-06T19:23:20.687780048Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2142","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:20.729123002Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2142","time":"2026-03-06T19:23:20.729214565Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5258,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-15603716907169%3Amatrix.theocloud.dev","duration":131.357685,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<52645 bytes>","time":"2026-03-06T19:23:20.747901755Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5261,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825000668909662_12?ts=1771325314266&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":91.753033,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$tsyhHNlDvPbDmbO3YQIntjt66o96iY0ubPAAC41gm9k","key":"❤️"}},"time":"2026-03-06T19:23:20.760783801Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:151054134034515@lid:3EB0C9A4C15462039D7170","target_part_id":"","reaction_sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"reaction_ts":"2026-02-17T10:48:34.266Z","event_id":"$kztmmzjQiYgloNg1gaiJ6i1bwQtsvyKIZDxUHNHmTRg","time":"2026-03-06T19:23:20.760905396Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5262,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-15603716907169:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-15603716907169%3Amatrix.theocloud.dev","duration":13.195708,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:20.761436197Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5263,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/MmlzaqCCiaoDAMLmgdSLUHrK?user_id=%40whatsapp_lid-15603716907169%3Amatrix.theocloud.dev","duration":11.701084,"status_code":200,"response_length":52645,"response_mime":"image/jpeg","time":"2026-03-06T19:23:20.773295054Z","message":"Request completed"} +{"level":"debug","transaction_id":"2143","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.779212505Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2143","time":"2026-03-06T19:23:20.779356939Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5265,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-15603716907169:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-15603716907169%3Amatrix.theocloud.dev","duration":9.819953,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MmlzaqCCiaoDAMLmgdSLUHrK"},"time":"2026-03-06T19:23:20.78343747Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:20.784638965Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5266,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-136589153947794%3Amatrix.theocloud.dev","duration":5.878269,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-136589153947794","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:20.790813784Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5267,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-136589153947794:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-136589153947794%3Amatrix.theocloud.dev","duration":2.664411,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:20.793891451Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5268,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-136589153947794:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-136589153947794%3Amatrix.theocloud.dev","duration":12.591851,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491630461857 (WA)"},"time":"2026-03-06T19:23:20.806680676Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:20.807230754Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5264,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825000761548853_9?ts=1771496933000&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":65.039856,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1662,"mimetype":"image/jpeg","size":180838,"w":2048},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/UfTrwUtpLdVUddRwJFobqMMf"},"time":"2026-03-06T19:23:20.826926116Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:102147257532455@lid:3A58C28F74F9DEAA3D17","sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"message_ts":"2026-02-19T10:28:53Z","event_id":"$G1GVjGg6CUSik36WFKyNNFgIYj0qijQI61dBXoVxjno","part_id":"","time":"2026-03-06T19:23:20.8271237Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:20.831441135Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5270,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915157953288:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915157953288%3Amatrix.theocloud.dev","duration":6.089891,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:20.837866199Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:20.838807113Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:20.841067556Z","message":""} +{"level":"debug","transaction_id":"2144","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.841363827Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2144","time":"2026-03-06T19:23:20.841498832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5269,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825000828288318_13?ts=1771497332000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":47.960922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ist auch in den folien b_modellierung","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:20.876453529Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:ACAE7F2ED5B4CF057A36C9F99316A177","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2026-02-19T10:35:32Z","event_id":"$TTQBK6PEuYDOdpLwD5o8kWYZrk6Xc93OQL0zgzmPTrU","part_id":"","time":"2026-03-06T19:23:20.876613817Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2145","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.888550618Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2145","time":"2026-03-06T19:23:20.888641692Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5272,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825000877420913_10?ts=1771497346820&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":44.766689,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$TTQBK6PEuYDOdpLwD5o8kWYZrk6Xc93OQL0zgzmPTrU","key":"😡"}},"time":"2026-03-06T19:23:20.922318277Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:198041059483854@lid:ACAE7F2ED5B4CF057A36C9F99316A177","target_part_id":"","reaction_sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"reaction_ts":"2026-02-19T10:35:46.82Z","event_id":"$GgOIxOxjyma-r5fYtj2mN1NI90MP8rEoq3rJ_4uNzy4","time":"2026-03-06T19:23:20.922477447Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2146","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.935700742Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2146","time":"2026-03-06T19:23:20.93581221Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5271,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491739504364%3Amatrix.theocloud.dev","duration":101.847815,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<78057 bytes>","time":"2026-03-06T19:23:20.958513651Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:20.961115832Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5274,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739504364:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491739504364%3Amatrix.theocloud.dev","duration":7.367864,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:20.966165493Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5273,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825000923123697_14?ts=1771497352000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":50.934873,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Er hat alle Folien für alle VL schon online :)","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:20.974194902Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:AC266419D232291E512BE0DE22DC89E9","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2026-02-19T10:35:52Z","event_id":"$3nkGBlAyXc9Um-Xh0trQ8_8R3X-hx9Klq1xXwIfIyZw","part_id":"","time":"2026-03-06T19:23:20.97430672Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5275,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-136589153947794:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-136589153947794%3Amatrix.theocloud.dev","duration":13.325195,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:20.974751545Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:20.97764399Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5276,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/tIuuXqXqCSLOirGxEpNsDMzT?user_id=%40whatsapp_491739504364%3Amatrix.theocloud.dev","duration":14.509089,"status_code":200,"response_length":78057,"response_mime":"image/jpeg","time":"2026-03-06T19:23:20.980797296Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5278,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-175909109764250%3Amatrix.theocloud.dev","duration":11.528644,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-175909109764250","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:20.989455285Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5279,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739504364:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491739504364%3Amatrix.theocloud.dev","duration":12.892172,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tIuuXqXqCSLOirGxEpNsDMzT"},"time":"2026-03-06T19:23:20.994018425Z","message":"Request completed"} +{"level":"debug","transaction_id":"2147","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:20.996231585Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2147","time":"2026-03-06T19:23:20.996308342Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5280,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-175909109764250:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-175909109764250%3Amatrix.theocloud.dev","duration":8.358505,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:20.99812368Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:21.003093163Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915157953288@s.whatsapp.net","alternate_jid":"165566878843022@lid","time":"2026-03-06T19:23:21.003178091Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4916095188802@s.whatsapp.net","time":"2026-03-06T19:23:21.003601754Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5283,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4916095188802%3Amatrix.theocloud.dev","duration":9.819954,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4916095188802","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:21.013667133Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5282,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-175909109764250:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-175909109764250%3Amatrix.theocloud.dev","duration":20.927798,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+380952823600 (WA)"},"time":"2026-03-06T19:23:21.019180058Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5284,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916095188802:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4916095188802%3Amatrix.theocloud.dev","duration":5.658266,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:21.019714351Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:21.019799628Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5285,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916095188802:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4916095188802%3Amatrix.theocloud.dev","duration":29.24356,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4916095188802 (WA)"},"time":"2026-03-06T19:23:21.049105278Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:21.050018604Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5277,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825000974935160_11?ts=1771497359827&user_id=%40whatsapp_lid-102147257532455%3Amatrix.theocloud.dev","duration":89.540851,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$3nkGBlAyXc9Um-Xh0trQ8_8R3X-hx9Klq1xXwIfIyZw","key":"😡"}},"time":"2026-03-06T19:23:21.064656832Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:198041059483854@lid:AC266419D232291E512BE0DE22DC89E9","target_part_id":"","reaction_sender_id":{"user_id":"lid-102147257532455","sender_login":"491637362958"},"reaction_ts":"2026-02-19T10:35:59.827Z","event_id":"$Ldeg_cjkjRYVjlDGzxE2yUxG1PL5V2l8rKY0yCJoy0s","time":"2026-03-06T19:23:21.064760757Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2148","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.101125708Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2148","time":"2026-03-06T19:23:21.101229633Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5281,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-165339312693343:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":147.128682,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ShjhDtVYxzklMObAryvcXfnI","com.beeper.exclude_from_timeline":true,"displayname":"Mahmoud (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:21.141987729Z","message":"Request completed"} +{"level":"debug","transaction_id":"2149","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.157431936Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2149","time":"2026-03-06T19:23:21.157705368Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:21.183871681Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5286,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001065218852_8?ts=1771581664000&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":122.680838,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hi, hat jemand die Mail von Kirchner? Bzw. den Ort, an den wir unseren exercism Account hinschicken sollen?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:21.188030295Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:46858126766286@lid:ACB40ADC6D36BABE67341D4BE83FEDE4","sender_id":{"user_id":"lid-46858126766286","sender_login":"491702130605"},"message_ts":"2026-02-20T10:01:04Z","event_id":"$N4Pv0hHx6SpQbx6qh6A0w6OBQqCMzARN_uJP23E_h2I","part_id":"","time":"2026-03-06T19:23:21.188151821Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5288,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-175909109764250:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-175909109764250%3Amatrix.theocloud.dev","duration":12.850407,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:21.19711516Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:21.19823033Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:21.201177881Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5290,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-183245031354381%3Amatrix.theocloud.dev","duration":11.53458,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-183245031354381","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:21.210117264Z","message":"Request completed"} +{"level":"debug","transaction_id":"2150","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.213891677Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2150","time":"2026-03-06T19:23:21.214021443Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5291,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183245031354381:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-183245031354381%3Amatrix.theocloud.dev","duration":20.486954,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:21.231052186Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5293,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183245031354381:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-183245031354381%3Amatrix.theocloud.dev","duration":38.297555,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915735591152 (WA)"},"time":"2026-03-06T19:23:21.269511216Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:21.270087065Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5287,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-165339312693343:matrix.theocloud.dev?user_id=%40whatsapp_lid-165339312693343%3Amatrix.theocloud.dev","duration":163.262372,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ShjhDtVYxzklMObAryvcXfnI","com.beeper.exclude_from_timeline":true,"displayname":"Mahmoud (WA)","membership":"join"},"time":"2026-03-06T19:23:21.305977158Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5289,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001189417780_4?ts=1771581692000&user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":142.116387,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Steht glaube in seinen Folien","m.mentions":{"user_ids":["@whatsapp_lid-46858126766286:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$N4Pv0hHx6SpQbx6qh6A0w6OBQqCMzARN_uJP23E_h2I"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:21.331669871Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:143632363450509@lid:3AFB50B449B894189763","sender_id":{"user_id":"lid-143632363450509","sender_login":"4915253705809"},"message_ts":"2026-02-20T10:01:32Z","event_id":"$f2qF_75yqZMsfWcozAsxghIM3PgD_VL_WeDHJEjHHec","part_id":"","time":"2026-03-06T19:23:21.331762202Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2151","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.334177485Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2151","time":"2026-03-06T19:23:21.334254871Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5292,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4916095188802%3Amatrix.theocloud.dev","duration":123.324713,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<51288 bytes>","time":"2026-03-06T19:23:21.336241532Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5296,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916095188802:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4916095188802%3Amatrix.theocloud.dev","duration":8.371776,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:21.344882619Z","message":"Request completed"} +{"level":"debug","transaction_id":"2152","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.349293364Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2152","time":"2026-03-06T19:23:21.349554504Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5297,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/uWDwHVlvFjQnrnAFeKfthAcd?user_id=%40whatsapp_4916095188802%3Amatrix.theocloud.dev","duration":8.486177,"status_code":200,"response_length":51288,"response_mime":"image/jpeg","time":"2026-03-06T19:23:21.35347775Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5298,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916095188802:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4916095188802%3Amatrix.theocloud.dev","duration":6.024798,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uWDwHVlvFjQnrnAFeKfthAcd"},"time":"2026-03-06T19:23:21.359795257Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491735440250@s.whatsapp.net","alternate_jid":"25529302425761@lid","time":"2026-03-06T19:23:21.360448072Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917634233125@s.whatsapp.net","time":"2026-03-06T19:23:21.36075901Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5299,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917634233125%3Amatrix.theocloud.dev","duration":6.216864,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917634233125","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:21.367177369Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5300,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634233125:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634233125%3Amatrix.theocloud.dev","duration":4.532549,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:21.377668506Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5295,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001332303619_9?ts=1771581730000&user_id=%40whatsapp_lid-46858126766286%3Amatrix.theocloud.dev","duration":70.288218,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bruh, erste Seite lol. Thx","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:21.402747166Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:46858126766286@lid:ACE69E7A1329D96C45A289AD36CBF4BF","sender_id":{"user_id":"lid-46858126766286","sender_login":"491702130605"},"message_ts":"2026-02-20T10:02:10Z","event_id":"$bWccCW-0-4xQOa9OG-FkbS4KEN_AOCyDHpvymXpU3rU","part_id":"","time":"2026-03-06T19:23:21.402899492Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5301,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634233125:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634233125%3Amatrix.theocloud.dev","duration":34.601365,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917634233125 (WA)"},"time":"2026-03-06T19:23:21.412461938Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:21.413042466Z","message":""} +{"level":"debug","transaction_id":"2153","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.41770143Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2153","time":"2026-03-06T19:23:21.417824911Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5294,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251037097177288:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":138.960777,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Lucas (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:21.445688529Z","message":"Request completed"} +{"level":"debug","transaction_id":"2154","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.461428588Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2154","time":"2026-03-06T19:23:21.461682883Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5302,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825001404519761_5?ts=1771581752963&user_id=%40whatsapp_lid-143632363450509%3Amatrix.theocloud.dev","duration":81.326779,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$bWccCW-0-4xQOa9OG-FkbS4KEN_AOCyDHpvymXpU3rU","key":"👍🏼"}},"time":"2026-03-06T19:23:21.485985875Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:46858126766286@lid:ACE69E7A1329D96C45A289AD36CBF4BF","target_part_id":"","reaction_sender_id":{"user_id":"lid-143632363450509","sender_login":"4915253705809"},"reaction_ts":"2026-02-20T10:02:32.963Z","event_id":"$HYFV6oHOHHLQvmagyIZ-D3uRfkOF4tbMY7gRiMPB6Ts","time":"2026-03-06T19:23:21.486125769Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2155","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.503044345Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2155","time":"2026-03-06T19:23:21.503126969Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5303,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251037097177288:matrix.theocloud.dev?user_id=%40whatsapp_lid-251037097177288%3Amatrix.theocloud.dev","duration":91.287465,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Lucas (WA)","membership":"join"},"time":"2026-03-06T19:23:21.537574122Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5304,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001486738146_15?ts=1771692705000&user_id=%40whatsapp_lid-198041059483854%3Amatrix.theocloud.dev","duration":82.865332,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Was macht ihr am Montag? (Damit nicht der ganze Kurs zuhause bleibt)\n\n1. Ich fahre in die HWR\n\n2. Ich bleibe zuhause und mach online\n\n3. Weiß noch nicht/ bin flexibel\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Ich fahre in die HWR","Ich bleibe zuhause und mach online","Weiß noch nicht/ bin flexibel"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWas macht ihr am Montag? (Damit nicht der ganze Kurs zuhause bleibt)\u003c/p\u003e\u003col\u003e\u003cli\u003eIch fahre in die HWR\u003c/li\u003e\u003cli\u003eIch bleibe zuhause und mach online\u003c/li\u003e\u003cli\u003eWeiß noch nicht/ bin flexibel\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eWas macht ihr am Montag? (Damit nicht der ganze Kurs zuhause bleibt)\u003c/p\u003e\u003col\u003e\u003cli\u003eIch fahre in die HWR\u003c/li\u003e\u003cli\u003eIch bleibe zuhause und mach online\u003c/li\u003e\u003cli\u003eWeiß noch nicht/ bin flexibel\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Was macht ihr am Montag? (Damit nicht der ganze Kurs zuhause bleibt)\n\n1. Ich fahre in die HWR\n\n2. Ich bleibe zuhause und mach online\n\n3. Weiß noch nicht/ bin flexibel\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"db746dddcd5e379ed3dc29e052049ceed866d4ea27a488303cff7ab22c58cdf0","org.matrix.msc1767.text":"Ich fahre in die HWR"},{"id":"8bf8f93fa830b151c6e28ed344004fcf00c11af68c6a14ef47a35fb6a1ba3b05","org.matrix.msc1767.text":"Ich bleibe zuhause und mach online"},{"id":"c471c78051bb303df0b36967cf8e87b3a918ac0e5ef8059967c85062ab051083","org.matrix.msc1767.text":"Weiß noch nicht/ bin flexibel"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":3,"question":{"org.matrix.msc1767.text":"Was macht ihr am Montag? (Damit nicht der ganze Kurs zuhause bleibt)"}}},"time":"2026-03-06T19:23:21.570110882Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:198041059483854@lid:AC4BBBF67D0DC4BC9245582A44ADBF4D","sender_id":{"user_id":"lid-198041059483854","sender_login":"491605556877"},"message_ts":"2026-02-21T16:51:45Z","event_id":"$XGBZDpVObbqdyxlyTQMhUw_M12PegBuTHNYwK_CDkpg","part_id":"","time":"2026-03-06T19:23:21.570424194Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:21.570889343Z","message":""} +{"level":"debug","transaction_id":"2156","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.571924754Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2156","time":"2026-03-06T19:23:21.572190434Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2157","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.590071645Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2157","time":"2026-03-06T19:23:21.590188142Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5306,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001571532730_7?ts=1772103568000&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":53.173456,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"Sent an album:","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:21.624852435Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:116685805768767@lid:3AC21DA0235FAB11EDA9","sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"message_ts":"2026-02-26T10:59:28Z","event_id":"$20P5G4ZdtA7CLOSxlf0Sv7cCUXNqIkKJpHrUTvwbPwM","part_id":"","time":"2026-03-06T19:23:21.625033745Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:21.642871375Z","message":""} +{"level":"debug","transaction_id":"2158","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.644989619Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2158","time":"2026-03-06T19:23:21.6451263Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5305,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25696839700643:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":125.709964,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JhBKMZmGhSHRJjkUryvmpKGs","com.beeper.exclude_from_timeline":true,"displayname":"Vivian (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:21.664096142Z","message":"Request completed"} +{"level":"debug","transaction_id":"2159","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.682581069Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2159","time":"2026-03-06T19:23:21.682920781Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5307,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825001625974659_6?ts=1772103611854&user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":100.634447,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$20P5G4ZdtA7CLOSxlf0Sv7cCUXNqIkKJpHrUTvwbPwM","key":"❤️"}},"time":"2026-03-06T19:23:21.726737686Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363173737697025@g.us:116685805768767@lid:3AC21DA0235FAB11EDA9","target_part_id":"","reaction_sender_id":{"user_id":"lid-16114767646828","sender_login":"4915901353554"},"reaction_ts":"2026-02-26T11:00:11.854Z","event_id":"$9zUb6eOW17AclbCSU392uscy6tjzehQiNx6qx28Hk5k","time":"2026-03-06T19:23:21.726872551Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2160","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.741694394Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2160","time":"2026-03-06T19:23:21.741795107Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5308,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25696839700643:matrix.theocloud.dev?user_id=%40whatsapp_lid-25696839700643%3Amatrix.theocloud.dev","duration":119.951893,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JhBKMZmGhSHRJjkUryvmpKGs","com.beeper.exclude_from_timeline":true,"displayname":"Vivian (WA)","membership":"join"},"time":"2026-03-06T19:23:21.784692469Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:21.785791715Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5309,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917634233125%3Amatrix.theocloud.dev","duration":121.934853,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<32192 bytes>","time":"2026-03-06T19:23:21.788412824Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5312,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491713305222%3Amatrix.theocloud.dev","duration":11.835111,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491713305222","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:21.797925542Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5313,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634233125:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917634233125%3Amatrix.theocloud.dev","duration":9.692422,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:21.798480089Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5314,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491713305222:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491713305222%3Amatrix.theocloud.dev","duration":7.451745,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:21.805757856Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5315,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/dRYScivSlkiiTRapzvByHDXd?user_id=%40whatsapp_4917634233125%3Amatrix.theocloud.dev","duration":8.395591,"status_code":200,"response_length":32192,"response_mime":"image/jpeg","time":"2026-03-06T19:23:21.806992806Z","message":"Request completed"} +{"level":"debug","transaction_id":"2161","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.8110542Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2161","time":"2026-03-06T19:23:21.811398033Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5317,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634233125:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917634233125%3Amatrix.theocloud.dev","duration":15.065662,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dRYScivSlkiiTRapzvByHDXd"},"time":"2026-03-06T19:23:21.822266598Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5318,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917661014451%3Amatrix.theocloud.dev","duration":5.831336,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917661014451","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:21.829277359Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5310,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001727466629_8?ts=1772103569000&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":109.049595,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1600,"mimetype":"image/jpeg","size":126019,"w":1200},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/AoumAuSErCWtTJjveGKLEOBS"},"time":"2026-03-06T19:23:21.836711363Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:116685805768767@lid:3A225065FC2E18AD8FF3","sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"message_ts":"2026-02-26T10:59:29Z","event_id":"$rdKuVIY3HhfFN_L8GFwyu5t-Y6vIgj7IQZYSjxL23Qk","part_id":"","time":"2026-03-06T19:23:21.836831701Z","message":"Sent message part to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5319,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661014451:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917661014451%3Amatrix.theocloud.dev","duration":10.090663,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:21.839667923Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5316,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491713305222:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491713305222%3Amatrix.theocloud.dev","duration":40.382834,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Louis (WA)"},"time":"2026-03-06T19:23:21.846360134Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:21.847035298Z","message":""} +{"level":"debug","transaction_id":"2162","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.850581396Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2162","time":"2026-03-06T19:23:21.850692865Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5321,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661014451:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917661014451%3Amatrix.theocloud.dev","duration":18.056585,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917661014451 (WA)"},"time":"2026-03-06T19:23:21.857874739Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:21.858539008Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5320,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001837578524_9?ts=1772103570000&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":42.75195,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1600,"mimetype":"image/jpeg","size":108328,"w":1200},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/iZvyZmOPKeOKAfyngxpuBhTy"},"time":"2026-03-06T19:23:21.880661946Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:116685805768767@lid:3A5606A3B2067249CAF8","sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"message_ts":"2026-02-26T10:59:30Z","event_id":"$mcGLX8raxisl0YYfIfaBsbHfyz0wnxJRd8SUVGObPi8","part_id":"","time":"2026-03-06T19:23:21.880827751Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5311,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-183245031354381%3Amatrix.theocloud.dev","duration":133.443731,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<67585 bytes>","time":"2026-03-06T19:23:21.892877766Z","message":"Request completed"} +{"level":"debug","transaction_id":"2163","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.894362053Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2163","time":"2026-03-06T19:23:21.894468213Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5323,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183245031354381:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-183245031354381%3Amatrix.theocloud.dev","duration":4.39077,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:21.897550978Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5324,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/EkecugxrVYVarUjWxAcbYQMV?user_id=%40whatsapp_lid-183245031354381%3Amatrix.theocloud.dev","duration":2.973183,"status_code":200,"response_length":67585,"response_mime":"image/jpeg","time":"2026-03-06T19:23:21.900638004Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5325,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-183245031354381:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-183245031354381%3Amatrix.theocloud.dev","duration":5.741588,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EkecugxrVYVarUjWxAcbYQMV"},"time":"2026-03-06T19:23:21.906625855Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:21.907834265Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5326,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-139238746132555%3Amatrix.theocloud.dev","duration":4.479888,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-139238746132555","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:21.912572291Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5327,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-139238746132555:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-139238746132555%3Amatrix.theocloud.dev","duration":4.523121,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:21.917498471Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5322,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001881744919_10?ts=1772103572000&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":54.903517,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":4032,"mimetype":"image/jpeg","size":1005104,"w":3024},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ZfVGbriliTYowYHPAUHNvnLN"},"time":"2026-03-06T19:23:21.936965449Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:116685805768767@lid:3A00779B2BE21547F836","sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"message_ts":"2026-02-26T10:59:32Z","event_id":"$RnkkXUft8t56KeDABf9XuHWwqpYnQ8_qTjgziGf4ep8","part_id":"","time":"2026-03-06T19:23:21.937165896Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2164","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.950215843Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2164","time":"2026-03-06T19:23:21.950324028Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5328,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-139238746132555:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-139238746132555%3Amatrix.theocloud.dev","duration":36.000794,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491757493106 (WA)"},"time":"2026-03-06T19:23:21.953711794Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:21.95442188Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5329,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001938083483_11?ts=1772103573000&user_id=%40whatsapp_lid-116685805768767%3Amatrix.theocloud.dev","duration":37.031943,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":4032,"mimetype":"image/jpeg","size":945179,"w":3024},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/OTfzwvpjIXtIRyvqNTemwKQg"},"time":"2026-03-06T19:23:21.975324465Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:116685805768767@lid:3A8443072C25D9101893","sender_id":{"user_id":"lid-116685805768767","sender_login":"491703010843"},"message_ts":"2026-02-26T10:59:33Z","event_id":"$F9nh9mJnYF1gis4tS3PHPBN4i7w7Z331UbenHw9yqEg","part_id":"","time":"2026-03-06T19:23:21.975451508Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2165","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:21.985826917Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2165","time":"2026-03-06T19:23:21.985950607Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.008084929Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","req_id":5330,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825001976076666_7?ts=1772104841000&user_id=%40whatsapp_lid-16114767646828%3Amatrix.theocloud.dev","duration":36.56442,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":641077,"w":1537},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/RITtWNijBSpJEABvWlRkHeac"},"time":"2026-03-06T19:23:22.01282065Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","message_id":"120363173737697025@g.us:16114767646828@lid:AC4013D664BE2C0E7DAFA4041E230DCE","sender_id":{"user_id":"lid-16114767646828","sender_login":"4915901353554"},"message_ts":"2026-02-26T11:20:41Z","event_id":"$r1CEpHXDupmsWx7zzsWMdEPS0g6HKiCmR07Mhs5OWNM","part_id":"","time":"2026-03-06T19:23:22.012926531Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:23:22.013816041Z","message":"Backfill finished"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","time":"2026-03-06T19:23:22.013863674Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","started_at":"2026-03-06T19:22:00.732042164Z","duration":"1m21.281962311s","time":"2026-03-06T19:23:22.014019212Z","message":"Event that took long finished handling"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.015823097Z","message":"2a4df3ae23b1b00d8596c5579b5ca442341ad621b088679971092408f6c25c7a8889fd5db055f9f09b3d0c832850b956d4934fd9"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363173737697025@g.us:151054134034515@lid:3EB0C9A4C15462039D7170","time":"2026-03-06T19:23:22.016012718Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.016567615Z","message":"6b182e4144ec722b6a0a8e783e9153936cb9b9f29bb91825fc8a80c6eea110f8828d00793cb3358109d37be90639c1705127495e"} +{"level":"debug","portal_id":"120363173737697025@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363173737697025@g.us","latest_message_ts":"2026-02-26T11:20:41Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","time":"2026-03-06T19:23:22.016694727Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5331,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491713305222:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491713305222%3Amatrix.theocloud.dev","duration":10.014116,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:22.018439875Z","message":"Request completed"} +{"level":"debug","transaction_id":"2166","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.026094371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2166","time":"2026-03-06T19:23:22.026200252Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.035104225Z","message":""} +{"level":"debug","transaction_id":"2167","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:22.052643558Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2167","time":"2026-03-06T19:23:22.052770741Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.05984841Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.061360075Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5332,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.60635,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:22.08983586Z","message":"Request completed"} +{"level":"debug","transaction_id":"2168","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.102640031Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2168","time":"2026-03-06T19:23:22.102949153Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.120638577Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5333,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":62.062482,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:23:22.152430051Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5335,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":9.236422,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:23:22.162178486Z","message":"Request completed"} +{"level":"debug","transaction_id":"2169","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.165727099Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2169","time":"2026-03-06T19:23:22.165951572Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5334,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917661014451%3Amatrix.theocloud.dev","duration":91.446705,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<79168 bytes>","time":"2026-03-06T19:23:22.187391243Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5337,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661014451:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917661014451%3Amatrix.theocloud.dev","duration":3.994345,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:22.191680183Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5338,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/SJARljxaGGGnEHPbZoEHHsrS?user_id=%40whatsapp_4917661014451%3Amatrix.theocloud.dev","duration":2.925969,"status_code":200,"response_length":79168,"response_mime":"image/jpeg","time":"2026-03-06T19:23:22.194738923Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5339,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661014451:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917661014451%3Amatrix.theocloud.dev","duration":6.291875,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SJARljxaGGGnEHPbZoEHHsrS"},"time":"2026-03-06T19:23:22.201370999Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5340,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-271678173093962%3Amatrix.theocloud.dev","duration":12.175592,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-271678173093962","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:22.214347052Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5341,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-271678173093962:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-271678173093962%3Amatrix.theocloud.dev","duration":4.2045,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:22.218874154Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5336,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.963035,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","com.beeper.exclude_from_timeline":true,"displayname":"theo","membership":"invite"},"time":"2026-03-06T19:23:22.234665617Z","message":"Request completed"} +{"level":"debug","transaction_id":"2170","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.256782967Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2170","time":"2026-03-06T19:23:22.257108152Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5342,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-271678173093962:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-271678173093962%3Amatrix.theocloud.dev","duration":42.442829,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917661014451 (WA)"},"time":"2026-03-06T19:23:22.261456738Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.262058847Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5343,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-61169360498824:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.349262,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ozOWBtbeKJycQWGYvxqLbBEQ","com.beeper.exclude_from_timeline":true,"displayname":"Carlo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:22.307646042Z","message":"Request completed"} +{"level":"debug","transaction_id":"2171","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.321451891Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2171","time":"2026-03-06T19:23:22.3217043Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5344,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-139238746132555%3Amatrix.theocloud.dev","duration":87.563548,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<49599 bytes>","time":"2026-03-06T19:23:22.339683221Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5346,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-139238746132555:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-139238746132555%3Amatrix.theocloud.dev","duration":3.078155,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:22.343162271Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5347,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/TBFQFuBqdTqYcKeKTxpfZNFv?user_id=%40whatsapp_lid-139238746132555%3Amatrix.theocloud.dev","duration":4.210158,"status_code":200,"response_length":49599,"response_mime":"image/jpeg","time":"2026-03-06T19:23:22.347483128Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5348,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-139238746132555:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-139238746132555%3Amatrix.theocloud.dev","duration":5.244731,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TBFQFuBqdTqYcKeKTxpfZNFv"},"time":"2026-03-06T19:23:22.35306366Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:22.354493051Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5349,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-212326053634078%3Amatrix.theocloud.dev","duration":7.930442,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-212326053634078","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:22.362707193Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5350,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-212326053634078:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-212326053634078%3Amatrix.theocloud.dev","duration":5.815551,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:22.369004865Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5345,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-61169360498824:matrix.theocloud.dev?user_id=%40whatsapp_lid-61169360498824%3Amatrix.theocloud.dev","duration":74.601463,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ozOWBtbeKJycQWGYvxqLbBEQ","com.beeper.exclude_from_timeline":true,"displayname":"Carlo (WA)","membership":"join"},"time":"2026-03-06T19:23:22.382797653Z","message":"Request completed"} +{"level":"debug","transaction_id":"2172","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.395408012Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2172","time":"2026-03-06T19:23:22.395751775Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5351,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-212326053634078:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-212326053634078%3Amatrix.theocloud.dev","duration":32.039553,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+5491140809052 (WA)"},"time":"2026-03-06T19:23:22.401222515Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.402028215Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.411628166Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5352,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-190219840168190:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":51.070856,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WrSjcFeZmOzQQVcltXsSxeuB","com.beeper.exclude_from_timeline":true,"displayname":"Tobi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:22.437805723Z","message":"Request completed"} +{"level":"debug","transaction_id":"2173","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.451141883Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2173","time":"2026-03-06T19:23:22.451477754Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5354,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-190219840168190:matrix.theocloud.dev?user_id=%40whatsapp_lid-190219840168190%3Amatrix.theocloud.dev","duration":53.232542,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WrSjcFeZmOzQQVcltXsSxeuB","com.beeper.exclude_from_timeline":true,"displayname":"Tobi (WA)","membership":"join"},"time":"2026-03-06T19:23:22.491942093Z","message":"Request completed"} +{"level":"debug","transaction_id":"2174","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.505889512Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2174","time":"2026-03-06T19:23:22.506215745Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5353,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-271678173093962%3Amatrix.theocloud.dev","duration":104.76247,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<79168 bytes>","time":"2026-03-06T19:23:22.528820105Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5356,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-271678173093962:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-271678173093962%3Amatrix.theocloud.dev","duration":2.733205,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:22.531914184Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5357,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/XoOHOARRkXimbSJjfRfzTqiV?user_id=%40whatsapp_lid-271678173093962%3Amatrix.theocloud.dev","duration":8.456704,"status_code":200,"response_length":79168,"response_mime":"image/jpeg","time":"2026-03-06T19:23:22.540505963Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5358,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-271678173093962:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-271678173093962%3Amatrix.theocloud.dev","duration":12.814438,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XoOHOARRkXimbSJjfRfzTqiV"},"time":"2026-03-06T19:23:22.553540544Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917661014451@s.whatsapp.net","alternate_jid":"271678173093962@lid","time":"2026-03-06T19:23:22.553983134Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5355,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-201283793350851:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":69.075827,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917632063161 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:22.562118284Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5359,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":10.311014,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-184331557449759","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:22.564882429Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5361,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-184331557449759:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":6.876174,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:22.572055154Z","message":"Request completed"} +{"level":"debug","transaction_id":"2175","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.57990444Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2175","time":"2026-03-06T19:23:22.580134361Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5362,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-184331557449759:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":16.200039,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Hoa (WA)"},"time":"2026-03-06T19:23:22.588409894Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.589053001Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-201283793350851:matrix.theocloud.dev?user_id=%40whatsapp_lid-201283793350851%3Amatrix.theocloud.dev","duration":54.371738,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917632063161 (WA)","membership":"join"},"time":"2026-03-06T19:23:22.617090595Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:22.618083193Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5363,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915112997658%3Amatrix.theocloud.dev","duration":5.65212,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915112997658","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:22.624025019Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5364,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915112997658:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915112997658%3Amatrix.theocloud.dev","duration":4.526054,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:22.628874233Z","message":"Request completed"} +{"level":"debug","transaction_id":"2176","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:22.63039379Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2176","time":"2026-03-06T19:23:22.630697184Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5365,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915112997658:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915112997658%3Amatrix.theocloud.dev","duration":7.310663,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915112997658 (WA)"},"time":"2026-03-06T19:23:22.636359292Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.637067562Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.739410768Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.791929383Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5366,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":104.322046,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46791 bytes>","time":"2026-03-06T19:23:22.851831087Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5368,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-184331557449759:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":3.241027,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:22.855427821Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5369,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/DJOlHfRCrNROlpLYFjTERgcc?user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":2.197166,"status_code":200,"response_length":46791,"response_mime":"image/jpeg","time":"2026-03-06T19:23:22.857738341Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5370,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-184331557449759:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":5.714908,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DJOlHfRCrNROlpLYFjTERgcc"},"time":"2026-03-06T19:23:22.86366096Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5371,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915209459043%3Amatrix.theocloud.dev","duration":4.003145,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915209459043","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:22.86872438Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5372,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915209459043:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915209459043%3Amatrix.theocloud.dev","duration":2.215325,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:22.871238909Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5373,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915209459043:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915209459043%3Amatrix.theocloud.dev","duration":15.542894,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Hoa (WA)"},"time":"2026-03-06T19:23:22.886983857Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.887746603Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.890134299Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5374,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-212326053634078:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-212326053634078%3Amatrix.theocloud.dev","duration":2.475068,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:22.893005023Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:22.894006281Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5375,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-254481426071661%3Amatrix.theocloud.dev","duration":3.555038,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-254481426071661","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:22.89781771Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5376,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-254481426071661:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-254481426071661%3Amatrix.theocloud.dev","duration":2.345511,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:22.900485123Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-254481426071661:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-254481426071661%3Amatrix.theocloud.dev","duration":11.022147,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491704035395 (WA)"},"time":"2026-03-06T19:23:22.911691864Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.912599952Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5367,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915112997658%3Amatrix.theocloud.dev","duration":126.24293,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<95846 bytes>","time":"2026-03-06T19:23:22.929087183Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.930640893Z","message":"81a4b9fb4249884d39a11197"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.931405525Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","portal_mxid":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3EB0F3F79E140ED6582ECA","sender_id":"33994833981513@lid","chat_id":"120363173737697025@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-33994833981513","sender_login":"4915119111000"},"remote_target_message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","time":"2026-03-06T19:23:22.93150086Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5378,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915112997658:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915112997658%3Amatrix.theocloud.dev","duration":2.267148,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:22.931762279Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5379,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wTuSWKhNSPuoxuEbgufJrkUr?user_id=%40whatsapp_4915112997658%3Amatrix.theocloud.dev","duration":2.344673,"status_code":200,"response_length":95846,"response_mime":"image/jpeg","time":"2026-03-06T19:23:22.9343067Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5380,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915112997658:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915112997658%3Amatrix.theocloud.dev","duration":4.066842,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wTuSWKhNSPuoxuEbgufJrkUr"},"time":"2026-03-06T19:23:22.938659057Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:22.939522516Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5381,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917674993720%3Amatrix.theocloud.dev","duration":5.048963,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917674993720","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:22.944843445Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5382,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917674993720:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917674993720%3Amatrix.theocloud.dev","duration":2.143038,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:22.94738158Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5383,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917674993720:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917674993720%3Amatrix.theocloud.dev","duration":6.081789,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917674993720 (WA)"},"time":"2026-03-06T19:23:22.953679532Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.957264113Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:22.962846251Z","message":"23f6c45572db9a5a3e61b698"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:22.963572959Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","portal_mxid":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3EB0F3F79E140ED6582ECA","sender_id":"33994833981513@lid","chat_id":"120363173737697025@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-33994833981513","sender_login":"4915119111000"},"remote_target_message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","req_id":5384,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=Klausur_Datenbanken_gelost.pdf&user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":11.151286,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<744328 bytes>","time":"2026-03-06T19:23:22.975391518Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","portal_mxid":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3EB0F3F79E140ED6582ECA","sender_id":"33994833981513@lid","chat_id":"120363173737697025@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-33994833981513","sender_login":"4915119111000"},"remote_target_message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","req_id":5385,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825002975858692_5?ts=1772825002000&user_id=%40whatsapp_lid-33994833981513%3Amatrix.theocloud.dev","duration":49.021755,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hier ist übrigens eine Probeklausur vom 2021 Jahrgang für Datenbanken.","filename":"Klausur_Datenbanken_gelost.pdf","info":{"mimetype":"application/pdf","size":744328},"m.mentions":{},"m.new_content":{"body":"Hier ist übrigens eine Probeklausur vom 2021 Jahrgang für Datenbanken.","filename":"Klausur_Datenbanken_gelost.pdf","info":{"mimetype":"application/pdf","size":744328},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/ONIHmktUsOAVjZBKpzrfEPAT"},"m.relates_to":{"event_id":"$gJh6Rk61cqSP3IoW9-Tl-fvIr__R3DGeg2Mo8WfBfhc","rel_type":"m.replace"},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/ONIHmktUsOAVjZBKpzrfEPAT"},"time":"2026-03-06T19:23:23.02520249Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","portal_mxid":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3EB0F3F79E140ED6582ECA","sender_id":"33994833981513@lid","chat_id":"120363173737697025@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-33994833981513","sender_login":"4915119111000"},"remote_target_message_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","event_id":"$_uTiOE5PJHR7Ft7vOJnuS6LGWf8EEGO3GylHTB_4YyY","part_id":"120363173737697025@g.us:33994833981513@lid:3EB0F3F79E140ED6582ECA","time":"2026-03-06T19:23:23.025436112Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363173737697025@g.us","portal_mxid":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3EB0C9A4C15462039D7170","sender_id":"151054134034515@lid","chat_id":"120363173737697025@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-151054134034515","sender_login":"4915238583118"},"remote_target_message_id":"120363173737697025@g.us:151054134034515@lid:3EB0C9A4C15462039D7170","time":"2026-03-06T19:23:23.02629573Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"2177","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.032504423Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2177","time":"2026-03-06T19:23:23.032641453Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","portal_mxid":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3EB0C9A4C15462039D7170","sender_id":"151054134034515@lid","chat_id":"120363173737697025@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-151054134034515","sender_login":"4915238583118"},"remote_target_message_id":"120363173737697025@g.us:151054134034515@lid:3EB0C9A4C15462039D7170","req_id":5386,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=IT23B_Gruppeneinteilung.pdf&user_id=%40whatsapp_lid-151054134034515%3Amatrix.theocloud.dev","duration":5.585002,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<68707 bytes>","time":"2026-03-06T19:23:23.045684485Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:23.051464277Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:23.070121574Z","message":""} +{"level":"debug","portal_id":"120363173737697025@g.us","portal_mxid":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3EB0C9A4C15462039D7170","sender_id":"151054134034515@lid","chat_id":"120363173737697025@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-151054134034515","sender_login":"4915238583118"},"remote_target_message_id":"120363173737697025@g.us:151054134034515@lid:3EB0C9A4C15462039D7170","req_id":5387,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21VxYjJEVsvmCCpBhUME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825003046078605_2?ts=1772825002000&user_id=%40whatsapp_lid-151054134034515%3Amatrix.theocloud.dev","duration":41.589706,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"IT23B_Gruppeneinteilung.pdf","info":{"mimetype":"application/pdf","size":68707},"m.mentions":{},"m.new_content":{"body":"","filename":"IT23B_Gruppeneinteilung.pdf","info":{"mimetype":"application/pdf","size":68707},"m.mentions":{},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/HnwkpWBnWaRpiswbqWrrRWjd"},"m.relates_to":{"event_id":"$tsyhHNlDvPbDmbO3YQIntjt66o96iY0ubPAAC41gm9k","rel_type":"m.replace"},"msgtype":"m.file","url":"mxc://matrix.theocloud.dev/HnwkpWBnWaRpiswbqWrrRWjd"},"time":"2026-03-06T19:23:23.087911781Z","message":"Request completed"} +{"level":"debug","portal_id":"120363173737697025@g.us","portal_mxid":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3EB0C9A4C15462039D7170","sender_id":"151054134034515@lid","chat_id":"120363173737697025@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-151054134034515","sender_login":"4915238583118"},"remote_target_message_id":"120363173737697025@g.us:151054134034515@lid:3EB0C9A4C15462039D7170","event_id":"$V6pxtfyO4q48VVi0RQkyC2Gtit47ob_lpWaiG9LXR3A","part_id":"120363173737697025@g.us:151054134034515@lid:3EB0C9A4C15462039D7170","time":"2026-03-06T19:23:23.088082895Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2178","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.094756597Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2178","time":"2026-03-06T19:23:23.094905151Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:23.124152972Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5388,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915209459043%3Amatrix.theocloud.dev","duration":108.994,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46791 bytes>","time":"2026-03-06T19:23:23.169201963Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5391,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915209459043:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915209459043%3Amatrix.theocloud.dev","duration":3.191789,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:23.172801281Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5392,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/lsxhoyfGJYsGGApnYKKIsHEr?user_id=%40whatsapp_4915209459043%3Amatrix.theocloud.dev","duration":2.845302,"status_code":200,"response_length":46791,"response_mime":"image/jpeg","time":"2026-03-06T19:23:23.175824261Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5393,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915209459043:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915209459043%3Amatrix.theocloud.dev","duration":4.831195,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lsxhoyfGJYsGGApnYKKIsHEr"},"time":"2026-03-06T19:23:23.180911078Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"184331557449759@lid","alternate_jid":"4915209459043@s.whatsapp.net","time":"2026-03-06T19:23:23.181505086Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"190219840168190@lid","alternate_jid":"4915736562158@s.whatsapp.net","time":"2026-03-06T19:23:23.181625983Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"276334119006314@lid","alt_jid":"491759232609@s.whatsapp.net","source_push_name":"Jonny Cragg","alt_push_name":"Jonny Philippos","time":"2026-03-06T19:23:23.181704276Z","message":"Conflicting push names between JIDs"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"276334119006314@lid","alternate_jid":"491759232609@s.whatsapp.net","time":"2026-03-06T19:23:23.181785712Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491731828379@s.whatsapp.net","alternate_jid":"27956059590853@lid","time":"2026-03-06T19:23:23.181895644Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491732544648@s.whatsapp.net","time":"2026-03-06T19:23:23.182237102Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5394,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491732544648%3Amatrix.theocloud.dev","duration":8.207298,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491732544648","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:23.190752543Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5389,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-254481426071661%3Amatrix.theocloud.dev","duration":95.117401,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<46698 bytes>","time":"2026-03-06T19:23:23.194066556Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5395,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491732544648:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491732544648%3Amatrix.theocloud.dev","duration":4.781258,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:23.195942029Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5396,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-254481426071661:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-254481426071661%3Amatrix.theocloud.dev","duration":3.844046,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:23.198252549Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5398,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/uELFhFzjKIToKpGUGznOiFMf?user_id=%40whatsapp_lid-254481426071661%3Amatrix.theocloud.dev","duration":3.706944,"status_code":200,"response_length":46698,"response_mime":"image/jpeg","time":"2026-03-06T19:23:23.202123832Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5399,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-254481426071661:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-254481426071661%3Amatrix.theocloud.dev","duration":8.987435,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uELFhFzjKIToKpGUGznOiFMf"},"time":"2026-03-06T19:23:23.211369474Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:23.212520962Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5397,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491732544648:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491732544648%3Amatrix.theocloud.dev","duration":18.553582,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Max (WA)"},"time":"2026-03-06T19:23:23.214720293Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:23.21557579Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5400,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-154378388402269%3Amatrix.theocloud.dev","duration":3.964313,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-154378388402269","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:23.216754028Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5401,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-154378388402269:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-154378388402269%3Amatrix.theocloud.dev","duration":1.812545,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:23.218839377Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5402,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-154378388402269:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-154378388402269%3Amatrix.theocloud.dev","duration":5.311011,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491729879482 (WA)"},"time":"2026-03-06T19:23:23.224363616Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:23.224887433Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5390,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917674993720%3Amatrix.theocloud.dev","duration":98.428202,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64397 bytes>","time":"2026-03-06T19:23:23.232768916Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5403,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917674993720:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917674993720%3Amatrix.theocloud.dev","duration":2.233065,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:23.2353565Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5404,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YCycJTYOBnLZbLIyAuGMvoVa?user_id=%40whatsapp_4917674993720%3Amatrix.theocloud.dev","duration":2.142899,"status_code":200,"response_length":64397,"response_mime":"image/jpeg","time":"2026-03-06T19:23:23.237599552Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5405,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917674993720:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917674993720%3Amatrix.theocloud.dev","duration":4.008245,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YCycJTYOBnLZbLIyAuGMvoVa"},"time":"2026-03-06T19:23:23.24189373Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5406,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-263328890937590:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.489356,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Ella 🦖 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:23.302517603Z","message":"Request completed"} +{"level":"debug","transaction_id":"2179","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.318693966Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2179","time":"2026-03-06T19:23:23.319013773Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5407,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-263328890937590:matrix.theocloud.dev?user_id=%40whatsapp_lid-263328890937590%3Amatrix.theocloud.dev","duration":54.003041,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Ella 🦖 (WA)","membership":"join"},"time":"2026-03-06T19:23:23.35746533Z","message":"Request completed"} +{"level":"debug","transaction_id":"2180","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.374818185Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2180","time":"2026-03-06T19:23:23.375167605Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:23.380726696Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:23.38664673Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5409,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491732544648:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491732544648%3Amatrix.theocloud.dev","duration":6.649327,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:23.387728027Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917628960628@s.whatsapp.net","time":"2026-03-06T19:23:23.388462767Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5410,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-154378388402269:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-154378388402269%3Amatrix.theocloud.dev","duration":8.567264,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:23.395482328Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:23.396573613Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5411,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917628960628%3Amatrix.theocloud.dev","duration":8.930932,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917628960628","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:23.397646878Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5412,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-60129676394725%3Amatrix.theocloud.dev","duration":6.119015,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-60129676394725","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:23.402960822Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5413,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917628960628:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917628960628%3Amatrix.theocloud.dev","duration":5.506918,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:23.403494905Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5414,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-60129676394725:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-60129676394725%3Amatrix.theocloud.dev","duration":3.182779,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:23.406429815Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5415,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917628960628:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917628960628%3Amatrix.theocloud.dev","duration":16.923325,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917628960628 (WA)"},"time":"2026-03-06T19:23:23.420627268Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5416,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-60129676394725:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-60129676394725%3Amatrix.theocloud.dev","duration":14.085077,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491739423344 (WA)"},"time":"2026-03-06T19:23:23.420747467Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:23.421459997Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:23.424483745Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5408,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220538484043940:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":89.431688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UDgNXJkTzFRtrSHexhqovmzd","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Bakdad (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:23.447608639Z","message":"Request completed"} +{"level":"debug","transaction_id":"2181","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.464865601Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2181","time":"2026-03-06T19:23:23.465197491Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5417,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220538484043940:matrix.theocloud.dev?user_id=%40whatsapp_lid-220538484043940%3Amatrix.theocloud.dev","duration":70.676471,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UDgNXJkTzFRtrSHexhqovmzd","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Bakdad (WA)","membership":"join"},"time":"2026-03-06T19:23:23.518848946Z","message":"Request completed"} +{"level":"debug","transaction_id":"2182","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.53223658Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2182","time":"2026-03-06T19:23:23.532564279Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5418,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-142237052747971:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.614725,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RUfAjzzmEtZNjyJaBdBobqpK","com.beeper.exclude_from_timeline":true,"displayname":"Nico (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:23.582466466Z","message":"Request completed"} +{"level":"debug","transaction_id":"2183","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.593071446Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2183","time":"2026-03-06T19:23:23.593420238Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:23.598124041Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:23.598907949Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5420,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-60129676394725:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-60129676394725%3Amatrix.theocloud.dev","duration":4.13864,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:23.603389654Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:23.604194306Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5421,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-197577119109324%3Amatrix.theocloud.dev","duration":4.078715,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-197577119109324","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:23.60852145Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5422,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-197577119109324:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-197577119109324%3Amatrix.theocloud.dev","duration":1.974998,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:23.610792858Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5423,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-197577119109324:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-197577119109324%3Amatrix.theocloud.dev","duration":12.225668,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Robin (WA)"},"time":"2026-03-06T19:23:23.623200116Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:23.624148015Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5419,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-142237052747971:matrix.theocloud.dev?user_id=%40whatsapp_lid-142237052747971%3Amatrix.theocloud.dev","duration":53.527485,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RUfAjzzmEtZNjyJaBdBobqpK","com.beeper.exclude_from_timeline":true,"displayname":"Nico (WA)","membership":"join"},"time":"2026-03-06T19:23:23.636567006Z","message":"Request completed"} +{"level":"debug","transaction_id":"2184","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.650806366Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2184","time":"2026-03-06T19:23:23.651046413Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5425,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-156668226703416:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.516666,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Shane (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:23.70169186Z","message":"Request completed"} +{"level":"debug","transaction_id":"2185","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.712492259Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2185","time":"2026-03-06T19:23:23.712744599Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5426,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-156668226703416:matrix.theocloud.dev?user_id=%40whatsapp_lid-156668226703416%3Amatrix.theocloud.dev","duration":52.163816,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Shane (WA)","membership":"join"},"time":"2026-03-06T19:23:23.754737015Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5424,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917628960628%3Amatrix.theocloud.dev","duration":126.126643,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<52563 bytes>","time":"2026-03-06T19:23:23.762992015Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5428,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917628960628:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917628960628%3Amatrix.theocloud.dev","duration":4.069286,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:23.767325165Z","message":"Request completed"} +{"level":"debug","transaction_id":"2186","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.772225085Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2186","time":"2026-03-06T19:23:23.772450046Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5429,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/gRwAWEUnaEyeYyCMbJQBtKPa?user_id=%40whatsapp_4917628960628%3Amatrix.theocloud.dev","duration":6.651353,"status_code":200,"response_length":52563,"response_mime":"image/jpeg","time":"2026-03-06T19:23:23.774092456Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:23.775138832Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5430,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917628960628:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917628960628%3Amatrix.theocloud.dev","duration":11.01209,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gRwAWEUnaEyeYyCMbJQBtKPa"},"time":"2026-03-06T19:23:23.785378397Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"86861754155032@lid","alternate_jid":"4917617625494@s.whatsapp.net","time":"2026-03-06T19:23:23.786071092Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"223690570625160@lid","alternate_jid":"491727724601@s.whatsapp.net","time":"2026-03-06T19:23:23.786177253Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5431,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915159133785%3Amatrix.theocloud.dev","duration":9.63152,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915159133785","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:23.796598408Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5433,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159133785:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915159133785%3Amatrix.theocloud.dev","duration":2.829936,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:23.799717701Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5434,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159133785:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915159133785%3Amatrix.theocloud.dev","duration":12.388331,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Liam (WA)"},"time":"2026-03-06T19:23:23.812286155Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"242047260864591@lid","alternate_jid":"4915159133785@s.whatsapp.net","time":"2026-03-06T19:23:23.812909497Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5435,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491624867340%3Amatrix.theocloud.dev","duration":9.025289,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491624867340","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:23.822500857Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5436,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624867340:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491624867340%3Amatrix.theocloud.dev","duration":5.398034,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:23.828171485Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5427,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-267950527361145:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":92.375396,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BZQJeRWULQLwtUfTZUsqzUfv","com.beeper.exclude_from_timeline":true,"displayname":"Zaki (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:23.848112133Z","message":"Request completed"} +{"level":"debug","transaction_id":"2187","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.867983009Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2187","time":"2026-03-06T19:23:23.868383415Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5437,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624867340:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491624867340%3Amatrix.theocloud.dev","duration":40.740077,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jules (WA)"},"time":"2026-03-06T19:23:23.869050757Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"256693099352121@lid","alternate_jid":"491624867340@s.whatsapp.net","time":"2026-03-06T19:23:23.869515836Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:23.870246455Z","message":"040121b11c61dcfed13771"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5432,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-197577119109324%3Amatrix.theocloud.dev","duration":117.187049,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<31916 bytes>","time":"2026-03-06T19:23:23.906989183Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5439,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-197577119109324:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-197577119109324%3Amatrix.theocloud.dev","duration":4.21351,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:23.911582286Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5440,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ErUtmyuocmfWBAglUhjOiQgD?user_id=%40whatsapp_lid-197577119109324%3Amatrix.theocloud.dev","duration":5.053433,"status_code":200,"response_length":31916,"response_mime":"image/jpeg","time":"2026-03-06T19:23:23.916796425Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5438,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-267950527361145:matrix.theocloud.dev?user_id=%40whatsapp_lid-267950527361145%3Amatrix.theocloud.dev","duration":75.613337,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BZQJeRWULQLwtUfTZUsqzUfv","com.beeper.exclude_from_timeline":true,"displayname":"Zaki (WA)","membership":"join"},"time":"2026-03-06T19:23:23.924387435Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5441,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-197577119109324:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-197577119109324%3Amatrix.theocloud.dev","duration":19.687051,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ErUtmyuocmfWBAglUhjOiQgD"},"time":"2026-03-06T19:23:23.936813062Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:23.937913286Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5443,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-67697341677813%3Amatrix.theocloud.dev","duration":8.645627,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-67697341677813","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:23.946887241Z","message":"Request completed"} +{"level":"debug","transaction_id":"2188","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:23.949861821Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2188","time":"2026-03-06T19:23:23.950133716Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5444,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67697341677813:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-67697341677813%3Amatrix.theocloud.dev","duration":5.707295,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:23.952975805Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5445,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67697341677813:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-67697341677813%3Amatrix.theocloud.dev","duration":15.438549,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491757262193 (WA)"},"time":"2026-03-06T19:23:23.968587703Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:23.969463664Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5442,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-209178178109568:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":69.237093,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917665322672 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:23.994640313Z","message":"Request completed"} +{"level":"debug","transaction_id":"2189","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.005435334Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2189","time":"2026-03-06T19:23:24.005776513Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5446,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-209178178109568:matrix.theocloud.dev?user_id=%40whatsapp_lid-209178178109568%3Amatrix.theocloud.dev","duration":45.030622,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917665322672 (WA)","membership":"join"},"time":"2026-03-06T19:23:24.040443669Z","message":"Request completed"} +{"level":"debug","transaction_id":"2190","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.056446474Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2190","time":"2026-03-06T19:23:24.05675846Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5447,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-186646947455090:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.148878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qvHvGznCKwXzGsizddKLfEec","com.beeper.exclude_from_timeline":true,"displayname":"Stefan (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:24.10468453Z","message":"Request completed"} +{"level":"debug","transaction_id":"2191","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.11647152Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2191","time":"2026-03-06T19:23:24.116727701Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:24.126176793Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5448,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-186646947455090:matrix.theocloud.dev?user_id=%40whatsapp_lid-186646947455090%3Amatrix.theocloud.dev","duration":70.347514,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qvHvGznCKwXzGsizddKLfEec","com.beeper.exclude_from_timeline":true,"displayname":"Stefan (WA)","membership":"join"},"time":"2026-03-06T19:23:24.175623887Z","message":"Request completed"} +{"level":"debug","transaction_id":"2192","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.194430857Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2192","time":"2026-03-06T19:23:24.194773852Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5449,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-67697341677813%3Amatrix.theocloud.dev","duration":93.001672,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<65577 bytes>","time":"2026-03-06T19:23:24.228834359Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5451,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67697341677813:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-67697341677813%3Amatrix.theocloud.dev","duration":4.953349,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:24.234146418Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5450,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-276334119006314:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":65.463309,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jonny Philippos (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:24.241869499Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5452,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/vtKqdlAucZbsjzrEPbEcuZaR?user_id=%40whatsapp_lid-67697341677813%3Amatrix.theocloud.dev","duration":7.865211,"status_code":200,"response_length":65577,"response_mime":"image/jpeg","time":"2026-03-06T19:23:24.242152779Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5453,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-67697341677813:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-67697341677813%3Amatrix.theocloud.dev","duration":10.555393,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vtKqdlAucZbsjzrEPbEcuZaR"},"time":"2026-03-06T19:23:24.252950314Z","message":"Request completed"} +{"level":"debug","transaction_id":"2193","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.257878031Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2193","time":"2026-03-06T19:23:24.258205172Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2194","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.327831216Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2194","time":"2026-03-06T19:23:24.32817449Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5454,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-276334119006314:matrix.theocloud.dev?user_id=%40whatsapp_lid-276334119006314%3Amatrix.theocloud.dev","duration":96.480582,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jonny Philippos (WA)","membership":"join"},"time":"2026-03-06T19:23:24.339132453Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:24.340136924Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5456,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917680622993%3Amatrix.theocloud.dev","duration":12.505177,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917680622993","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:24.35298768Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5457,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680622993:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917680622993%3Amatrix.theocloud.dev","duration":4.870726,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:24.358220887Z","message":"Request completed"} +{"level":"debug","transaction_id":"2195","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.361476232Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2195","time":"2026-03-06T19:23:24.361703079Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5458,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680622993:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917680622993%3Amatrix.theocloud.dev","duration":15.803056,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nico (WA)"},"time":"2026-03-06T19:23:24.37422858Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:24.375050483Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:24.387138703Z","message":""} +{"level":"debug","transaction_id":"2196","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.423473621Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2196","time":"2026-03-06T19:23:24.423705637Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":4997,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s3643_996_8_417_469_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":9591.899752,"status_code":200,"response_length":210,"response_mime":"application/json","time":"2026-03-06T19:23:24.449464141Z","message":"Request completed"} +{"level":"debug","component":"crypto","trace_id":"19:23:24.449701","changes":["@whatsappbot:matrix.theocloud.dev"],"time":"2026-03-06T19:23:24.449719833Z","message":"Device list changes in /sync"} +{"level":"debug","component":"crypto","trace_id":"19:23:24.449701","time":"2026-03-06T19:23:24.44985854Z","message":"Finished handling device list changes"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5459,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-267847112642661%3Amatrix.theocloud.dev","duration":137.25991,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<52032 bytes>","time":"2026-03-06T19:23:24.536038165Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:24.537250067Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5461,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-267847112642661:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-267847112642661%3Amatrix.theocloud.dev","duration":7.055111,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:24.543394504Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5462,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ACRQCdjDYtsvaAZbInqhXamF?user_id=%40whatsapp_lid-267847112642661%3Amatrix.theocloud.dev","duration":11.305567,"status_code":200,"response_length":52032,"response_mime":"image/jpeg","time":"2026-03-06T19:23:24.554840385Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5455,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/createRoom?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":302.879945,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{"visibility":"private","initial_state":[{"type":"io.element.functional_members","content":{"service_members":["@whatsapp_lid-195790463058158:matrix.theocloud.dev","@whatsappbot:matrix.theocloud.dev"]}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"uk.half-shot.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"network":{"id":"120363373705450816@g.us","displayname":"BO9K Calisthenics e.V","avatar_url":"mxc://matrix.theocloud.dev/ESGsxDpvHUKdCUZbADklcwiU"},"channel":{"id":"120363163455706585@g.us","displayname":"TOGETHER WE GO OVER 9000 🐉","avatar_url":"mxc://matrix.theocloud.dev/dXyEWDOBYNQdHagDNFFAxANC"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"m.bridge","content":{"bridgebot":"@whatsappbot:matrix.theocloud.dev","creator":"@whatsappbot:matrix.theocloud.dev","protocol":{"id":"whatsapp","displayname":"WhatsApp","avatar_url":"mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr","external_url":"https://whatsapp.com"},"network":{"id":"120363373705450816@g.us","displayname":"BO9K Calisthenics e.V","avatar_url":"mxc://matrix.theocloud.dev/ESGsxDpvHUKdCUZbADklcwiU"},"channel":{"id":"120363163455706585@g.us","displayname":"TOGETHER WE GO OVER 9000 🐉","avatar_url":"mxc://matrix.theocloud.dev/dXyEWDOBYNQdHagDNFFAxANC"}}},{"state_key":"matrix.theocloud.dev/whatsapp","type":"com.beeper.room_features","content":{"id":"fi.mau.whatsapp.capabilities.2025_12_15+ffmpeg","formatting":{"blockquote":2,"bold":2,"code_block":2,"headers":1,"inline_code":2,"inline_link":1,"italic":2,"ordered_list":2,"ordered_list.start":2,"strikethrough":2,"unordered_list":2,"user_link":2},"file":{"fi.mau.gif":{"mime_types":{"image/gif":1,"video/mp4":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.audio":{"mime_types":{"audio/aac":2,"audio/amr":2,"audio/mp4":2,"audio/mpeg":2,"audio/ogg":2},"caption":-1,"max_size":2097152000},"m.file":{"mime_types":{"*/*":2},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.image":{"mime_types":{"image/gif":1,"image/jpeg":2,"image/png":1,"image/webp":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"m.sticker":{"mime_types":{"image/jpeg":1,"image/png":1,"image/webp":2},"caption":-1,"max_size":2097152000},"m.video":{"mime_types":{"video/3gpp":2,"video/mp4":2,"video/quicktime":1,"video/webm":1},"caption":2,"max_caption_length":65536,"max_size":2097152000},"org.matrix.msc3245.voice":{"mime_types":{"audio/ogg":0,"audio/ogg; codecs=opus":2},"caption":-1,"max_size":2097152000}},"state":{"com.beeper.disappearing_timer":{"level":2},"m.room.avatar":{"level":2},"m.room.name":{"level":2},"m.room.topic":{"level":2}},"member_actions":{"invite":2,"kick":2,"leave":2},"max_text_length":65536,"location_message":2,"poll":2,"reply":2,"edit":2,"edit_max_age":900,"delete":2,"delete_max_age":172800,"disappearing_timer":{"types":["after_send"],"timers":[86400000,604800000,7776000000]},"reaction":2,"reaction_count":1,"read_receipts":true,"typing_notifications":true,"delete_chat":true}},{"type":"m.room.topic","content":{"com.beeper.exclude_from_timeline":true,"topic":"1. Dienstags Outdoor \nOrt: Cherusker Park \nZeit : 18:00 Uhr \n\n2. Donnerstags Indoor/Outdoor\nOrt: Naunynritze 63, 10997\nJugendfreizeiteinrichtung Friedrichshain-Kreuzberg Naunynritze\nZeit: 18 Uhr \n\n3. Freitag Outdoor \nOrt: Cherusker Park \n17:30 Uhr \n\n4. Samstags Halle, offenes Training für alle \nOrt: Am Hellespont 4, 12109 \nCarl-Sonnenschein-Grundschule \nZeit 14:30 Uhr\n\n5. Sonntags Halle, Freestyle Kurs \nOrt: Am Hellespont 4, 12109 \nCarl-Sonnenschein-Grundschule \nZeit 14:30 Uhr\n\nSpenden 💪🏽❤️\nhttps://www.paypal.me/Nes2315"}},{"type":"com.beeper.disappearing_timer","content":{"com.beeper.exclude_from_timeline":true}},{"type":"m.room.name","content":{"com.beeper.exclude_from_timeline":true,"name":"TOGETHER WE GO OVER 9000 🐉"}},{"type":"m.room.avatar","content":{"com.beeper.exclude_from_timeline":true,"url":"mxc://matrix.theocloud.dev/dXyEWDOBYNQdHagDNFFAxANC"}},{"state_key":"!ySyjKrWRRJvodFFEZK:matrix.theocloud.dev","type":"m.space.parent","content":{"via":["matrix.theocloud.dev"],"canonical":true}}],"preset":"private_chat","power_level_content_override":{"users":{"@whatsapp_lid-21079833710744:matrix.theocloud.dev":50,"@whatsapp_lid-239363409617131:matrix.theocloud.dev":50,"@whatsapp_lid-275883097071617:matrix.theocloud.dev":50,"@whatsapp_lid-38504566390811:matrix.theocloud.dev":50,"@whatsapp_lid-44419206123644:matrix.theocloud.dev":75,"@whatsapp_lid-80358888464591:matrix.theocloud.dev":50,"@whatsappbot:matrix.theocloud.dev":9001},"events":{"m.room.encryption":100,"m.room.server_acl":100,"m.room.tombstone":100},"state_default":99,"ban":99},"com.beeper.local_room_id":"!120363163455706585@g.us.:matrix.theocloud.dev"},"time":"2026-03-06T19:23:24.557109837Z","message":"Request completed"} +{"level":"info","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","room_id":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","time":"2026-03-06T19:23:24.558367975Z","message":"Matrix room created"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5464,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-267847112642661:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-267847112642661%3Amatrix.theocloud.dev","duration":16.789159,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ACRQCdjDYtsvaAZbInqhXamF"},"time":"2026-03-06T19:23:24.571911147Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:24.573065918Z","message":"040121b11c61dcfed13771"} +{"level":"debug","transaction_id":"2197","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.574759172Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2197","time":"2026-03-06T19:23:24.575135552Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2198","content":{"pdu":12,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.586165871Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2198","time":"2026-03-06T19:23:24.586686475Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5465,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev/state/m.space.child/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev?ts=1772825004559&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.11389,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"]},"time":"2026-03-06T19:23:24.62730321Z","message":"Request completed"} +{"level":"debug","transaction_id":"2199","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.63979379Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2199","time":"2026-03-06T19:23:24.639912033Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5466,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.space.parent/%21ySyjKrWRRJvodFFEZK:matrix.theocloud.dev?ts=1772825004627&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":22.567693,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"via":["matrix.theocloud.dev"],"canonical":true},"time":"2026-03-06T19:23:24.650376281Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5467,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/members?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":2.05343,"status_code":200,"response_length":478,"response_mime":"application/json","time":"2026-03-06T19:23:24.653286745Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5463,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917680622993%3Amatrix.theocloud.dev","duration":116.570413,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<54808 bytes>","time":"2026-03-06T19:23:24.661638057Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5469,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680622993:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917680622993%3Amatrix.theocloud.dev","duration":4.219307,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:24.666149305Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5470,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LUAznVpyerKckeKMYRnbQZBZ?user_id=%40whatsapp_4917680622993%3Amatrix.theocloud.dev","duration":4.04547,"status_code":200,"response_length":54808,"response_mime":"image/jpeg","time":"2026-03-06T19:23:24.670322586Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5471,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917680622993:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917680622993%3Amatrix.theocloud.dev","duration":5.92206,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LUAznVpyerKckeKMYRnbQZBZ"},"time":"2026-03-06T19:23:24.676476243Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5468,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25696839700643:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.390327,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JhBKMZmGhSHRJjkUryvmpKGs","com.beeper.exclude_from_timeline":true,"displayname":"Vivian (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:24.724734693Z","message":"Request completed"} +{"level":"debug","transaction_id":"2200","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.73912554Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2200","time":"2026-03-06T19:23:24.739449678Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5472,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-236846508454136:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":98.951878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RlfOvolUvlxcihDBkLmmyRFC","com.beeper.exclude_from_timeline":true,"displayname":"Milanko (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:24.776359537Z","message":"Request completed"} +{"level":"debug","transaction_id":"2201","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.790799483Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2201","time":"2026-03-06T19:23:24.791042674Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25696839700643:matrix.theocloud.dev?user_id=%40whatsapp_lid-25696839700643%3Amatrix.theocloud.dev","duration":93.685846,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JhBKMZmGhSHRJjkUryvmpKGs","com.beeper.exclude_from_timeline":true,"displayname":"Vivian (WA)","membership":"join"},"time":"2026-03-06T19:23:24.81903997Z","message":"Request completed"} +{"level":"debug","transaction_id":"2202","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.836745039Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2202","time":"2026-03-06T19:23:24.836978381Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:24.861148464Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"267847112642661@lid","alternate_jid":"4915735701057@s.whatsapp.net","time":"2026-03-06T19:23:24.861241005Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"273069826400467@lid","alternate_jid":"48723807797@s.whatsapp.net","time":"2026-03-06T19:23:24.8613802Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491794397891@s.whatsapp.net","alternate_jid":"276351164624932@lid","time":"2026-03-06T19:23:24.861505847Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5476,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-86230310109332%3Amatrix.theocloud.dev","duration":8.372404,"status_code":200,"response_length":100,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-86230310109332","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:24.870580025Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5477,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-86230310109332:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-86230310109332%3Amatrix.theocloud.dev","duration":4.614614,"status_code":200,"response_length":45,"response_mime":"application/json","time":"2026-03-06T19:23:24.875502225Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5474,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-236846508454136:matrix.theocloud.dev?user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":109.910959,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RlfOvolUvlxcihDBkLmmyRFC","com.beeper.exclude_from_timeline":true,"displayname":"Milanko (WA)","membership":"join"},"time":"2026-03-06T19:23:24.886859545Z","message":"Request completed"} +{"level":"debug","transaction_id":"2203","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.905841609Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2203","time":"2026-03-06T19:23:24.906148216Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5478,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-86230310109332:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-86230310109332%3Amatrix.theocloud.dev","duration":35.428158,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alvin (WA)"},"time":"2026-03-06T19:23:24.911067831Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:24.911826038Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5475,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-161108786712577:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":123.559313,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DtGflqjsPOvmtKyfxngYhIrU","com.beeper.exclude_from_timeline":true,"displayname":"+491741768036 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:24.943481739Z","message":"Request completed"} +{"level":"debug","transaction_id":"2204","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:24.963357294Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2204","time":"2026-03-06T19:23:24.963700079Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5479,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256693099352121:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":125.851464,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jules (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:25.013638584Z","message":"Request completed"} +{"level":"debug","transaction_id":"2205","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.031554576Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2205","time":"2026-03-06T19:23:25.031788547Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5480,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-161108786712577:matrix.theocloud.dev?user_id=%40whatsapp_lid-161108786712577%3Amatrix.theocloud.dev","duration":122.155834,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DtGflqjsPOvmtKyfxngYhIrU","com.beeper.exclude_from_timeline":true,"displayname":"+491741768036 (WA)","membership":"join"},"time":"2026-03-06T19:23:25.066414427Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:25.067579325Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:25.068942506Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5482,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_5521987169367%3Amatrix.theocloud.dev","duration":9.822049,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_5521987169367","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.077744789Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5483,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-86230310109332:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-86230310109332%3Amatrix.theocloud.dev","duration":8.845655,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:25.078082615Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5484,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_5521987169367:matrix.theocloud.dev/displayname?user_id=%40whatsapp_5521987169367%3Amatrix.theocloud.dev","duration":7.217075,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:25.085293823Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5485,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491632291767%3Amatrix.theocloud.dev","duration":9.505524,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491632291767","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.088630814Z","message":"Request completed"} +{"level":"debug","transaction_id":"2206","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.090661895Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2206","time":"2026-03-06T19:23:25.090881688Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5487,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491632291767:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491632291767%3Amatrix.theocloud.dev","duration":8.569359,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:25.097583397Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5486,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_5521987169367:matrix.theocloud.dev/displayname?user_id=%40whatsapp_5521987169367%3Amatrix.theocloud.dev","duration":22.370738,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+5521987169367 (WA)"},"time":"2026-03-06T19:23:25.107905098Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:25.108639349Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5488,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491632291767:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491632291767%3Amatrix.theocloud.dev","duration":13.325962,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alvin (WA)"},"time":"2026-03-06T19:23:25.111095001Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:25.111746Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5481,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256693099352121:matrix.theocloud.dev?user_id=%40whatsapp_lid-256693099352121%3Amatrix.theocloud.dev","duration":119.989677,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jules (WA)","membership":"join"},"time":"2026-03-06T19:23:25.134441923Z","message":"Request completed"} +{"level":"debug","transaction_id":"2207","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.145981741Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2207","time":"2026-03-06T19:23:25.146305599Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:25.156663478Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5490,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491632291767:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491632291767%3Amatrix.theocloud.dev","duration":3.574524,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:25.160593638Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"86230310109332@lid","alternate_jid":"491632291767@s.whatsapp.net","time":"2026-03-06T19:23:25.161116338Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5491,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491782468992%3Amatrix.theocloud.dev","duration":3.109025,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491782468992","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.164842559Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5492,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491782468992:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491782468992%3Amatrix.theocloud.dev","duration":1.918775,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:25.167147631Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5489,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-275883097071617:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.957087,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sCTgPORBQRLSQYTETlrunLuQ","com.beeper.exclude_from_timeline":true,"displayname":"andac (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:25.193619154Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5493,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491782468992:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491782468992%3Amatrix.theocloud.dev","duration":26.383103,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wally (WA)"},"time":"2026-03-06T19:23:25.193735092Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"156203732750524@lid","alternate_jid":"491782468992@s.whatsapp.net","time":"2026-03-06T19:23:25.196611683Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"186646947455090@lid","alternate_jid":"4917655425926@s.whatsapp.net","time":"2026-03-06T19:23:25.19675905Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5495,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915773290861%3Amatrix.theocloud.dev","duration":5.142691,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915773290861","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.202564614Z","message":"Request completed"} +{"level":"debug","transaction_id":"2208","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.207098839Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2208","time":"2026-03-06T19:23:25.207314442Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5496,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915773290861:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915773290861%3Amatrix.theocloud.dev","duration":6.235861,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:25.209241389Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5497,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915773290861:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915773290861%3Amatrix.theocloud.dev","duration":23.128944,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Robin (WA)"},"time":"2026-03-06T19:23:25.232568127Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"197577119109324@lid","alternate_jid":"4915773290861@s.whatsapp.net","time":"2026-03-06T19:23:25.232966157Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"199450228215815@lid","alternate_jid":"4917627560255@s.whatsapp.net","time":"2026-03-06T19:23:25.233063308Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4915782942616@s.whatsapp.net","alternate_jid":"101816561881152@lid","time":"2026-03-06T19:23:25.23312442Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491723825475@s.whatsapp.net","time":"2026-03-06T19:23:25.233421529Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5498,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491723825475%3Amatrix.theocloud.dev","duration":4.974022,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491723825475","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.238585312Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5499,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723825475:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491723825475%3Amatrix.theocloud.dev","duration":4.194932,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:25.243092928Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5500,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723825475:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491723825475%3Amatrix.theocloud.dev","duration":15.64647,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491723825475 (WA)"},"time":"2026-03-06T19:23:25.258933629Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:25.25951772Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5494,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-275883097071617:matrix.theocloud.dev?user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":81.051251,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sCTgPORBQRLSQYTETlrunLuQ","com.beeper.exclude_from_timeline":true,"displayname":"andac (WA)","membership":"join"},"time":"2026-03-06T19:23:25.275369176Z","message":"Request completed"} +{"level":"debug","transaction_id":"2209","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.286349978Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2209","time":"2026-03-06T19:23:25.286697233Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:25.287870233Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5502,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_5521987169367:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_5521987169367%3Amatrix.theocloud.dev","duration":8.921224,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:25.29702934Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:25.298068173Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5503,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915737138589%3Amatrix.theocloud.dev","duration":4.079134,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915737138589","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.302427793Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5504,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915737138589:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915737138589%3Amatrix.theocloud.dev","duration":5.681035,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:25.308513005Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5505,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915737138589:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915737138589%3Amatrix.theocloud.dev","duration":11.907677,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lennart (WA)"},"time":"2026-03-06T19:23:25.320596544Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:25.321438003Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5501,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59622887026730:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.041466,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Felix (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:25.346205307Z","message":"Request completed"} +{"level":"debug","transaction_id":"2210","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.354630651Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2210","time":"2026-03-06T19:23:25.354917004Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5506,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59622887026730:matrix.theocloud.dev?user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":48.383398,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Felix (WA)","membership":"join"},"time":"2026-03-06T19:23:25.395322676Z","message":"Request completed"} +{"level":"debug","transaction_id":"2211","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.405722949Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2211","time":"2026-03-06T19:23:25.406048902Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:25.416922635Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5507,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-141188745167008:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":49.525108,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/deeAqRHkJnAKjOnfsZJvjRCX","com.beeper.exclude_from_timeline":true,"displayname":"+33628246935 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:25.44577473Z","message":"Request completed"} +{"level":"debug","transaction_id":"2212","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.457708179Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2212","time":"2026-03-06T19:23:25.457947109Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5508,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-141188745167008:matrix.theocloud.dev?user_id=%40whatsapp_lid-141188745167008%3Amatrix.theocloud.dev","duration":52.328644,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/deeAqRHkJnAKjOnfsZJvjRCX","com.beeper.exclude_from_timeline":true,"displayname":"+33628246935 (WA)","membership":"join"},"time":"2026-03-06T19:23:25.498917524Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:25.499382604Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5510,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915737138589:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915737138589%3Amatrix.theocloud.dev","duration":4.392516,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:25.505114693Z","message":"Request completed"} +{"level":"debug","transaction_id":"2213","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.51179056Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2213","time":"2026-03-06T19:23:25.512128806Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5509,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-131026634416177:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":120.996174,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:25.621016297Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5511,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-269578168975378:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":130.533896,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+573218770957 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:25.6367236Z","message":"Request completed"} +{"level":"debug","transaction_id":"2214","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.650885783Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2214","time":"2026-03-06T19:23:25.651179609Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2215","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.670572764Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2215","time":"2026-03-06T19:23:25.670891524Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5512,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-131026634416177:matrix.theocloud.dev?user_id=%40whatsapp_lid-131026634416177%3Amatrix.theocloud.dev","duration":128.920191,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","membership":"join"},"time":"2026-03-06T19:23:25.750702098Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5513,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-269578168975378:matrix.theocloud.dev?user_id=%40whatsapp_lid-269578168975378%3Amatrix.theocloud.dev","duration":125.814866,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+573218770957 (WA)","membership":"join"},"time":"2026-03-06T19:23:25.763321258Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:25.764105586Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5516,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917624286664%3Amatrix.theocloud.dev","duration":6.354873,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917624286664","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.770746253Z","message":"Request completed"} +{"level":"debug","transaction_id":"2216","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.773795633Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2216","time":"2026-03-06T19:23:25.774091345Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5517,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624286664:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917624286664%3Amatrix.theocloud.dev","duration":4.630747,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:25.775763996Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5514,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491723825475%3Amatrix.theocloud.dev","duration":123.473267,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<99821 bytes>","time":"2026-03-06T19:23:25.791250527Z","message":"Request completed"} +{"level":"debug","transaction_id":"2217","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.794694516Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2217","time":"2026-03-06T19:23:25.795013206Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5519,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723825475:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491723825475%3Amatrix.theocloud.dev","duration":7.420735,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:25.799084099Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5520,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/kSvURfaEOdqJyPCTYBrRHymP?user_id=%40whatsapp_491723825475%3Amatrix.theocloud.dev","duration":7.556228,"status_code":200,"response_length":99821,"response_mime":"image/jpeg","time":"2026-03-06T19:23:25.806747116Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5518,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624286664:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917624286664%3Amatrix.theocloud.dev","duration":38.07825,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917624286664 (WA)"},"time":"2026-03-06T19:23:25.814036198Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:25.814801738Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5521,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491723825475:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491723825475%3Amatrix.theocloud.dev","duration":13.041775,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kSvURfaEOdqJyPCTYBrRHymP"},"time":"2026-03-06T19:23:25.819982912Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917655091547@s.whatsapp.net","alternate_jid":"251745280225436@lid","time":"2026-03-06T19:23:25.820551218Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491783743461@s.whatsapp.net","alternate_jid":"187849085329414@lid","time":"2026-03-06T19:23:25.820654515Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"129064018960516@lid","alternate_jid":"491796839444@s.whatsapp.net","time":"2026-03-06T19:23:25.820737976Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5522,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915738139856%3Amatrix.theocloud.dev","duration":5.991554,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915738139856","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.827214444Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5523,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915738139856:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915738139856%3Amatrix.theocloud.dev","duration":3.435678,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:25.831032089Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5524,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915738139856:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915738139856%3Amatrix.theocloud.dev","duration":18.529347,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yating (WA)"},"time":"2026-03-06T19:23:25.849708873Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"19460647870473@lid","alternate_jid":"4915738139856@s.whatsapp.net","time":"2026-03-06T19:23:25.850132326Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"21079833710744@lid","alternate_jid":"4917642922234@s.whatsapp.net","time":"2026-03-06T19:23:25.850241978Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5525,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491622164435%3Amatrix.theocloud.dev","duration":6.082698,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491622164435","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.856841438Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5515,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242828928122951:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":119.499875,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uLBwZSpsbtKsjdaywYYetTPS","com.beeper.exclude_from_timeline":true,"displayname":"Lulu (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:25.871241853Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5526,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491622164435:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491622164435%3Amatrix.theocloud.dev","duration":14.821005,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:25.871988536Z","message":"Request completed"} +{"level":"debug","transaction_id":"2218","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.887227198Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2218","time":"2026-03-06T19:23:25.887489665Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5528,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491622164435:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491622164435%3Amatrix.theocloud.dev","duration":26.972012,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Linus Grabenhenrich (WA)"},"time":"2026-03-06T19:23:25.899112106Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"264544232407203@lid","alternate_jid":"491622164435@s.whatsapp.net","time":"2026-03-06T19:23:25.899675383Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915202152397@s.whatsapp.net","time":"2026-03-06T19:23:25.900006366Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5529,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915202152397%3Amatrix.theocloud.dev","duration":4.080461,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915202152397","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:25.904360678Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5530,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915202152397:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915202152397%3Amatrix.theocloud.dev","duration":6.499795,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:25.911275894Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5531,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915202152397:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915202152397%3Amatrix.theocloud.dev","duration":10.621184,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915202152397 (WA)"},"time":"2026-03-06T19:23:25.922103392Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:25.923120294Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5527,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242828928122951:matrix.theocloud.dev?user_id=%40whatsapp_lid-242828928122951%3Amatrix.theocloud.dev","duration":73.516395,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uLBwZSpsbtKsjdaywYYetTPS","com.beeper.exclude_from_timeline":true,"displayname":"Lulu (WA)","membership":"join"},"time":"2026-03-06T19:23:25.945448079Z","message":"Request completed"} +{"level":"debug","transaction_id":"2219","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:25.95959825Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2219","time":"2026-03-06T19:23:25.959910794Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:25.980178862Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5532,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21079833710744:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":99.724123,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VnmYzoNKYWXdotaucesMOFXO","com.beeper.exclude_from_timeline":true,"displayname":"Burak C. (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:26.04605424Z","message":"Request completed"} +{"level":"debug","transaction_id":"2220","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.065567384Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2220","time":"2026-03-06T19:23:26.065914011Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:26.100207512Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5533,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917624286664%3Amatrix.theocloud.dev","duration":127.895536,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<51909 bytes>","time":"2026-03-06T19:23:26.120527263Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5535,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624286664:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917624286664%3Amatrix.theocloud.dev","duration":10.25109,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:26.131175685Z","message":"Request completed"} +{"level":"debug","transaction_id":"2221","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.135167936Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2221","time":"2026-03-06T19:23:26.135492213Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917657607100@s.whatsapp.net","portal_mxid":"!qmhtENTgisuuURICKB:matrix.theocloud.dev","event_loop_index":5,"action":"handle matrix event","event_id":"$4dwSEeHsTlFqYlY347j3I0lQutBf4mFa-MUbi-Xh9q0","event_type":"m.room.member","event_id":"$4dwSEeHsTlFqYlY347j3I0lQutBf4mFa-MUbi-Xh9q0","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:26.135941648Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5536,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/lOpjeOmdOtoFIqjjEZqITllh?user_id=%40whatsapp_4917624286664%3Amatrix.theocloud.dev","duration":12.614829,"status_code":200,"response_length":51909,"response_mime":"image/jpeg","time":"2026-03-06T19:23:26.143947031Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5538,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624286664:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917624286664%3Amatrix.theocloud.dev","duration":16.093111,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/lOpjeOmdOtoFIqjjEZqITllh"},"time":"2026-03-06T19:23:26.160347099Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5534,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21079833710744:matrix.theocloud.dev?user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":176.463875,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VnmYzoNKYWXdotaucesMOFXO","com.beeper.exclude_from_timeline":true,"displayname":"Burak C. (WA)","membership":"join"},"time":"2026-03-06T19:23:26.223260608Z","message":"Request completed"} +{"level":"debug","transaction_id":"2222","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.245059269Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2222","time":"2026-03-06T19:23:26.245416442Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5537,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915202152397%3Amatrix.theocloud.dev","duration":141.75223,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<37252 bytes>","time":"2026-03-06T19:23:26.279816242Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5541,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915202152397:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915202152397%3Amatrix.theocloud.dev","duration":5.651283,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:26.285894679Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5542,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/YxjlcvfiYZhYJDmOpfPmCFPv?user_id=%40whatsapp_4915202152397%3Amatrix.theocloud.dev","duration":6.915496,"status_code":200,"response_length":37252,"response_mime":"image/jpeg","time":"2026-03-06T19:23:26.292979542Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5543,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915202152397:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915202152397%3Amatrix.theocloud.dev","duration":6.505732,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YxjlcvfiYZhYJDmOpfPmCFPv"},"time":"2026-03-06T19:23:26.299822821Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491756898822@s.whatsapp.net","time":"2026-03-06T19:23:26.300776726Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5544,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491756898822%3Amatrix.theocloud.dev","duration":3.819042,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491756898822","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:26.304880096Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5545,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491756898822:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491756898822%3Amatrix.theocloud.dev","duration":15.036259,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:26.320170231Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5539,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-154361158209573:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":177.450257,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IXopfLpbkZjTYKqCxXuZQBCZ","com.beeper.exclude_from_timeline":true,"displayname":"Tami (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:26.338841427Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5546,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491756898822:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491756898822%3Amatrix.theocloud.dev","duration":35.61275,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Enes (WA)"},"time":"2026-03-06T19:23:26.355994044Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:26.356786683Z","message":""} +{"level":"debug","transaction_id":"2223","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.358520097Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2223","time":"2026-03-06T19:23:26.358781097Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5540,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-197731905720552:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":152.784015,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iagMrDmHqhpMisgHlhpvKrII","com.beeper.exclude_from_timeline":true,"displayname":"+4917670764502 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:26.377076333Z","message":"Request completed"} +{"level":"debug","transaction_id":"2224","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.398234191Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2224","time":"2026-03-06T19:23:26.398566151Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5547,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-154361158209573:matrix.theocloud.dev?user_id=%40whatsapp_lid-154361158209573%3Amatrix.theocloud.dev","duration":142.063027,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IXopfLpbkZjTYKqCxXuZQBCZ","com.beeper.exclude_from_timeline":true,"displayname":"Tami (WA)","membership":"join"},"time":"2026-03-06T19:23:26.481693112Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:26.482643455Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5549,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917631572023%3Amatrix.theocloud.dev","duration":10.667978,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917631572023","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:26.493589405Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5550,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631572023:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631572023%3Amatrix.theocloud.dev","duration":8.443783,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:26.502370316Z","message":"Request completed"} +{"level":"debug","transaction_id":"2225","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.512808653Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2225","time":"2026-03-06T19:23:26.513128042Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5548,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-197731905720552:matrix.theocloud.dev?user_id=%40whatsapp_lid-197731905720552%3Amatrix.theocloud.dev","duration":158.75315,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iagMrDmHqhpMisgHlhpvKrII","com.beeper.exclude_from_timeline":true,"displayname":"+4917670764502 (WA)","membership":"join"},"time":"2026-03-06T19:23:26.536756568Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5551,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631572023:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631572023%3Amatrix.theocloud.dev","duration":63.863154,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917631572023 (WA)"},"time":"2026-03-06T19:23:26.566436572Z","message":"Request completed"} +{"level":"debug","transaction_id":"2226","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.566648403Z","message":"Starting handling of transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:26.567444744Z","message":""} +{"level":"debug","transaction_id":"2226","time":"2026-03-06T19:23:26.569136043Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5552,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-42717778305055:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.888653,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hfobDmrIRJPvBJWBuzQwCwcs","com.beeper.exclude_from_timeline":true,"displayname":"+491784134011 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:26.609778619Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:26.614657586Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5554,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491756898822:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491756898822%3Amatrix.theocloud.dev","duration":5.281468,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:26.620262353Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"4917657607100@s.whatsapp.net","alternate_jid":"241506145304775@lid","time":"2026-03-06T19:23:26.620909302Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491796029484@s.whatsapp.net","time":"2026-03-06T19:23:26.621306564Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5555,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491796029484%3Amatrix.theocloud.dev","duration":6.870797,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491796029484","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:26.628492908Z","message":"Request completed"} +{"level":"debug","transaction_id":"2227","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.631078397Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2227","time":"2026-03-06T19:23:26.631328013Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5556,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491796029484:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491796029484%3Amatrix.theocloud.dev","duration":5.231112,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:26.634065967Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5557,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491796029484:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491796029484%3Amatrix.theocloud.dev","duration":24.311793,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491796029484 (WA)"},"time":"2026-03-06T19:23:26.658593222Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:26.659468485Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5553,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-42717778305055:matrix.theocloud.dev?user_id=%40whatsapp_lid-42717778305055%3Amatrix.theocloud.dev","duration":87.960112,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hfobDmrIRJPvBJWBuzQwCwcs","com.beeper.exclude_from_timeline":true,"displayname":"+491784134011 (WA)","membership":"join"},"time":"2026-03-06T19:23:26.698582006Z","message":"Request completed"} +{"level":"debug","transaction_id":"2228","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.711295033Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2228","time":"2026-03-06T19:23:26.711568605Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:26.735421814Z","message":""} +{"level":"debug","transaction_id":"2229","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:26.765069411Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2229","time":"2026-03-06T19:23:26.765183743Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5558,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-260580380246145:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":99.883504,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Ibrahim (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:26.799569645Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:26.809730079Z","message":""} +{"level":"debug","transaction_id":"2230","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:26.817064Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2230","time":"2026-03-06T19:23:26.817413211Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5559,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917631572023%3Amatrix.theocloud.dev","duration":129.932763,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<35470 bytes>","time":"2026-03-06T19:23:26.874002509Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5562,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631572023:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917631572023%3Amatrix.theocloud.dev","duration":17.072089,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:26.891431561Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5563,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/yMucGMqhRwtOhoOMhODvcOTM?user_id=%40whatsapp_4917631572023%3Amatrix.theocloud.dev","duration":11.345727,"status_code":200,"response_length":35470,"response_mime":"image/jpeg","time":"2026-03-06T19:23:26.902950357Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5564,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631572023:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917631572023%3Amatrix.theocloud.dev","duration":8.803819,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/yMucGMqhRwtOhoOMhODvcOTM"},"time":"2026-03-06T19:23:26.912125318Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5560,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-260580380246145:matrix.theocloud.dev?user_id=%40whatsapp_lid-260580380246145%3Amatrix.theocloud.dev","duration":160.674089,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Ibrahim (WA)","membership":"join"},"time":"2026-03-06T19:23:26.961002989Z","message":"Request completed"} +{"level":"debug","transaction_id":"2231","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.002275193Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2231","time":"2026-03-06T19:23:27.002589133Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5561,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491796029484%3Amatrix.theocloud.dev","duration":167.254343,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<29962 bytes>","time":"2026-03-06T19:23:27.023214375Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5567,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491796029484:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491796029484%3Amatrix.theocloud.dev","duration":9.397339,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:27.033008836Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5568,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/QOjOgihlpwAawViSMeobfGIT?user_id=%40whatsapp_491796029484%3Amatrix.theocloud.dev","duration":6.433235,"status_code":200,"response_length":29962,"response_mime":"image/jpeg","time":"2026-03-06T19:23:27.039588182Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5569,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491796029484:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491796029484%3Amatrix.theocloud.dev","duration":17.244878,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QOjOgihlpwAawViSMeobfGIT"},"time":"2026-03-06T19:23:27.057104118Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:27.058385583Z","message":"04011d43152bfd67ff6416"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5565,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95765573664918:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":165.479094,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wAsGvRuajQqSBvCWvpxVfrUV","com.beeper.exclude_from_timeline":true,"displayname":"Raha (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:27.078886854Z","message":"Request completed"} +{"level":"debug","transaction_id":"2232","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.09029027Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2232","time":"2026-03-06T19:23:27.09064905Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5566,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-146720914698447:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":162.12967,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Illia (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:27.124187207Z","message":"Request completed"} +{"level":"debug","transaction_id":"2233","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.160253443Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2233","time":"2026-03-06T19:23:27.160619695Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5570,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95765573664918:matrix.theocloud.dev?user_id=%40whatsapp_lid-95765573664918%3Amatrix.theocloud.dev","duration":117.583893,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wAsGvRuajQqSBvCWvpxVfrUV","com.beeper.exclude_from_timeline":true,"displayname":"Raha (WA)","membership":"join"},"time":"2026-03-06T19:23:27.197291114Z","message":"Request completed"} +{"level":"debug","transaction_id":"2234","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.218234766Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2234","time":"2026-03-06T19:23:27.218568402Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:27.228243363Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5571,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-146720914698447:matrix.theocloud.dev?user_id=%40whatsapp_lid-146720914698447%3Amatrix.theocloud.dev","duration":132.332192,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Illia (WA)","membership":"join"},"time":"2026-03-06T19:23:27.257224387Z","message":"Request completed"} +{"level":"debug","transaction_id":"2235","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.272291935Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2235","time":"2026-03-06T19:23:27.272628644Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5572,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-46462989807759:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":113.555325,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SdTmOJWpHwJTYoZGTBbbMMFd","com.beeper.exclude_from_timeline":true,"displayname":"Jakob (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:27.311882408Z","message":"Request completed"} +{"level":"debug","transaction_id":"2236","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.327548573Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2236","time":"2026-03-06T19:23:27.327872013Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5573,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-242897714737270%3Amatrix.theocloud.dev","duration":122.092557,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<69735 bytes>","time":"2026-03-06T19:23:27.363365821Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5574,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-91057719120052:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":111.500288,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xTXyjRsNQSwHdMKStsYuFhvn","com.beeper.exclude_from_timeline":true,"displayname":"+491773825063 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:27.369701906Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5576,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242897714737270:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-242897714737270%3Amatrix.theocloud.dev","duration":10.736563,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:27.374475342Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5578,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/PtEKIKQIEDUeNfbTchRCQJHk?user_id=%40whatsapp_lid-242897714737270%3Amatrix.theocloud.dev","duration":7.120203,"status_code":200,"response_length":69735,"response_mime":"image/jpeg","time":"2026-03-06T19:23:27.381714836Z","message":"Request completed"} +{"level":"debug","transaction_id":"2237","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.395768973Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2237","time":"2026-03-06T19:23:27.396070831Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5579,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-242897714737270:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-242897714737270%3Amatrix.theocloud.dev","duration":14.801589,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PtEKIKQIEDUeNfbTchRCQJHk"},"time":"2026-03-06T19:23:27.396734821Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:27.397913408Z","message":"04011d43152bfd67ff6416"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5575,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-46462989807759:matrix.theocloud.dev?user_id=%40whatsapp_lid-46462989807759%3Amatrix.theocloud.dev","duration":130.650392,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SdTmOJWpHwJTYoZGTBbbMMFd","com.beeper.exclude_from_timeline":true,"displayname":"Jakob (WA)","membership":"join"},"time":"2026-03-06T19:23:27.443377681Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:27.444368812Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5580,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917631622435%3Amatrix.theocloud.dev","duration":10.540236,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917631622435","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:27.455196728Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5581,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631622435:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631622435%3Amatrix.theocloud.dev","duration":5.96627,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:27.46155614Z","message":"Request completed"} +{"level":"debug","transaction_id":"2238","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.464031558Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2238","time":"2026-03-06T19:23:27.464320704Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5582,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631622435:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917631622435%3Amatrix.theocloud.dev","duration":28.662123,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jakob (WA)"},"time":"2026-03-06T19:23:27.490424718Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:27.491266107Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5577,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-91057719120052:matrix.theocloud.dev?user_id=%40whatsapp_lid-91057719120052%3Amatrix.theocloud.dev","duration":148.804197,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xTXyjRsNQSwHdMKStsYuFhvn","com.beeper.exclude_from_timeline":true,"displayname":"+491773825063 (WA)","membership":"join"},"time":"2026-03-06T19:23:27.519376337Z","message":"Request completed"} +{"level":"debug","transaction_id":"2239","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.531694547Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2239","time":"2026-03-06T19:23:27.531927471Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:27.562633876Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"242897714737270@lid","alternate_jid":"4917680834617@s.whatsapp.net","time":"2026-03-06T19:23:27.562703019Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5584,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_31682284303%3Amatrix.theocloud.dev","duration":4.194513,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_31682284303","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:27.567450334Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5585,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_31682284303:matrix.theocloud.dev/displayname?user_id=%40whatsapp_31682284303%3Amatrix.theocloud.dev","duration":2.838387,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:23:27.570575773Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5583,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-115070881280105:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":77.565287,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nizar Khalifa (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:27.597834766Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5586,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_31682284303:matrix.theocloud.dev/displayname?user_id=%40whatsapp_31682284303%3Amatrix.theocloud.dev","duration":33.448201,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Siddhant (WA)"},"time":"2026-03-06T19:23:27.604164775Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"252960856604824@lid","alternate_jid":"31682284303@s.whatsapp.net","time":"2026-03-06T19:23:27.604610648Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4915733731338@s.whatsapp.net","time":"2026-03-06T19:23:27.604924658Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5588,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915733731338%3Amatrix.theocloud.dev","duration":4.082486,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915733731338","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:27.609226938Z","message":"Request completed"} +{"level":"debug","transaction_id":"2240","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.611780928Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2240","time":"2026-03-06T19:23:27.611999464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5589,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915733731338:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915733731338%3Amatrix.theocloud.dev","duration":4.050639,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:27.613593612Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5590,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915733731338:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915733731338%3Amatrix.theocloud.dev","duration":13.089896,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915733731338 (WA)"},"time":"2026-03-06T19:23:27.626849034Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:27.627725135Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5587,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-115070881280105:matrix.theocloud.dev?user_id=%40whatsapp_lid-115070881280105%3Amatrix.theocloud.dev","duration":56.17639,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nizar Khalifa (WA)","membership":"join"},"time":"2026-03-06T19:23:27.65450564Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:27.657145117Z","message":""} +{"level":"debug","transaction_id":"2241","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.665250095Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2241","time":"2026-03-06T19:23:27.665502156Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5591,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-9461947228209:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":86.694851,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"🤏🏻😎 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:27.741996342Z","message":"Request completed"} +{"level":"debug","transaction_id":"2242","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.757779354Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2242","time":"2026-03-06T19:23:27.758018983Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5592,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917631622435%3Amatrix.theocloud.dev","duration":109.274137,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<47889 bytes>","time":"2026-03-06T19:23:27.777275317Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5594,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631622435:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917631622435%3Amatrix.theocloud.dev","duration":19.428565,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:27.797046598Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5595,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LtShlzDofdLVWGpeUFRHyIqM?user_id=%40whatsapp_4917631622435%3Amatrix.theocloud.dev","duration":13.479476,"status_code":200,"response_length":47889,"response_mime":"image/jpeg","time":"2026-03-06T19:23:27.810647669Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5596,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917631622435:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917631622435%3Amatrix.theocloud.dev","duration":13.656107,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LtShlzDofdLVWGpeUFRHyIqM"},"time":"2026-03-06T19:23:27.824567779Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5593,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-9461947228209:matrix.theocloud.dev?user_id=%40whatsapp_lid-9461947228209%3Amatrix.theocloud.dev","duration":122.287905,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"🤏🏻😎 (WA)","membership":"join"},"time":"2026-03-06T19:23:27.86503107Z","message":"Request completed"} +{"level":"debug","transaction_id":"2243","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.883715257Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2243","time":"2026-03-06T19:23:27.884012226Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5597,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-167500134244415:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":111.863327,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+5521987169367 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:27.937484117Z","message":"Request completed"} +{"level":"debug","transaction_id":"2244","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:27.953074783Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2244","time":"2026-03-06T19:23:27.953411702Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5598,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-199450228215815:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":123.840078,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ueHGVqQluxwydpXALcBNjGZi","com.beeper.exclude_from_timeline":true,"displayname":"🏋️Матвей (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:27.9899595Z","message":"Request completed"} +{"level":"debug","transaction_id":"2245","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.010252362Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2245","time":"2026-03-06T19:23:28.010654444Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5599,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-167500134244415:matrix.theocloud.dev?user_id=%40whatsapp_lid-167500134244415%3Amatrix.theocloud.dev","duration":138.023005,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+5521987169367 (WA)","membership":"join"},"time":"2026-03-06T19:23:28.076323438Z","message":"Request completed"} +{"level":"debug","transaction_id":"2246","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.106962376Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2246","time":"2026-03-06T19:23:28.107193693Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5600,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-199450228215815:matrix.theocloud.dev?user_id=%40whatsapp_lid-199450228215815%3Amatrix.theocloud.dev","duration":145.481454,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ueHGVqQluxwydpXALcBNjGZi","com.beeper.exclude_from_timeline":true,"displayname":"🏋️Матвей (WA)","membership":"join"},"time":"2026-03-06T19:23:28.136210894Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:28.137085528Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5602,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491784134011%3Amatrix.theocloud.dev","duration":11.43687,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491784134011","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:28.148813292Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5603,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491784134011:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491784134011%3Amatrix.theocloud.dev","duration":8.536324,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:28.157729767Z","message":"Request completed"} +{"level":"debug","transaction_id":"2247","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.159643443Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2247","time":"2026-03-06T19:23:28.159914501Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:28.166442163Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5605,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915733731338:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915733731338%3Amatrix.theocloud.dev","duration":4.267289,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:28.171052237Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491736669329@s.whatsapp.net","alternate_jid":"150147879182516@lid","time":"2026-03-06T19:23:28.171536733Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917629651824@s.whatsapp.net","time":"2026-03-06T19:23:28.17183007Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5604,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491784134011:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491784134011%3Amatrix.theocloud.dev","duration":14.503153,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491784134011 (WA)"},"time":"2026-03-06T19:23:28.172424288Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:28.17317991Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5606,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917629651824%3Amatrix.theocloud.dev","duration":3.653516,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917629651824","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:28.175705754Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5607,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917629651824:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917629651824%3Amatrix.theocloud.dev","duration":2.207223,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:28.178299623Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5601,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-151466652258375:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":129.932903,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tANcdERwLashaSrYAvcDCKdn","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Azimi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:28.207253129Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5608,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917629651824:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917629651824%3Amatrix.theocloud.dev","duration":39.783448,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917629651824 (WA)"},"time":"2026-03-06T19:23:28.218286661Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:28.219102557Z","message":""} +{"level":"debug","transaction_id":"2248","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.22355835Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2248","time":"2026-03-06T19:23:28.223864748Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5609,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-151466652258375:matrix.theocloud.dev?user_id=%40whatsapp_lid-151466652258375%3Amatrix.theocloud.dev","duration":93.210429,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tANcdERwLashaSrYAvcDCKdn","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Azimi (WA)","membership":"join"},"time":"2026-03-06T19:23:28.301259201Z","message":"Request completed"} +{"level":"debug","transaction_id":"2249","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.313089283Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2249","time":"2026-03-06T19:23:28.313326118Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917623702252@s.whatsapp.net","portal_mxid":"!LBUTlwigiMBbyeQwfV:matrix.theocloud.dev","event_loop_index":16,"action":"handle matrix event","event_id":"$TeZVnflFRJbBYALTu0ddahzxYxyBpEY6zXjedISAbZg","event_type":"m.room.member","event_id":"$TeZVnflFRJbBYALTu0ddahzxYxyBpEY6zXjedISAbZg","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:28.313749502Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"2250","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.326264317Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2250","time":"2026-03-06T19:23:28.326593204Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:28.331421186Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:28.389356762Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5610,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198268692730012:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":94.841664,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Charles Grütte (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:28.396835955Z","message":"Request completed"} +{"level":"debug","transaction_id":"2251","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.431013448Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2251","time":"2026-03-06T19:23:28.431282619Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5611,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491784134011%3Amatrix.theocloud.dev","duration":107.652401,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55575 bytes>","time":"2026-03-06T19:23:28.446598945Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5614,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491784134011:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491784134011%3Amatrix.theocloud.dev","duration":2.52731,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:28.449424761Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5615,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LGDkGLdxDoMtgLefxezWdwjt?user_id=%40whatsapp_491784134011%3Amatrix.theocloud.dev","duration":4.013063,"status_code":200,"response_length":55575,"response_mime":"image/jpeg","time":"2026-03-06T19:23:28.453611731Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5616,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491784134011:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491784134011%3Amatrix.theocloud.dev","duration":14.818002,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LGDkGLdxDoMtgLefxezWdwjt"},"time":"2026-03-06T19:23:28.468654974Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5612,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917629651824%3Amatrix.theocloud.dev","duration":151.35679,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<50641 bytes>","time":"2026-03-06T19:23:28.548610471Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5618,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917629651824:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917629651824%3Amatrix.theocloud.dev","duration":9.665393,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:28.558636599Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5613,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198268692730012:matrix.theocloud.dev?user_id=%40whatsapp_lid-198268692730012%3Amatrix.theocloud.dev","duration":172.846608,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Charles Grütte (WA)","membership":"join"},"time":"2026-03-06T19:23:28.57051606Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5619,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/NXtmxxGoKAULgrpVWCCWiGSL?user_id=%40whatsapp_4917629651824%3Amatrix.theocloud.dev","duration":20.907893,"status_code":200,"response_length":50641,"response_mime":"image/jpeg","time":"2026-03-06T19:23:28.57967789Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5621,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917629651824:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917629651824%3Amatrix.theocloud.dev","duration":17.591645,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NXtmxxGoKAULgrpVWCCWiGSL"},"time":"2026-03-06T19:23:28.597512098Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917663685614@s.whatsapp.net","time":"2026-03-06T19:23:28.598448961Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","transaction_id":"2252","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.598998689Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2252","time":"2026-03-06T19:23:28.599271981Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5622,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917663685614%3Amatrix.theocloud.dev","duration":5.039604,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917663685614","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:28.603777013Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5623,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663685614:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663685614%3Amatrix.theocloud.dev","duration":8.112452,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:28.612231342Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5624,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663685614:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663685614%3Amatrix.theocloud.dev","duration":21.571324,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917663685614 (WA)"},"time":"2026-03-06T19:23:28.634004021Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:28.63483228Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5617,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66662220976313:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":176.918059,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VbuQUzvHAEzAXXFZFRRmjwLh","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:28.646312453Z","message":"Request completed"} +{"level":"debug","transaction_id":"2253","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.663380771Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2253","time":"2026-03-06T19:23:28.663680254Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5620,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-35472185270487:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":138.373124,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/aGIkoYZtmMGdsipWSbCCBnSl","com.beeper.exclude_from_timeline":true,"displayname":"Neesha (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:28.709790078Z","message":"Request completed"} +{"level":"debug","transaction_id":"2254","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.724961481Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2254","time":"2026-03-06T19:23:28.726049902Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5625,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66662220976313:matrix.theocloud.dev?user_id=%40whatsapp_lid-66662220976313%3Amatrix.theocloud.dev","duration":104.265334,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VbuQUzvHAEzAXXFZFRRmjwLh","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","membership":"join"},"time":"2026-03-06T19:23:28.751303657Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:28.75227146Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5627,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917616858177%3Amatrix.theocloud.dev","duration":8.019841,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917616858177","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:28.760636531Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5628,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917616858177:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917616858177%3Amatrix.theocloud.dev","duration":7.311501,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:28.768380146Z","message":"Request completed"} +{"level":"debug","transaction_id":"2255","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.769915696Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2255","time":"2026-03-06T19:23:28.770177325Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5629,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917616858177:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917616858177%3Amatrix.theocloud.dev","duration":13.048549,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"vladislavilcuk8 (WA)"},"time":"2026-03-06T19:23:28.781627606Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:28.782529129Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:28.785172936Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5630,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663685614:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917663685614%3Amatrix.theocloud.dev","duration":3.458097,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:28.78897745Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5631,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915560620181%3Amatrix.theocloud.dev","duration":5.145555,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915560620181","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:28.79510338Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5632,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915560620181:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915560620181%3Amatrix.theocloud.dev","duration":5.570474,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:28.801014615Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5626,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-35472185270487:matrix.theocloud.dev?user_id=%40whatsapp_lid-35472185270487%3Amatrix.theocloud.dev","duration":94.101616,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/aGIkoYZtmMGdsipWSbCCBnSl","com.beeper.exclude_from_timeline":true,"displayname":"Neesha (WA)","membership":"join"},"time":"2026-03-06T19:23:28.811684827Z","message":"Request completed"} +{"level":"debug","transaction_id":"2256","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.824908681Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2256","time":"2026-03-06T19:23:28.825160741Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5633,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915560620181:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915560620181%3Amatrix.theocloud.dev","duration":35.53732,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Lorena (WA)"},"time":"2026-03-06T19:23:28.83674442Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"80565550247962@lid","alternate_jid":"4915560620181@s.whatsapp.net","time":"2026-03-06T19:23:28.837277247Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"142237052747971@lid","alternate_jid":"4917680622993@s.whatsapp.net","time":"2026-03-06T19:23:28.837429572Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"198041059483854@lid","alternate_jid":"491605556877@s.whatsapp.net","time":"2026-03-06T19:23:28.837539644Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5635,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917656906867%3Amatrix.theocloud.dev","duration":8.430862,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917656906867","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:28.846537694Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5636,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656906867:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656906867%3Amatrix.theocloud.dev","duration":8.079975,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:28.854990627Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5637,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656906867:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656906867%3Amatrix.theocloud.dev","duration":14.802916,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Emre-Can (WA)"},"time":"2026-03-06T19:23:28.869999507Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"210453582090448@lid","alternate_jid":"4917656906867@s.whatsapp.net","time":"2026-03-06T19:23:28.870590163Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5638,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915238927724%3Amatrix.theocloud.dev","duration":5.277626,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915238927724","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:28.876444336Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5639,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915238927724:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915238927724%3Amatrix.theocloud.dev","duration":4.467806,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:28.881290268Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5634,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-79564369862829:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":101.897473,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/flJkpRufCIwToDVTWBMGyAsV","com.beeper.exclude_from_timeline":true,"displayname":"Batu (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:28.914519513Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:28.932240925Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5640,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915238927724:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915238927724%3Amatrix.theocloud.dev","duration":51.509674,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"hanneskannes (WA)"},"time":"2026-03-06T19:23:28.933009259Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"25628103458978@lid","alternate_jid":"4915238927724@s.whatsapp.net","time":"2026-03-06T19:23:28.933616118Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"4917621539471@s.whatsapp.net","time":"2026-03-06T19:23:28.934001298Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","transaction_id":"2257","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:28.936537827Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2257","time":"2026-03-06T19:23:28.936814193Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5642,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917621539471%3Amatrix.theocloud.dev","duration":5.805145,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917621539471","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:28.940102085Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5643,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621539471:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621539471%3Amatrix.theocloud.dev","duration":7.699894,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:28.948189253Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5645,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621539471:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621539471%3Amatrix.theocloud.dev","duration":19.345872,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917621539471 (WA)"},"time":"2026-03-06T19:23:28.967770005Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:28.968702328Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5641,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-79564369862829:matrix.theocloud.dev?user_id=%40whatsapp_lid-79564369862829%3Amatrix.theocloud.dev","duration":94.361289,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/flJkpRufCIwToDVTWBMGyAsV","com.beeper.exclude_from_timeline":true,"displayname":"Batu (WA)","membership":"join"},"time":"2026-03-06T19:23:29.009638451Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:29.010518044Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5646,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915206670209%3Amatrix.theocloud.dev","duration":6.390841,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915206670209","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:29.017226947Z","message":"Request completed"} +{"level":"debug","transaction_id":"2258","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:29.035971617Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2258","time":"2026-03-06T19:23:29.036289119Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5647,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915206670209:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915206670209%3Amatrix.theocloud.dev","duration":19.951334,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:29.037658516Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5644,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917616858177%3Amatrix.theocloud.dev","duration":126.807325,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<38950 bytes>","time":"2026-03-06T19:23:29.067461163Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5648,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915206670209:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915206670209%3Amatrix.theocloud.dev","duration":31.764794,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915206670209 (WA)"},"time":"2026-03-06T19:23:29.069645338Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5649,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917616858177:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917616858177%3Amatrix.theocloud.dev","duration":2.210994,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:29.070068721Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:29.070562436Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5650,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/TWDQsXQOswgwfFNyQfxoSvFG?user_id=%40whatsapp_4917616858177%3Amatrix.theocloud.dev","duration":3.062581,"status_code":200,"response_length":38950,"response_mime":"image/jpeg","time":"2026-03-06T19:23:29.07329159Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5651,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917616858177:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917616858177%3Amatrix.theocloud.dev","duration":4.541001,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TWDQsXQOswgwfFNyQfxoSvFG"},"time":"2026-03-06T19:23:29.078184944Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:29.079070194Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5652,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917643655863%3Amatrix.theocloud.dev","duration":4.493787,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917643655863","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:29.083867446Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5653,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917643655863:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917643655863%3Amatrix.theocloud.dev","duration":5.277626,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:29.089519287Z","message":"Request completed"} +{"level":"debug","transaction_id":"2259","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:29.112191463Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2259","time":"2026-03-06T19:23:29.112315014Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5654,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917643655863:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917643655863%3Amatrix.theocloud.dev","duration":24.504417,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917643655863 (WA)"},"time":"2026-03-06T19:23:29.114239656Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:29.114809568Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:29.220178269Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:29.264465491Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5655,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915206670209%3Amatrix.theocloud.dev","duration":91.114047,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<50481 bytes>","time":"2026-03-06T19:23:29.319228415Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5657,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915206670209:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915206670209%3Amatrix.theocloud.dev","duration":1.691089,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:29.321371942Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:29.32216961Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5658,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/LsgcXxrUhTRRBFjRTRZvfCwL?user_id=%40whatsapp_4915206670209%3Amatrix.theocloud.dev","duration":1.703521,"status_code":200,"response_length":50481,"response_mime":"image/jpeg","time":"2026-03-06T19:23:29.323226113Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5659,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915206670209:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915206670209%3Amatrix.theocloud.dev","duration":4.04575,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LsgcXxrUhTRRBFjRTRZvfCwL"},"time":"2026-03-06T19:23:29.327639861Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5656,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917643655863%3Amatrix.theocloud.dev","duration":90.565156,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34930 bytes>","time":"2026-03-06T19:23:29.366556986Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5662,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917643655863:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917643655863%3Amatrix.theocloud.dev","duration":3.292222,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:29.370237181Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5663,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/HEYbsdWGfxSVbkYseioquJXY?user_id=%40whatsapp_4917643655863%3Amatrix.theocloud.dev","duration":3.492948,"status_code":200,"response_length":34930,"response_mime":"image/jpeg","time":"2026-03-06T19:23:29.373856684Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5664,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917643655863:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917643655863%3Amatrix.theocloud.dev","duration":10.76422,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/HEYbsdWGfxSVbkYseioquJXY"},"time":"2026-03-06T19:23:29.384854456Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5660,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66189975912485:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":101.660009,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":". (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:29.430369504Z","message":"Request completed"} +{"level":"debug","transaction_id":"2260","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:29.456913384Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2260","time":"2026-03-06T19:23:29.457164746Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5661,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917621539471%3Amatrix.theocloud.dev","duration":124.308231,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<45063 bytes>","time":"2026-03-06T19:23:29.458804361Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5667,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621539471:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917621539471%3Amatrix.theocloud.dev","duration":5.009013,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:29.464107969Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5668,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/kFIufrKainWlcYsRHZnBIWOw?user_id=%40whatsapp_4917621539471%3Amatrix.theocloud.dev","duration":6.270293,"status_code":200,"response_length":45063,"response_mime":"image/jpeg","time":"2026-03-06T19:23:29.470530938Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5669,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621539471:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917621539471%3Amatrix.theocloud.dev","duration":9.354665,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kFIufrKainWlcYsRHZnBIWOw"},"time":"2026-03-06T19:23:29.480114196Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5670,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915124120175%3Amatrix.theocloud.dev","duration":8.112871,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915124120175","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:29.48929244Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5671,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915124120175:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915124120175%3Amatrix.theocloud.dev","duration":3.050219,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:29.492689006Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5665,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-75930894614615:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":143.652775,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Vincent (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:29.529269629Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5672,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915124120175:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915124120175%3Amatrix.theocloud.dev","duration":39.051571,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Mumen Moawia (WA)"},"time":"2026-03-06T19:23:29.531903239Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"70476638453883@lid","alternate_jid":"4915124120175@s.whatsapp.net","time":"2026-03-06T19:23:29.532449405Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"75930894614615@lid","alternate_jid":"4917684328837@s.whatsapp.net","time":"2026-03-06T19:23:29.532573794Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5674,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915221654021:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915221654021%3Amatrix.theocloud.dev","duration":16.541847,"status_code":200,"response_length":37,"response_mime":"application/json","time":"2026-03-06T19:23:29.549376642Z","message":"Request completed"} +{"level":"debug","transaction_id":"2261","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:29.567005094Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2261","time":"2026-03-06T19:23:29.56725464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5666,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66189975912485:matrix.theocloud.dev?user_id=%40whatsapp_lid-66189975912485%3Amatrix.theocloud.dev","duration":159.284858,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":". (WA)","membership":"join"},"time":"2026-03-06T19:23:29.590478221Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:29.591362703Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5675,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915221654021:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915221654021%3Amatrix.theocloud.dev","duration":43.762846,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Jens B. (WA)"},"time":"2026-03-06T19:23:29.593290836Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"140325221875807@lid","alternate_jid":"4915221654021@s.whatsapp.net","time":"2026-03-06T19:23:29.593719877Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5676,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491639858669%3Amatrix.theocloud.dev","duration":19.148708,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491639858669","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:29.610809077Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5677,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915771666982%3Amatrix.theocloud.dev","duration":18.641095,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915771666982","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:29.61286614Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5678,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639858669:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639858669%3Amatrix.theocloud.dev","duration":6.508316,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:29.617748878Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5679,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915771666982:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915771666982%3Amatrix.theocloud.dev","duration":7.816949,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:29.620995423Z","message":"Request completed"} +{"level":"debug","transaction_id":"2262","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:29.624450867Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2262","time":"2026-03-06T19:23:29.624699016Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5680,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639858669:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639858669%3Amatrix.theocloud.dev","duration":80.390474,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Tino (WA)"},"time":"2026-03-06T19:23:29.698403775Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5681,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915771666982:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915771666982%3Amatrix.theocloud.dev","duration":77.768249,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Andrey (WA)"},"time":"2026-03-06T19:23:29.698940582Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:29.699385896Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"172988750102720@lid","alternate_jid":"4915771666982@s.whatsapp.net","time":"2026-03-06T19:23:29.700578312Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5682,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491794370675%3Amatrix.theocloud.dev","duration":3.491692,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491794370675","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:29.704448618Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5683,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794370675:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491794370675%3Amatrix.theocloud.dev","duration":1.878545,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:29.706641733Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5673,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-75930894614615:matrix.theocloud.dev?user_id=%40whatsapp_lid-75930894614615%3Amatrix.theocloud.dev","duration":195.664336,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Vincent (WA)","membership":"join"},"time":"2026-03-06T19:23:29.725623378Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:29.726506882Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5685,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_919766453850%3Amatrix.theocloud.dev","duration":7.759259,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_919766453850","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:29.734537269Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5684,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491794370675:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491794370675%3Amatrix.theocloud.dev","duration":31.254597,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Pat (WA)"},"time":"2026-03-06T19:23:29.738075125Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"247824025391160@lid","alternate_jid":"491794370675@s.whatsapp.net","time":"2026-03-06T19:23:29.738662219Z","message":"Synced alternate ghost with info"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5686,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_919766453850:matrix.theocloud.dev/displayname?user_id=%40whatsapp_919766453850%3Amatrix.theocloud.dev","duration":5.972766,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:29.740819435Z","message":"Request completed"} +{"level":"debug","transaction_id":"2263","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:29.742723962Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2263","time":"2026-03-06T19:23:29.743001236Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5687,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":6.547357,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-253395034206287","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:29.745894938Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5689,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-253395034206287:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":2.672024,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:29.748922458Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5688,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_919766453850:matrix.theocloud.dev/displayname?user_id=%40whatsapp_919766453850%3Amatrix.theocloud.dev","duration":12.328896,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+919766453850 (WA)"},"time":"2026-03-06T19:23:29.753321539Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:29.753905211Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5690,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-253395034206287:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":6.934283,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wiktor (WA)"},"time":"2026-03-06T19:23:29.756008578Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:29.756495518Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:29.858510117Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:29.910946946Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5692,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_919766453850:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_919766453850%3Amatrix.theocloud.dev","duration":3.477583,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:29.914795112Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5691,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491639858669%3Amatrix.theocloud.dev","duration":97.315545,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<55766 bytes>","time":"2026-03-06T19:23:29.964673552Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5694,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639858669:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491639858669%3Amatrix.theocloud.dev","duration":2.908579,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:29.967951177Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5695,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ILTpNHMaPFhSulRhmTDQAcRW?user_id=%40whatsapp_491639858669%3Amatrix.theocloud.dev","duration":3.041418,"status_code":200,"response_length":55766,"response_mime":"image/jpeg","time":"2026-03-06T19:23:29.97115449Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5696,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639858669:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491639858669%3Amatrix.theocloud.dev","duration":6.543097,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ILTpNHMaPFhSulRhmTDQAcRW"},"time":"2026-03-06T19:23:29.977971997Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5693,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-135437549052023:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":99.08814,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Leander (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:30.014922994Z","message":"Request completed"} +{"level":"warn","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","started_at":"2026-03-06T19:22:00.030663244Z","time":"2026-03-06T19:23:30.031049629Z","message":"Event handling is taking long"} +{"level":"debug","transaction_id":"2264","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.037492921Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2264","time":"2026-03-06T19:23:30.037870418Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5697,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-181380881375395:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":133.007147,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IQvEzDbWDsPwtPJbAgULKVeP","com.beeper.exclude_from_timeline":true,"displayname":"+33783410767 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:30.111963989Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:30.141930625Z","message":""} +{"level":"debug","transaction_id":"2265","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.146471486Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2265","time":"2026-03-06T19:23:30.146842698Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-135437549052023:matrix.theocloud.dev?user_id=%40whatsapp_lid-135437549052023%3Amatrix.theocloud.dev","duration":141.426765,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Leander (WA)","membership":"join"},"time":"2026-03-06T19:23:30.157239129Z","message":"Request completed"} +{"level":"debug","transaction_id":"2266","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.184372057Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2266","time":"2026-03-06T19:23:30.184618391Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5699,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-181380881375395:matrix.theocloud.dev?user_id=%40whatsapp_lid-181380881375395%3Amatrix.theocloud.dev","duration":146.087545,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IQvEzDbWDsPwtPJbAgULKVeP","com.beeper.exclude_from_timeline":true,"displayname":"+33783410767 (WA)","membership":"join"},"time":"2026-03-06T19:23:30.258676621Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:30.259629199Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5701,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_380678583807%3Amatrix.theocloud.dev","duration":11.586054,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_380678583807","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:30.271488196Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5702,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380678583807:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380678583807%3Amatrix.theocloud.dev","duration":9.410399,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:30.281227342Z","message":"Request completed"} +{"level":"debug","transaction_id":"2267","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.286729791Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2267","time":"2026-03-06T19:23:30.286938549Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5700,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-182961395781844:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":154.062896,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iEYebzGDOAkIIyPewuWwttdV","com.beeper.exclude_from_timeline":true,"displayname":"Dmytro (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:30.312048568Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5703,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380678583807:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380678583807%3Amatrix.theocloud.dev","duration":43.324726,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Костя (WA)"},"time":"2026-03-06T19:23:30.324745881Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:30.325347851Z","message":""} +{"level":"debug","transaction_id":"2268","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.326643005Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2268","time":"2026-03-06T19:23:30.32690631Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5705,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-182961395781844:matrix.theocloud.dev?user_id=%40whatsapp_lid-182961395781844%3Amatrix.theocloud.dev","duration":73.297719,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iEYebzGDOAkIIyPewuWwttdV","com.beeper.exclude_from_timeline":true,"displayname":"Dmytro (WA)","membership":"join"},"time":"2026-03-06T19:23:30.386097021Z","message":"Request completed"} +{"level":"debug","transaction_id":"2269","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.398031866Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2269","time":"2026-03-06T19:23:30.398265139Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5704,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":136.649208,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<244729 bytes>","time":"2026-03-06T19:23:30.442545796Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5707,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-253395034206287:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":16.1156,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:30.458985394Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5708,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/FHAuvjPFEtaXampBgJhSiHGe?user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":5.26694,"status_code":200,"response_length":244729,"response_mime":"image/jpeg","time":"2026-03-06T19:23:30.464402705Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5709,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-253395034206287:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":5.168462,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FHAuvjPFEtaXampBgJhSiHGe"},"time":"2026-03-06T19:23:30.469828536Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5710,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_48538383907%3Amatrix.theocloud.dev","duration":3.196468,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_48538383907","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:30.474039532Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5711,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_48538383907:matrix.theocloud.dev/displayname?user_id=%40whatsapp_48538383907%3Amatrix.theocloud.dev","duration":2.447271,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:23:30.476882319Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:30.49671569Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5706,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38504566390811:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":113.058887,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wwYmacyEqsOYwkZsEJSbjqKM","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Al koudsi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:30.500054566Z","message":"Request completed"} +{"level":"warn","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","started_at":"2026-03-06T19:22:00.504833518Z","time":"2026-03-06T19:23:30.505029077Z","message":"Event handling is taking long"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5712,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_48538383907:matrix.theocloud.dev/displayname?user_id=%40whatsapp_48538383907%3Amatrix.theocloud.dev","duration":36.141176,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Wiktor (WA)"},"time":"2026-03-06T19:23:30.513170234Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:30.513705225Z","message":""} +{"level":"debug","transaction_id":"2270","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.517637761Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2270","time":"2026-03-06T19:23:30.517864608Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5713,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38504566390811:matrix.theocloud.dev?user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":60.229543,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wwYmacyEqsOYwkZsEJSbjqKM","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Al koudsi (WA)","membership":"join"},"time":"2026-03-06T19:23:30.561033587Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:30.561651131Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5715,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_79858320925%3Amatrix.theocloud.dev","duration":7.790339,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_79858320925","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:30.56962781Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5716,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_79858320925:matrix.theocloud.dev/displayname?user_id=%40whatsapp_79858320925%3Amatrix.theocloud.dev","duration":4.685784,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:23:30.574566701Z","message":"Request completed"} +{"level":"debug","transaction_id":"2271","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.578437217Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2271","time":"2026-03-06T19:23:30.578671328Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5717,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_79858320925:matrix.theocloud.dev/displayname?user_id=%40whatsapp_79858320925%3Amatrix.theocloud.dev","duration":8.753603,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Shane (WA)"},"time":"2026-03-06T19:23:30.583462712Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:30.58404792Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5714,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_380678583807%3Amatrix.theocloud.dev","duration":91.969822,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<41210 bytes>","time":"2026-03-06T19:23:30.595214083Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5718,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380678583807:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380678583807%3Amatrix.theocloud.dev","duration":1.488547,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:30.597083689Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5719,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/JxLLopkHOwyTpQPJwkvJwafT?user_id=%40whatsapp_380678583807%3Amatrix.theocloud.dev","duration":1.397193,"status_code":200,"response_length":41210,"response_mime":"image/jpeg","time":"2026-03-06T19:23:30.598617284Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5720,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380678583807:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380678583807%3Amatrix.theocloud.dev","duration":2.597431,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JxLLopkHOwyTpQPJwkvJwafT"},"time":"2026-03-06T19:23:30.601405385Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5721,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198964544585847:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":43.928233,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917632073067 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:30.64637706Z","message":"Request completed"} +{"level":"debug","transaction_id":"2272","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.66002723Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2272","time":"2026-03-06T19:23:30.660348714Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:30.666928269Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5722,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198964544585847:matrix.theocloud.dev?user_id=%40whatsapp_lid-198964544585847%3Amatrix.theocloud.dev","duration":74.966668,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917632073067 (WA)","membership":"join"},"time":"2026-03-06T19:23:30.722145237Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:30.72304676Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5724,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491775603928%3Amatrix.theocloud.dev","duration":12.741313,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491775603928","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:30.7361039Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5725,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491775603928:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491775603928%3Amatrix.theocloud.dev","duration":6.945248,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:30.743470367Z","message":"Request completed"} +{"level":"debug","transaction_id":"2273","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.745658524Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2273","time":"2026-03-06T19:23:30.74597463Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:30.754696175Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5726,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491775603928:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491775603928%3Amatrix.theocloud.dev","duration":10.915917,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491775603928 (WA)"},"time":"2026-03-06T19:23:30.754652105Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:30.757603915Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5727,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_79858320925:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_79858320925%3Amatrix.theocloud.dev","duration":2.936166,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:30.757980295Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5723,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_48538383907%3Amatrix.theocloud.dev","duration":126.126363,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<244729 bytes>","time":"2026-03-06T19:23:30.805365228Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5729,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_48538383907:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_48538383907%3Amatrix.theocloud.dev","duration":2.900617,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:30.808678054Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5730,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BRrNOtdvuYSHUwBdFKzmBApy?user_id=%40whatsapp_48538383907%3Amatrix.theocloud.dev","duration":3.026542,"status_code":200,"response_length":244729,"response_mime":"image/jpeg","time":"2026-03-06T19:23:30.811846585Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5731,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_48538383907:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_48538383907%3Amatrix.theocloud.dev","duration":14.15911,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BRrNOtdvuYSHUwBdFKzmBApy"},"time":"2026-03-06T19:23:30.826254613Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"253395034206287@lid","alternate_jid":"48538383907@s.whatsapp.net","time":"2026-03-06T19:23:30.826847992Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"266657507356684@lid","alternate_jid":"4915150515988@s.whatsapp.net","time":"2026-03-06T19:23:30.826965886Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","jid":"491605556877@s.whatsapp.net","alternate_jid":"198041059483854@lid","time":"2026-03-06T19:23:30.827062757Z","message":"Synced alternate ghost with info"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491735647870@s.whatsapp.net","time":"2026-03-06T19:23:30.827414203Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5732,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491735647870%3Amatrix.theocloud.dev","duration":5.101135,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491735647870","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:30.832790586Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-48498888163368:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":89.268187,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xhbUITlxJOdMRvABLbPxiYRY","com.beeper.exclude_from_timeline":true,"displayname":"Florian Weis (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:30.848238844Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5733,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735647870:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491735647870%3Amatrix.theocloud.dev","duration":15.872689,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:30.849009972Z","message":"Request completed"} +{"level":"debug","transaction_id":"2274","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.86871183Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2274","time":"2026-03-06T19:23:30.869051821Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5735,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735647870:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491735647870%3Amatrix.theocloud.dev","duration":39.373473,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491735647870 (WA)"},"time":"2026-03-06T19:23:30.888540311Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:30.889081309Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:30.911436611Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5734,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-48498888163368:matrix.theocloud.dev?user_id=%40whatsapp_lid-48498888163368%3Amatrix.theocloud.dev","duration":68.383761,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xhbUITlxJOdMRvABLbPxiYRY","com.beeper.exclude_from_timeline":true,"displayname":"Florian Weis (WA)","membership":"join"},"time":"2026-03-06T19:23:30.917474889Z","message":"Request completed"} +{"level":"debug","transaction_id":"2275","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.935074077Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2275","time":"2026-03-06T19:23:30.935419587Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5736,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-166829649616999:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.565835,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"M (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:30.980757864Z","message":"Request completed"} +{"level":"debug","transaction_id":"2276","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:30.992275891Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2276","time":"2026-03-06T19:23:30.992622309Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5737,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491775603928%3Amatrix.theocloud.dev","duration":115.488697,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<36518 bytes>","time":"2026-03-06T19:23:31.040056132Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5739,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491775603928:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491775603928%3Amatrix.theocloud.dev","duration":13.419621,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:31.053894457Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5740,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/GCYytoNwhVInEiziULJVWmLv?user_id=%40whatsapp_491775603928%3Amatrix.theocloud.dev","duration":8.446228,"status_code":200,"response_length":36518,"response_mime":"image/jpeg","time":"2026-03-06T19:23:31.062493289Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5741,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491775603928:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491775603928%3Amatrix.theocloud.dev","duration":16.655899,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GCYytoNwhVInEiziULJVWmLv"},"time":"2026-03-06T19:23:31.079425275Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5738,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-166829649616999:matrix.theocloud.dev?user_id=%40whatsapp_lid-166829649616999%3Amatrix.theocloud.dev","duration":131.272197,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"M (WA)","membership":"join"},"time":"2026-03-06T19:23:31.112634755Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:31.113824796Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5743,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917641239669%3Amatrix.theocloud.dev","duration":19.054001,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917641239669","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:31.133172414Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5744,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641239669:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641239669%3Amatrix.theocloud.dev","duration":4.564677,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:31.138133166Z","message":"Request completed"} +{"level":"debug","transaction_id":"2277","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.140228013Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2277","time":"2026-03-06T19:23:31.140472251Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5745,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641239669:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641239669%3Amatrix.theocloud.dev","duration":16.489815,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Pablo (WA)"},"time":"2026-03-06T19:23:31.154812882Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:31.155640442Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:31.158152666Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5746,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735647870:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491735647870%3Amatrix.theocloud.dev","duration":2.341879,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:31.160813864Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"491741987498@s.whatsapp.net","time":"2026-03-06T19:23:31.161601125Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5747,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491741987498%3Amatrix.theocloud.dev","duration":3.247942,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491741987498","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:31.165124385Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5748,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741987498:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491741987498%3Amatrix.theocloud.dev","duration":6.60819,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:31.171973321Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5742,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-40570445631616:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":108.335108,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nick (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:31.189047017Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5749,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741987498:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491741987498%3Amatrix.theocloud.dev","duration":30.431645,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491741987498 (WA)"},"time":"2026-03-06T19:23:31.20259396Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:31.203251664Z","message":""} +{"level":"debug","transaction_id":"2278","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.205118616Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2278","time":"2026-03-06T19:23:31.205405598Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5750,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-40570445631616:matrix.theocloud.dev?user_id=%40whatsapp_lid-40570445631616%3Amatrix.theocloud.dev","duration":64.795268,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nick (WA)","membership":"join"},"time":"2026-03-06T19:23:31.254492655Z","message":"Request completed"} +{"level":"debug","transaction_id":"2279","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.260190033Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2279","time":"2026-03-06T19:23:31.260475828Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5751,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-138770527572092:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":50.522175,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SMHnOtFWDxFvinmocLCUAdhe","com.beeper.exclude_from_timeline":true,"displayname":"+491749058614 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:31.305846791Z","message":"Request completed"} +{"level":"debug","transaction_id":"2280","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.319060447Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2280","time":"2026-03-06T19:23:31.319361607Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:31.32469797Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5753,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641239669:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917641239669%3Amatrix.theocloud.dev","duration":4.914796,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:31.329917069Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:31.364473805Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5752,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-138770527572092:matrix.theocloud.dev?user_id=%40whatsapp_lid-138770527572092%3Amatrix.theocloud.dev","duration":94.789841,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SMHnOtFWDxFvinmocLCUAdhe","com.beeper.exclude_from_timeline":true,"displayname":"+491749058614 (WA)","membership":"join"},"time":"2026-03-06T19:23:31.401427176Z","message":"Request completed"} +{"level":"debug","transaction_id":"2281","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.4233086Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2281","time":"2026-03-06T19:23:31.423688262Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5754,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-29888778084533:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":133.059249,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Martin Kuhn (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:31.464097565Z","message":"Request completed"} +{"level":"debug","transaction_id":"2282","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.485650241Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2282","time":"2026-03-06T19:23:31.485987369Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5755,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-108456681980086:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":156.727795,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RwxeVmcOQFgdXMwsSIHhRZJS","com.beeper.exclude_from_timeline":true,"displayname":"+4917656794491 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:31.559408988Z","message":"Request completed"} +{"level":"debug","transaction_id":"2283","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.580539608Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2283","time":"2026-03-06T19:23:31.580937988Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5756,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-29888778084533:matrix.theocloud.dev?user_id=%40whatsapp_lid-29888778084533%3Amatrix.theocloud.dev","duration":221.879748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Martin Kuhn (WA)","membership":"join"},"time":"2026-03-06T19:23:31.686560006Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5757,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491741987498%3Amatrix.theocloud.dev","duration":176.799467,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<62043 bytes>","time":"2026-03-06T19:23:31.694050792Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5760,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741987498:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491741987498%3Amatrix.theocloud.dev","duration":6.859203,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:31.701282184Z","message":"Request completed"} +{"level":"debug","transaction_id":"2284","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.704750548Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2284","time":"2026-03-06T19:23:31.705031942Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5761,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/EyXvpCtAqdmJdugLRCsujOva?user_id=%40whatsapp_491741987498%3Amatrix.theocloud.dev","duration":16.42549,"status_code":200,"response_length":62043,"response_mime":"image/jpeg","time":"2026-03-06T19:23:31.717851549Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5762,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741987498:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491741987498%3Amatrix.theocloud.dev","duration":9.594224,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EyXvpCtAqdmJdugLRCsujOva"},"time":"2026-03-06T19:23:31.727680233Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","source_jid":"152510111158412@lid","time":"2026-03-06T19:23:31.728567299Z","message":"Alternate JID not found in contactToUserInfo"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5763,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_lid-152510111158412%3Amatrix.theocloud.dev","duration":16.03144,"status_code":200,"response_length":101,"response_mime":"application/json","req_body":{"username":"whatsapp_lid-152510111158412","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:31.744878597Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5764,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-152510111158412:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-152510111158412%3Amatrix.theocloud.dev","duration":7.103022,"status_code":200,"response_length":46,"response_mime":"application/json","time":"2026-03-06T19:23:31.752276423Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5758,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-108456681980086:matrix.theocloud.dev?user_id=%40whatsapp_lid-108456681980086%3Amatrix.theocloud.dev","duration":211.227205,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RwxeVmcOQFgdXMwsSIHhRZJS","com.beeper.exclude_from_timeline":true,"displayname":"+4917656794491 (WA)","membership":"join"},"time":"2026-03-06T19:23:31.771396285Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:31.772149673Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5766,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915121699472%3Amatrix.theocloud.dev","duration":12.529343,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915121699472","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:31.784959991Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5767,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915121699472:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915121699472%3Amatrix.theocloud.dev","duration":4.7184,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:31.790065596Z","message":"Request completed"} +{"level":"debug","transaction_id":"2285","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.791322336Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2285","time":"2026-03-06T19:23:31.79157321Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5765,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-152510111158412:matrix.theocloud.dev/displayname?user_id=%40whatsapp_lid-152510111158412%3Amatrix.theocloud.dev","duration":40.443386,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Florian (WA)"},"time":"2026-03-06T19:23:31.792892738Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:31.79364019Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5768,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915121699472:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915121699472%3Amatrix.theocloud.dev","duration":8.622439,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915121699472 (WA)"},"time":"2026-03-06T19:23:31.798879822Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:31.799691318Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5759,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88180091007092:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":127.418095,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pPKHjogbUpOHFJjFptQcXgFN","com.beeper.exclude_from_timeline":true,"displayname":"Mirko (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:31.815036349Z","message":"Request completed"} +{"level":"debug","transaction_id":"2286","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.824608363Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2286","time":"2026-03-06T19:23:31.824900723Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5769,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88180091007092:matrix.theocloud.dev?user_id=%40whatsapp_lid-88180091007092%3Amatrix.theocloud.dev","duration":58.405196,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pPKHjogbUpOHFJjFptQcXgFN","com.beeper.exclude_from_timeline":true,"displayname":"Mirko (WA)","membership":"join"},"time":"2026-03-06T19:23:31.874123484Z","message":"Request completed"} +{"level":"debug","transaction_id":"2287","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.884608824Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2287","time":"2026-03-06T19:23:31.88481011Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5770,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-1876967866385:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.993969,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Phie (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:31.940059275Z","message":"Request completed"} +{"level":"debug","transaction_id":"2288","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:31.95369394Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2288","time":"2026-03-06T19:23:31.953923651Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:31.958471566Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:31.958590368Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-1876967866385:matrix.theocloud.dev?user_id=%40whatsapp_lid-1876967866385%3Amatrix.theocloud.dev","duration":80.15315,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Phie (WA)","membership":"join"},"time":"2026-03-06T19:23:32.020839818Z","message":"Request completed"} +{"level":"debug","transaction_id":"2289","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:32.039887184Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2289","time":"2026-03-06T19:23:32.040188344Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5772,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915121699472%3Amatrix.theocloud.dev","duration":118.244041,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<63854 bytes>","time":"2026-03-06T19:23:32.089795586Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5775,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915121699472:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915121699472%3Amatrix.theocloud.dev","duration":3.893982,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:32.094053446Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5776,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/jTbQFOifWUDAOkQkNXkZwggk?user_id=%40whatsapp_4915121699472%3Amatrix.theocloud.dev","duration":3.489736,"status_code":200,"response_length":63854,"response_mime":"image/jpeg","time":"2026-03-06T19:23:32.097669806Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5777,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915121699472:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915121699472%3Amatrix.theocloud.dev","duration":6.05085,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jTbQFOifWUDAOkQkNXkZwggk"},"time":"2026-03-06T19:23:32.103942544Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5774,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-280664972746828:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":129.571749,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Armano 7 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:32.151379859Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5773,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_lid-152510111158412%3Amatrix.theocloud.dev","duration":155.439834,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<51112 bytes>","time":"2026-03-06T19:23:32.16813675Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5780,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-152510111158412:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-152510111158412%3Amatrix.theocloud.dev","duration":15.465509,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:32.183924022Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5781,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VGhDrNrIsJuWXUrSHXlbUVEL?user_id=%40whatsapp_lid-152510111158412%3Amatrix.theocloud.dev","duration":13.458174,"status_code":200,"response_length":51112,"response_mime":"image/jpeg","time":"2026-03-06T19:23:32.197487099Z","message":"Request completed"} +{"level":"debug","transaction_id":"2290","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:32.210834573Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2290","time":"2026-03-06T19:23:32.211135243Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"resync contacts","req_id":5782,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_lid-152510111158412:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_lid-152510111158412%3Amatrix.theocloud.dev","duration":26.382334,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VGhDrNrIsJuWXUrSHXlbUVEL"},"time":"2026-03-06T19:23:32.224115976Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5778,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266502737506505:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":185.002085,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kjnxeNcLTUeaTJpevrDMogrm","com.beeper.exclude_from_timeline":true,"displayname":"Sven (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:32.289935899Z","message":"Request completed"} +{"level":"debug","transaction_id":"2291","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:32.319190215Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2291","time":"2026-03-06T19:23:32.319443742Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5779,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-280664972746828:matrix.theocloud.dev?user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":185.440555,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Armano 7 (WA)","membership":"join"},"time":"2026-03-06T19:23:32.337483216Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:32.338258045Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5784,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915256299774%3Amatrix.theocloud.dev","duration":19.858932,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915256299774","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:32.358412829Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5785,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256299774:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256299774%3Amatrix.theocloud.dev","duration":7.487504,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:32.366204286Z","message":"Request completed"} +{"level":"debug","transaction_id":"2292","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:32.368833426Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2292","time":"2026-03-06T19:23:32.369081226Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5786,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256299774:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915256299774%3Amatrix.theocloud.dev","duration":17.862563,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915256299774 (WA)"},"time":"2026-03-06T19:23:32.384269531Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:32.38505365Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5783,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266502737506505:matrix.theocloud.dev?user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":116.845242,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kjnxeNcLTUeaTJpevrDMogrm","com.beeper.exclude_from_timeline":true,"displayname":"Sven (WA)","membership":"join"},"time":"2026-03-06T19:23:32.407522935Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:32.408281142Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5787,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491630461857%3Amatrix.theocloud.dev","duration":5.0373,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491630461857","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:32.413596064Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5788,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491630461857:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491630461857%3Amatrix.theocloud.dev","duration":3.124461,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:32.417016935Z","message":"Request completed"} +{"level":"debug","transaction_id":"2293","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:32.418567362Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2293","time":"2026-03-06T19:23:32.418799937Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5789,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491630461857:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491630461857%3Amatrix.theocloud.dev","duration":5.951604,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491630461857 (WA)"},"time":"2026-03-06T19:23:32.423129734Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:32.423857281Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:32.561526674Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:32.598929969Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5791,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491630461857:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491630461857%3Amatrix.theocloud.dev","duration":2.187318,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:32.601471667Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5790,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915256299774%3Amatrix.theocloud.dev","duration":92.061526,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<22023 bytes>","time":"2026-03-06T19:23:32.661203794Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5793,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256299774:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915256299774%3Amatrix.theocloud.dev","duration":5.642552,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:32.667266307Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5794,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/cnTqiNoEQoNckUWktVeVkpif?user_id=%40whatsapp_4915256299774%3Amatrix.theocloud.dev","duration":10.673914,"status_code":200,"response_length":22023,"response_mime":"image/jpeg","time":"2026-03-06T19:23:32.67807355Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5792,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-102692751978521:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":89.580032,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Balou (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:32.691995616Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5795,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915256299774:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915256299774%3Amatrix.theocloud.dev","duration":29.864457,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/cnTqiNoEQoNckUWktVeVkpif"},"time":"2026-03-06T19:23:32.708210182Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:32.709084397Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5797,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491774226359%3Amatrix.theocloud.dev","duration":9.509435,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491774226359","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:32.718860001Z","message":"Request completed"} +{"level":"debug","transaction_id":"2294","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:32.723951987Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2294","time":"2026-03-06T19:23:32.724191127Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5798,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491774226359:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491774226359%3Amatrix.theocloud.dev","duration":9.036953,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:32.728196228Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5799,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491774226359:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491774226359%3Amatrix.theocloud.dev","duration":25.896373,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491774226359 (WA)"},"time":"2026-03-06T19:23:32.754278101Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:32.755177808Z","message":""} +{"level":"debug","transaction_id":"2295","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:32.835457652Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2295","time":"2026-03-06T19:23:32.835759161Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917641870516@s.whatsapp.net","portal_mxid":"!OLuXRTkNBMOqQdhSsl:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$yPQjra3EGyz1yPM2Qsmz3J54nyWT5ZejI_Jc6-stP2Y","event_type":"m.room.member","event_id":"$yPQjra3EGyz1yPM2Qsmz3J54nyWT5ZejI_Jc6-stP2Y","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:32.836252596Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5796,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-102692751978521:matrix.theocloud.dev?user_id=%40whatsapp_lid-102692751978521%3Amatrix.theocloud.dev","duration":151.533909,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Balou (WA)","membership":"join"},"time":"2026-03-06T19:23:32.844269015Z","message":"Request completed"} +{"level":"debug","transaction_id":"2296","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:32.870463474Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2296","time":"2026-03-06T19:23:32.8707485Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:32.920059821Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5801,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491774226359:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491774226359%3Amatrix.theocloud.dev","duration":11.13627,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:32.931580083Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5800,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-13069475909:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":158.698393,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Wagner Ribeiro (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:33.004054362Z","message":"Request completed"} +{"level":"debug","transaction_id":"2297","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.027604315Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2297","time":"2026-03-06T19:23:33.027892903Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5802,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266502737506505:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":137.602415,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kjnxeNcLTUeaTJpevrDMogrm","com.beeper.exclude_from_timeline":true,"displayname":"Sven (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:33.070232575Z","message":"Request completed"} +{"level":"debug","transaction_id":"2298","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.10517931Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2298","time":"2026-03-06T19:23:33.105476628Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2299","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:33.135649718Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2299","time":"2026-03-06T19:23:33.135763212Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5803,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-13069475909:matrix.theocloud.dev?user_id=%40whatsapp_lid-13069475909%3Amatrix.theocloud.dev","duration":183.373365,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Wagner Ribeiro (WA)","membership":"join"},"time":"2026-03-06T19:23:33.188226931Z","message":"Request completed"} +{"level":"debug","transaction_id":"2300","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.211560932Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2300","time":"2026-03-06T19:23:33.211882416Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5804,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-266502737506505:matrix.theocloud.dev?user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":183.140091,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kjnxeNcLTUeaTJpevrDMogrm","com.beeper.exclude_from_timeline":true,"displayname":"Sven (WA)","membership":"join"},"time":"2026-03-06T19:23:33.254073045Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:33.255120049Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5806,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917623331025%3Amatrix.theocloud.dev","duration":12.072645,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917623331025","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:33.267482329Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5807,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623331025:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917623331025%3Amatrix.theocloud.dev","duration":7.925415,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:33.275787126Z","message":"Request completed"} +{"level":"debug","transaction_id":"2301","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.278511251Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2301","time":"2026-03-06T19:23:33.278831827Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5808,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623331025:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917623331025%3Amatrix.theocloud.dev","duration":17.34161,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"M (WA)"},"time":"2026-03-06T19:23:33.293390854Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:33.294241951Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5805,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-105029298036926:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":131.599128,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Paul (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:33.320786599Z","message":"Request completed"} +{"level":"debug","transaction_id":"2302","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.333992223Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2302","time":"2026-03-06T19:23:33.334300996Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5809,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-105029298036926:matrix.theocloud.dev?user_id=%40whatsapp_lid-105029298036926%3Amatrix.theocloud.dev","duration":49.53768,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Paul (WA)","membership":"join"},"time":"2026-03-06T19:23:33.371041278Z","message":"Request completed"} +{"level":"debug","transaction_id":"2303","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.382147027Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2303","time":"2026-03-06T19:23:33.382469558Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5810,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-280664972746828:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":50.935641,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Armano 7 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:33.422945631Z","message":"Request completed"} +{"level":"debug","transaction_id":"2304","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.44019484Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2304","time":"2026-03-06T19:23:33.440521981Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:33.460672295Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5812,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623331025:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917623331025%3Amatrix.theocloud.dev","duration":14.864727,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:33.475888327Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5811,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-280664972746828:matrix.theocloud.dev?user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":89.635487,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Armano 7 (WA)","membership":"join"},"time":"2026-03-06T19:23:33.513361883Z","message":"Request completed"} +{"level":"debug","transaction_id":"2305","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.533594542Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2305","time":"2026-03-06T19:23:33.533832424Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5813,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-173714331201661:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":106.995884,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491799302414 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:33.583706953Z","message":"Request completed"} +{"level":"debug","transaction_id":"2306","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.598089209Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2306","time":"2026-03-06T19:23:33.598325136Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5814,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-30378387624044:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":126.621684,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hNHKWbTItPRFRlFNaBHkoDqQ","com.beeper.exclude_from_timeline":true,"displayname":"+491633456827 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:33.640913726Z","message":"Request completed"} +{"level":"debug","transaction_id":"2307","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.664465984Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2307","time":"2026-03-06T19:23:33.664793404Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5815,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-173714331201661:matrix.theocloud.dev?user_id=%40whatsapp_lid-173714331201661%3Amatrix.theocloud.dev","duration":156.562339,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491799302414 (WA)","membership":"join"},"time":"2026-03-06T19:23:33.740892144Z","message":"Request completed"} +{"level":"debug","transaction_id":"2308","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.762955507Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2308","time":"2026-03-06T19:23:33.76321937Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5816,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-30378387624044:matrix.theocloud.dev?user_id=%40whatsapp_lid-30378387624044%3Amatrix.theocloud.dev","duration":171.743589,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hNHKWbTItPRFRlFNaBHkoDqQ","com.beeper.exclude_from_timeline":true,"displayname":"+491633456827 (WA)","membership":"join"},"time":"2026-03-06T19:23:33.813406792Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:33.81430629Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5818,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915110698014%3Amatrix.theocloud.dev","duration":26.886316,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915110698014","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:33.841508362Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5819,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915110698014:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915110698014%3Amatrix.theocloud.dev","duration":7.955795,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:33.849863445Z","message":"Request completed"} +{"level":"debug","transaction_id":"2309","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.854201065Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2309","time":"2026-03-06T19:23:33.854512701Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5820,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915110698014:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915110698014%3Amatrix.theocloud.dev","duration":15.080329,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915110698014 (WA)"},"time":"2026-03-06T19:23:33.86513151Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:33.865883222Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5817,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-10501648023786:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":142.565263,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YQfNsGhECvAeLjCqttlAujqu","com.beeper.exclude_from_timeline":true,"displayname":"Yazan Elahmad (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:33.884428632Z","message":"Request completed"} +{"level":"debug","transaction_id":"2310","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.89304716Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2310","time":"2026-03-06T19:23:33.893353768Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5821,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-10501648023786:matrix.theocloud.dev?user_id=%40whatsapp_lid-10501648023786%3Amatrix.theocloud.dev","duration":45.706765,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YQfNsGhECvAeLjCqttlAujqu","com.beeper.exclude_from_timeline":true,"displayname":"Yazan Elahmad (WA)","membership":"join"},"time":"2026-03-06T19:23:33.930793031Z","message":"Request completed"} +{"level":"debug","transaction_id":"2311","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:33.946956683Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2311","time":"2026-03-06T19:23:33.947186743Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5822,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80358888464591:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":81.294092,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QCXIwVHDANbLEfrPboJQeaoY","com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:34.013088312Z","message":"Request completed"} +{"level":"debug","transaction_id":"2312","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.028153834Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2312","time":"2026-03-06T19:23:34.0284742Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:34.031543835Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5824,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915110698014:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915110698014%3Amatrix.theocloud.dev","duration":13.736844,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:34.045644068Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5823,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80358888464591:matrix.theocloud.dev?user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":101.715394,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QCXIwVHDANbLEfrPboJQeaoY","com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","membership":"join"},"time":"2026-03-06T19:23:34.115472236Z","message":"Request completed"} +{"level":"debug","transaction_id":"2313","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.135796806Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2313","time":"2026-03-06T19:23:34.136158729Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5825,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-92655430197386:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":141.267455,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Elias Spurny (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:34.187871923Z","message":"Request completed"} +{"level":"debug","transaction_id":"2314","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.210767036Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2314","time":"2026-03-06T19:23:34.211069034Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5826,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-61955406606386:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":155.216269,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GflJdclDSwfpfkboeVWriwdr","com.beeper.exclude_from_timeline":true,"displayname":"Ali (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:34.271628232Z","message":"Request completed"} +{"level":"debug","transaction_id":"2315","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.292964467Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2315","time":"2026-03-06T19:23:34.293313678Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5827,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-92655430197386:matrix.theocloud.dev?user_id=%40whatsapp_lid-92655430197386%3Amatrix.theocloud.dev","duration":151.679461,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Elias Spurny (WA)","membership":"join"},"time":"2026-03-06T19:23:34.340392214Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:34.341265521Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5829,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915751234074%3Amatrix.theocloud.dev","duration":6.689068,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915751234074","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:34.348402416Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5830,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751234074:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915751234074%3Amatrix.theocloud.dev","duration":7.080044,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:34.355943349Z","message":"Request completed"} +{"level":"debug","transaction_id":"2316","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.35920058Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2316","time":"2026-03-06T19:23:34.359602033Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5831,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751234074:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915751234074%3Amatrix.theocloud.dev","duration":13.247111,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915751234074 (WA)"},"time":"2026-03-06T19:23:34.369363319Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:34.370252271Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5828,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-61955406606386:matrix.theocloud.dev?user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":121.845385,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GflJdclDSwfpfkboeVWriwdr","com.beeper.exclude_from_timeline":true,"displayname":"Ali (WA)","membership":"join"},"time":"2026-03-06T19:23:34.394184541Z","message":"Request completed"} +{"level":"debug","transaction_id":"2317","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.40613971Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2317","time":"2026-03-06T19:23:34.406461753Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5832,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-187501142626535:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":44.796371,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+919766453850 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:34.439688554Z","message":"Request completed"} +{"level":"debug","transaction_id":"2318","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.452237661Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2318","time":"2026-03-06T19:23:34.452557469Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5833,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-187501142626535:matrix.theocloud.dev?user_id=%40whatsapp_lid-187501142626535%3Amatrix.theocloud.dev","duration":54.143913,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+919766453850 (WA)","membership":"join"},"time":"2026-03-06T19:23:34.494489262Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:34.495172529Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5834,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917665322672%3Amatrix.theocloud.dev","duration":7.173633,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917665322672","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:34.502562742Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5835,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917665322672:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917665322672%3Amatrix.theocloud.dev","duration":4.563769,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:34.507577482Z","message":"Request completed"} +{"level":"debug","transaction_id":"2319","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.509790851Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2319","time":"2026-03-06T19:23:34.510103325Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5836,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917665322672:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917665322672%3Amatrix.theocloud.dev","duration":9.080534,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917665322672 (WA)"},"time":"2026-03-06T19:23:34.516873759Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:34.517531254Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:34.672708482Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5837,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917665322672:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917665322672%3Amatrix.theocloud.dev","duration":2.669439,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:34.675748154Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5838,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-111437372489803:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.58651,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Marielle (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:34.74123919Z","message":"Request completed"} +{"level":"debug","transaction_id":"2320","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.752494611Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2320","time":"2026-03-06T19:23:34.752792837Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:34.757468284Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5839,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-111437372489803:matrix.theocloud.dev?user_id=%40whatsapp_lid-111437372489803%3Amatrix.theocloud.dev","duration":62.708662,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Marielle (WA)","membership":"join"},"time":"2026-03-06T19:23:34.804757393Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:34.805652142Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5841,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917656794491%3Amatrix.theocloud.dev","duration":9.840417,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917656794491","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:34.815778284Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5842,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656794491:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656794491%3Amatrix.theocloud.dev","duration":6.04177,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:34.822249723Z","message":"Request completed"} +{"level":"debug","transaction_id":"2321","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.824284646Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2321","time":"2026-03-06T19:23:34.824615558Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5843,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656794491:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917656794491%3Amatrix.theocloud.dev","duration":12.108404,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917656794491 (WA)"},"time":"2026-03-06T19:23:34.834541532Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:34.835376566Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5840,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915751234074%3Amatrix.theocloud.dev","duration":113.142697,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<105283 bytes>","time":"2026-03-06T19:23:34.881464808Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5844,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751234074:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915751234074%3Amatrix.theocloud.dev","duration":2.259465,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:34.884086126Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5845,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wBdDLXRYdgCUpZiKKRGuCome?user_id=%40whatsapp_4915751234074%3Amatrix.theocloud.dev","duration":2.184524,"status_code":200,"response_length":105283,"response_mime":"image/jpeg","time":"2026-03-06T19:23:34.886399789Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5846,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751234074:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915751234074%3Amatrix.theocloud.dev","duration":4.407322,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wBdDLXRYdgCUpZiKKRGuCome"},"time":"2026-03-06T19:23:34.891041083Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5847,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-179671467585603:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.524978,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oEdivUmQDuafkXXkgZRIgmdx","com.beeper.exclude_from_timeline":true,"displayname":"+4917631572023 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:34.9555933Z","message":"Request completed"} +{"level":"debug","transaction_id":"2322","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:34.968753527Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2322","time":"2026-03-06T19:23:34.969069004Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:34.991494498Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5848,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-179671467585603:matrix.theocloud.dev?user_id=%40whatsapp_lid-179671467585603%3Amatrix.theocloud.dev","duration":58.756292,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oEdivUmQDuafkXXkgZRIgmdx","com.beeper.exclude_from_timeline":true,"displayname":"+4917631572023 (WA)","membership":"join"},"time":"2026-03-06T19:23:35.015056954Z","message":"Request completed"} +{"level":"debug","transaction_id":"2323","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.028103408Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2323","time":"2026-03-06T19:23:35.028460581Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5850,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-223690570625160:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":84.706303,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"AP (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:35.100821576Z","message":"Request completed"} +{"level":"debug","transaction_id":"2324","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.116070783Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2324","time":"2026-03-06T19:23:35.116438083Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5849,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917656794491%3Amatrix.theocloud.dev","duration":130.099755,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<44463 bytes>","time":"2026-03-06T19:23:35.134013944Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5852,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656794491:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917656794491%3Amatrix.theocloud.dev","duration":3.463475,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:35.137904085Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5853,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/oVClxygROSthayByCBUtgWuT?user_id=%40whatsapp_4917656794491%3Amatrix.theocloud.dev","duration":5.741658,"status_code":200,"response_length":44463,"response_mime":"image/jpeg","time":"2026-03-06T19:23:35.143816717Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5854,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917656794491:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917656794491%3Amatrix.theocloud.dev","duration":5.640456,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oVClxygROSthayByCBUtgWuT"},"time":"2026-03-06T19:23:35.14979933Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5851,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-223690570625160:matrix.theocloud.dev?user_id=%40whatsapp_lid-223690570625160%3Amatrix.theocloud.dev","duration":75.301421,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"AP (WA)","membership":"join"},"time":"2026-03-06T19:23:35.176932259Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:35.177779933Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5856,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491738002445%3Amatrix.theocloud.dev","duration":9.989391,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491738002445","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:35.18806343Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5857,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491738002445:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491738002445%3Amatrix.theocloud.dev","duration":5.370098,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:35.193828974Z","message":"Request completed"} +{"level":"debug","transaction_id":"2325","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.196606948Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2325","time":"2026-03-06T19:23:35.196826322Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5858,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491738002445:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491738002445%3Amatrix.theocloud.dev","duration":11.781682,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491738002445 (WA)"},"time":"2026-03-06T19:23:35.205798182Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:35.206454559Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5855,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88291676282954:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.121159,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LfSqZpmxtuTvQRBlbMXorNkU","com.beeper.exclude_from_timeline":true,"displayname":"+491723891168 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:35.227023228Z","message":"Request completed"} +{"level":"debug","transaction_id":"2326","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.240110051Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2326","time":"2026-03-06T19:23:35.240460868Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88291676282954:matrix.theocloud.dev?user_id=%40whatsapp_lid-88291676282954%3Amatrix.theocloud.dev","duration":52.838911,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LfSqZpmxtuTvQRBlbMXorNkU","com.beeper.exclude_from_timeline":true,"displayname":"+491723891168 (WA)","membership":"join"},"time":"2026-03-06T19:23:35.280436801Z","message":"Request completed"} +{"level":"debug","transaction_id":"2327","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.29555701Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2327","time":"2026-03-06T19:23:35.295886944Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5860,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-132040297042065:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.151321,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CGMeOSInUcXdBaRwfxBsCOZP","com.beeper.exclude_from_timeline":true,"displayname":"+4917674993720 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:35.343525125Z","message":"Request completed"} +{"level":"debug","transaction_id":"2328","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.3567971Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2328","time":"2026-03-06T19:23:35.357113345Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:35.371739211Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5862,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491738002445:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491738002445%3Amatrix.theocloud.dev","duration":3.323511,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:35.375451394Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5861,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-132040297042065:matrix.theocloud.dev?user_id=%40whatsapp_lid-132040297042065%3Amatrix.theocloud.dev","duration":60.107041,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CGMeOSInUcXdBaRwfxBsCOZP","com.beeper.exclude_from_timeline":true,"displayname":"+4917674993720 (WA)","membership":"join"},"time":"2026-03-06T19:23:35.404399312Z","message":"Request completed"} +{"level":"debug","transaction_id":"2329","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.434175768Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2329","time":"2026-03-06T19:23:35.434531754Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5863,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-263328890937590:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":133.834288,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Ella 🦖 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:35.510422015Z","message":"Request completed"} +{"level":"debug","transaction_id":"2330","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.544919385Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2330","time":"2026-03-06T19:23:35.545162925Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5864,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-86861754155032:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":161.450315,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sero (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:35.566779646Z","message":"Request completed"} +{"level":"debug","transaction_id":"2331","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.58132247Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2331","time":"2026-03-06T19:23:35.581606588Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5865,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-263328890937590:matrix.theocloud.dev?user_id=%40whatsapp_lid-263328890937590%3Amatrix.theocloud.dev","duration":119.766462,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Ella 🦖 (WA)","membership":"join"},"time":"2026-03-06T19:23:35.630964493Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:35.631565555Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5867,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491754714679%3Amatrix.theocloud.dev","duration":9.983804,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491754714679","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:35.641741635Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5868,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491754714679:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491754714679%3Amatrix.theocloud.dev","duration":5.277207,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:35.647308896Z","message":"Request completed"} +{"level":"debug","transaction_id":"2332","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.651470933Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2332","time":"2026-03-06T19:23:35.651692333Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5866,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-86861754155032:matrix.theocloud.dev?user_id=%40whatsapp_lid-86861754155032%3Amatrix.theocloud.dev","duration":102.330425,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sero (WA)","membership":"join"},"time":"2026-03-06T19:23:35.669728384Z","message":"Request completed"} +{"level":"debug","transaction_id":"2333","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.686691938Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2333","time":"2026-03-06T19:23:35.68703214Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5869,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491754714679:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491754714679%3Amatrix.theocloud.dev","duration":41.321512,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491754714679 (WA)"},"time":"2026-03-06T19:23:35.688803478Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:35.689746906Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5870,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-129064018960516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.465478,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mahmoud (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:35.742468412Z","message":"Request completed"} +{"level":"debug","transaction_id":"2334","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.763546301Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2334","time":"2026-03-06T19:23:35.763872045Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2335","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.836217116Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2335","time":"2026-03-06T19:23:35.836532384Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491637362958@s.whatsapp.net","portal_mxid":"!xzeCxhHAAFxeWBPrjQ:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$TDx4XpMm97_s9R3xQo4OisjS7XZMVVhRvsOtttgoz3I","event_type":"m.room.member","event_id":"$TDx4XpMm97_s9R3xQo4OisjS7XZMVVhRvsOtttgoz3I","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:35.837033152Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5871,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-129064018960516:matrix.theocloud.dev?user_id=%40whatsapp_lid-129064018960516%3Amatrix.theocloud.dev","duration":118.424443,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mahmoud (WA)","membership":"join"},"time":"2026-03-06T19:23:35.861698556Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:35.866733271Z","message":""} +{"level":"debug","transaction_id":"2336","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.894317939Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2336","time":"2026-03-06T19:23:35.894659886Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5872,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-6000186790141:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":99.842296,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Filippo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:35.962690664Z","message":"Request completed"} +{"level":"debug","transaction_id":"2337","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:35.973453208Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2337","time":"2026-03-06T19:23:35.973700659Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5873,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491754714679%3Amatrix.theocloud.dev","duration":114.502803,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<51824 bytes>","time":"2026-03-06T19:23:35.992947635Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5875,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491754714679:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491754714679%3Amatrix.theocloud.dev","duration":4.350681,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:35.997635234Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5876,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/VkNrRtVYZNFxsjeOSyzKrkRG?user_id=%40whatsapp_491754714679%3Amatrix.theocloud.dev","duration":3.99239,"status_code":200,"response_length":51824,"response_mime":"image/jpeg","time":"2026-03-06T19:23:36.00176675Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5877,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491754714679:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491754714679%3Amatrix.theocloud.dev","duration":12.337835,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VkNrRtVYZNFxsjeOSyzKrkRG"},"time":"2026-03-06T19:23:36.014373338Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5874,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-6000186790141:matrix.theocloud.dev?user_id=%40whatsapp_lid-6000186790141%3Amatrix.theocloud.dev","duration":72.671234,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Filippo (WA)","membership":"join"},"time":"2026-03-06T19:23:36.036076244Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:36.037011711Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5879,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491711115832%3Amatrix.theocloud.dev","duration":21.14829,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491711115832","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:36.05843895Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5880,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491711115832:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491711115832%3Amatrix.theocloud.dev","duration":6.327005,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:36.065062505Z","message":"Request completed"} +{"level":"debug","transaction_id":"2338","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.071568237Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2338","time":"2026-03-06T19:23:36.071892026Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2339","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:36.105398195Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2339","time":"2026-03-06T19:23:36.105534527Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5881,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491711115832:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491711115832%3Amatrix.theocloud.dev","duration":44.914266,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Linda Elke Alice (WA)"},"time":"2026-03-06T19:23:36.11014509Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:36.110925577Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5878,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-245517661540533:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":132.644316,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RvqWGszqndJPwHTfgaQnmdYB","com.beeper.exclude_from_timeline":true,"displayname":"Nihal (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:36.148186952Z","message":"Request completed"} +{"level":"debug","transaction_id":"2340","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.165028003Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2340","time":"2026-03-06T19:23:36.165355773Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5882,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-245517661540533:matrix.theocloud.dev?user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":71.886556,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RvqWGszqndJPwHTfgaQnmdYB","com.beeper.exclude_from_timeline":true,"displayname":"Nihal (WA)","membership":"join"},"time":"2026-03-06T19:23:36.220882561Z","message":"Request completed"} +{"level":"debug","transaction_id":"2341","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.239420219Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2341","time":"2026-03-06T19:23:36.239759792Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:36.265782997Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5884,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491711115832:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491711115832%3Amatrix.theocloud.dev","duration":4.404809,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:36.270567049Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5883,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-272618854867152:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":102.39866,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917657796759 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:36.32451261Z","message":"Request completed"} +{"level":"debug","transaction_id":"2342","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.340593777Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2342","time":"2026-03-06T19:23:36.340831869Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5885,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256783310393511:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":105.519559,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jenny (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:36.377123835Z","message":"Request completed"} +{"level":"debug","transaction_id":"2343","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.391109178Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2343","time":"2026-03-06T19:23:36.391349994Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-272618854867152:matrix.theocloud.dev?user_id=%40whatsapp_lid-272618854867152%3Amatrix.theocloud.dev","duration":94.319733,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917657796759 (WA)","membership":"join"},"time":"2026-03-06T19:23:36.419435989Z","message":"Request completed"} +{"level":"debug","transaction_id":"2344","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.446013882Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2344","time":"2026-03-06T19:23:36.446390052Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5887,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256783310393511:matrix.theocloud.dev?user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":163.4844,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jenny (WA)","membership":"join"},"time":"2026-03-06T19:23:36.541162363Z","message":"Request completed"} +{"level":"debug","transaction_id":"2345","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.561811909Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2345","time":"2026-03-06T19:23:36.562124313Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5888,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-83017473200255:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":175.300722,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rosdzScQUTpuhsaMXCybTXxz","com.beeper.exclude_from_timeline":true,"displayname":"Boris ✞ (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:36.595510424Z","message":"Request completed"} +{"level":"debug","transaction_id":"2346","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.610030409Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2346","time":"2026-03-06T19:23:36.610354197Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5889,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-188257056890939:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":106.788941,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WHJzUFuDxcewXWsoOtBxblJf","com.beeper.exclude_from_timeline":true,"displayname":"Martín (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:36.649049363Z","message":"Request completed"} +{"level":"debug","transaction_id":"2347","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.676402155Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2347","time":"2026-03-06T19:23:36.676712255Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5890,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-83017473200255:matrix.theocloud.dev?user_id=%40whatsapp_lid-83017473200255%3Amatrix.theocloud.dev","duration":121.149268,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rosdzScQUTpuhsaMXCybTXxz","com.beeper.exclude_from_timeline":true,"displayname":"Boris ✞ (WA)","membership":"join"},"time":"2026-03-06T19:23:36.717439549Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:36.718199363Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5892,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_393518638274%3Amatrix.theocloud.dev","duration":10.107075,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_393518638274","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:36.728514707Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5893,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393518638274:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393518638274%3Amatrix.theocloud.dev","duration":5.391678,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:36.734162567Z","message":"Request completed"} +{"level":"debug","transaction_id":"2348","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.736021836Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2348","time":"2026-03-06T19:23:36.736353447Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5894,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393518638274:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393518638274%3Amatrix.theocloud.dev","duration":17.64305,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"🥳 (WA)"},"time":"2026-03-06T19:23:36.751933777Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:36.752462831Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5891,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-188257056890939:matrix.theocloud.dev?user_id=%40whatsapp_lid-188257056890939%3Amatrix.theocloud.dev","duration":120.061754,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WHJzUFuDxcewXWsoOtBxblJf","com.beeper.exclude_from_timeline":true,"displayname":"Martín (WA)","membership":"join"},"time":"2026-03-06T19:23:36.769927294Z","message":"Request completed"} +{"level":"debug","transaction_id":"2349","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.787743063Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2349","time":"2026-03-06T19:23:36.788074464Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5895,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-145066932846614:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":69.073103,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XRkYTeIlPqDtSdsTprpoVzSC","com.beeper.exclude_from_timeline":true,"displayname":"Daniil Bykov (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:36.840152584Z","message":"Request completed"} +{"level":"debug","transaction_id":"2350","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.846132054Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2350","time":"2026-03-06T19:23:36.846438173Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5896,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-145066932846614:matrix.theocloud.dev?user_id=%40whatsapp_lid-145066932846614%3Amatrix.theocloud.dev","duration":44.846588,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XRkYTeIlPqDtSdsTprpoVzSC","com.beeper.exclude_from_timeline":true,"displayname":"Daniil Bykov (WA)","membership":"join"},"time":"2026-03-06T19:23:36.885766388Z","message":"Request completed"} +{"level":"debug","transaction_id":"2351","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.902560505Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2351","time":"2026-03-06T19:23:36.902811449Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5897,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-114310957285378:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.071361,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qowbxNqvTeLckjJmHZFKWdXe","com.beeper.exclude_from_timeline":true,"displayname":"Taha, (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:36.9609041Z","message":"Request completed"} +{"level":"debug","transaction_id":"2352","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:36.976971369Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2352","time":"2026-03-06T19:23:36.977414029Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:37.011980682Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5898,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-114310957285378:matrix.theocloud.dev?user_id=%40whatsapp_lid-114310957285378%3Amatrix.theocloud.dev","duration":59.159142,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qowbxNqvTeLckjJmHZFKWdXe","com.beeper.exclude_from_timeline":true,"displayname":"Taha, (WA)","membership":"join"},"time":"2026-03-06T19:23:37.02074106Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5899,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393518638274:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_393518638274%3Amatrix.theocloud.dev","duration":9.208764,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:37.021527274Z","message":"Request completed"} +{"level":"debug","transaction_id":"2353","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:37.045357993Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2353","time":"2026-03-06T19:23:37.045739052Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5901,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-99939661148216:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":97.656724,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LCFaAaSzAqspzYhRWICrFPdb","com.beeper.exclude_from_timeline":true,"displayname":"Ahmed (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:37.119864401Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5900,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-111918626934878:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":140.917545,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917631251200 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:37.162448241Z","message":"Request completed"} +{"level":"debug","transaction_id":"2354","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:37.165327346Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2354","time":"2026-03-06T19:23:37.165663566Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2355","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:37.187657994Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2355","time":"2026-03-06T19:23:37.1879829Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-99939661148216:matrix.theocloud.dev?user_id=%40whatsapp_lid-99939661148216%3Amatrix.theocloud.dev","duration":118.329388,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LCFaAaSzAqspzYhRWICrFPdb","com.beeper.exclude_from_timeline":true,"displayname":"Ahmed (WA)","membership":"join"},"time":"2026-03-06T19:23:37.23899439Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:37.239858338Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5904,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491729879482%3Amatrix.theocloud.dev","duration":10.542052,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491729879482","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:37.250675569Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5905,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729879482:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491729879482%3Amatrix.theocloud.dev","duration":5.947413,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:37.257005507Z","message":"Request completed"} +{"level":"debug","transaction_id":"2356","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:37.262266022Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2356","time":"2026-03-06T19:23:37.26255922Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","req_id":5903,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-111918626934878:matrix.theocloud.dev?user_id=%40whatsapp_lid-111918626934878%3Amatrix.theocloud.dev","duration":112.497914,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917631251200 (WA)","membership":"join"},"time":"2026-03-06T19:23:37.275627255Z","message":"Request completed"} +{"level":"info","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:23:37.276182571Z","message":"Fetching messages for forward backfill"} +{"level":"debug","transaction_id":"2357","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:37.292173642Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2357","time":"2026-03-06T19:23:37.29240475Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5906,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729879482:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491729879482%3Amatrix.theocloud.dev","duration":37.137126,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491729879482 (WA)"},"time":"2026-03-06T19:23:37.2943699Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:37.29510464Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:37.459035541Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5908,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729879482:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491729879482%3Amatrix.theocloud.dev","duration":2.330075,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:37.461739552Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:37.462557613Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5909,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917630462874%3Amatrix.theocloud.dev","duration":3.40383,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917630462874","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:37.466225586Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5910,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630462874:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917630462874%3Amatrix.theocloud.dev","duration":2.14234,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:37.468741582Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5911,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630462874:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917630462874%3Amatrix.theocloud.dev","duration":6.259119,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917630462874 (WA)"},"time":"2026-03-06T19:23:37.4751825Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:37.476010898Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:37.635305534Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":5907,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":300.801789,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<357552 bytes>","time":"2026-03-06T19:23:37.716772206Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5912,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917630462874%3Amatrix.theocloud.dev","duration":69.567167,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64847 bytes>","time":"2026-03-06T19:23:37.717867751Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5913,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630462874:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917630462874%3Amatrix.theocloud.dev","duration":2.256113,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:37.720446395Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5914,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/wXBhURXMzXsvlaPWLguYbZAV?user_id=%40whatsapp_4917630462874%3Amatrix.theocloud.dev","duration":2.295155,"status_code":200,"response_length":64847,"response_mime":"image/jpeg","time":"2026-03-06T19:23:37.722877532Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5915,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917630462874:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917630462874%3Amatrix.theocloud.dev","duration":10.186905,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wXBhURXMzXsvlaPWLguYbZAV"},"time":"2026-03-06T19:23:37.733309862Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5916,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256676053647524:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":73.982451,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"LENA (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:37.80844471Z","message":"Request completed"} +{"level":"debug","transaction_id":"2358","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:37.828200486Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2358","time":"2026-03-06T19:23:37.828552281Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5918,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256676053647524:matrix.theocloud.dev?user_id=%40whatsapp_lid-256676053647524%3Amatrix.theocloud.dev","duration":93.938255,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"LENA (WA)","membership":"join"},"time":"2026-03-06T19:23:37.903271428Z","message":"Request completed"} +{"level":"debug","transaction_id":"2359","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:37.924810345Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2359","time":"2026-03-06T19:23:37.925119886Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2360","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:38.015497795Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2360","time":"2026-03-06T19:23:38.01583171Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915150515988@s.whatsapp.net","portal_mxid":"!JdcZMudmtLVULzaxtn:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$ReABuBn_XkVwas_CfolEtRikUP-MLTQqPD4GyqA6oZE","event_type":"m.room.member","event_id":"$ReABuBn_XkVwas_CfolEtRikUP-MLTQqPD4GyqA6oZE","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:38.01635846Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5919,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-174736533360837:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":149.181345,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hcMgFyYeObPsJrBcywjtwCxd","com.beeper.exclude_from_timeline":true,"displayname":"+4915904833440 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:38.053178922Z","message":"Request completed"} +{"level":"debug","transaction_id":"2361","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:38.074027519Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2361","time":"2026-03-06T19:23:38.074273573Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":5917,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":341.565751,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<428365 bytes>","time":"2026-03-06T19:23:38.080177055Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5920,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-174736533360837:matrix.theocloud.dev?user_id=%40whatsapp_lid-174736533360837%3Amatrix.theocloud.dev","duration":78.999286,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hcMgFyYeObPsJrBcywjtwCxd","com.beeper.exclude_from_timeline":true,"displayname":"+4915904833440 (WA)","membership":"join"},"time":"2026-03-06T19:23:38.132902612Z","message":"Request completed"} +{"level":"debug","transaction_id":"2362","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:38.146607189Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2362","time":"2026-03-06T19:23:38.146967854Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5922,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-221745000792223:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":88.345361,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oIxDLmVQnqwKJSJbXtyPAiDQ","com.beeper.exclude_from_timeline":true,"displayname":"tizian. (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:38.221960573Z","message":"Request completed"} +{"level":"debug","transaction_id":"2363","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:38.240537063Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2363","time":"2026-03-06T19:23:38.240887112Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5923,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-221745000792223:matrix.theocloud.dev?user_id=%40whatsapp_lid-221745000792223%3Amatrix.theocloud.dev","duration":79.490627,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oIxDLmVQnqwKJSJbXtyPAiDQ","com.beeper.exclude_from_timeline":true,"displayname":"tizian. (WA)","membership":"join"},"time":"2026-03-06T19:23:38.302310189Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:38.302901264Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5924,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491717806781%3Amatrix.theocloud.dev","duration":17.728466,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491717806781","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:38.320820399Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5925,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491717806781:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491717806781%3Amatrix.theocloud.dev","duration":5.057554,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:38.326211589Z","message":"Request completed"} +{"level":"debug","transaction_id":"2364","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:38.328165913Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2364","time":"2026-03-06T19:23:38.328420418Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5926,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491717806781:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491717806781%3Amatrix.theocloud.dev","duration":6.769596,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491717806781 (WA)"},"time":"2026-03-06T19:23:38.333203213Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:38.333761531Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":5921,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":279.167257,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<365368 bytes>","time":"2026-03-06T19:23:38.378854383Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":5927,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":147.72276,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<157231 bytes>","time":"2026-03-06T19:23:38.544404645Z","message":"Request completed"} +{"level":"debug","transaction_id":"2365","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:38.54569931Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2365","time":"2026-03-06T19:23:38.545825864Z","message":"Finished dispatching events from transaction"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:23:38.551065705Z","message":"Failed to download media: invalid media hmac, trying with next host..."} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:23:38.55701242Z","message":"Failed to download media: invalid media hmac, trying with next host..."} +{"level":"error","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media from last host: invalid media hmac","time":"2026-03-06T19:23:38.563040291Z","message":"Failed to download thumbnail for link preview"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:38.641016879Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5928,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491717806781%3Amatrix.theocloud.dev","duration":76.215726,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<61535 bytes>","time":"2026-03-06T19:23:38.732081756Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5929,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491717806781:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491717806781%3Amatrix.theocloud.dev","duration":2.297459,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:38.734771309Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5930,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/hQRlnxPxCXygYUbcGsmraJxJ?user_id=%40whatsapp_491717806781%3Amatrix.theocloud.dev","duration":2.167274,"status_code":200,"response_length":61535,"response_mime":"image/jpeg","time":"2026-03-06T19:23:38.737073727Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5931,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491717806781:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491717806781%3Amatrix.theocloud.dev","duration":4.101903,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hQRlnxPxCXygYUbcGsmraJxJ"},"time":"2026-03-06T19:23:38.741431322Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:38.74216718Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5932,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915120791916%3Amatrix.theocloud.dev","duration":3.272526,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915120791916","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:38.745674166Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5933,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915120791916:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915120791916%3Amatrix.theocloud.dev","duration":2.11105,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:38.748059976Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5934,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915120791916:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915120791916%3Amatrix.theocloud.dev","duration":6.865139,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915120791916 (WA)"},"time":"2026-03-06T19:23:38.755168865Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"write callback failed: failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:38.755259171Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:38.755948024Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:38.918542006Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"write callback failed: failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:38.990034024Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5935,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915120791916%3Amatrix.theocloud.dev","duration":89.967236,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<26690 bytes>","time":"2026-03-06T19:23:39.018583143Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5936,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915120791916:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915120791916%3Amatrix.theocloud.dev","duration":2.584441,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:39.021559189Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5937,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/vRpmjTBzIaZWjPyndVhILkzm?user_id=%40whatsapp_4915120791916%3Amatrix.theocloud.dev","duration":2.867791,"status_code":200,"response_length":26690,"response_mime":"image/jpeg","time":"2026-03-06T19:23:39.024598652Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5938,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915120791916:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915120791916%3Amatrix.theocloud.dev","duration":4.927927,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vRpmjTBzIaZWjPyndVhILkzm"},"time":"2026-03-06T19:23:39.029769419Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5939,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-158883775557821:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":75.670537,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YdptPheZgMIMbOvYpqICGtti","com.beeper.exclude_from_timeline":true,"displayname":"+4917624286664 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:39.106500511Z","message":"Request completed"} +{"level":"debug","transaction_id":"2366","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:39.127660324Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2366","time":"2026-03-06T19:23:39.127998361Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:39.154937058Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5940,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-158883775557821:matrix.theocloud.dev?user_id=%40whatsapp_lid-158883775557821%3Amatrix.theocloud.dev","duration":84.860095,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YdptPheZgMIMbOvYpqICGtti","com.beeper.exclude_from_timeline":true,"displayname":"+4917624286664 (WA)","membership":"join"},"time":"2026-03-06T19:23:39.192068666Z","message":"Request completed"} +{"level":"debug","transaction_id":"2367","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:39.213366139Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2367","time":"2026-03-06T19:23:39.213687692Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5941,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-252960856604824:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":80.192192,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YMYLGMswkQSuDBKwlmTbXSIj","com.beeper.exclude_from_timeline":true,"displayname":"Siddhant (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:39.273323158Z","message":"Request completed"} +{"level":"debug","transaction_id":"2368","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:39.292322124Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2368","time":"2026-03-06T19:23:39.292694313Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:39.311703964Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5942,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-252960856604824:matrix.theocloud.dev?user_id=%40whatsapp_lid-252960856604824%3Amatrix.theocloud.dev","duration":71.821953,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YMYLGMswkQSuDBKwlmTbXSIj","com.beeper.exclude_from_timeline":true,"displayname":"Siddhant (WA)","membership":"join"},"time":"2026-03-06T19:23:39.346083231Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:39.349716143Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5943,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491795186866%3Amatrix.theocloud.dev","duration":7.084445,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491795186866","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:39.357047968Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5944,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491795186866:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491795186866%3Amatrix.theocloud.dev","duration":3.461031,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:39.361722856Z","message":"Request completed"} +{"level":"debug","transaction_id":"2369","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:39.363322522Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2369","time":"2026-03-06T19:23:39.363569554Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5945,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491795186866:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491795186866%3Amatrix.theocloud.dev","duration":6.351939,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491795186866 (WA)"},"time":"2026-03-06T19:23:39.368222372Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:39.368787605Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:39.598256545Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:39.648220192Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5946,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491795186866:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491795186866%3Amatrix.theocloud.dev","duration":2.615451,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:39.651156987Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5947,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-235244099776580:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.008151,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nxsRkDPsyhgMLEqqUtGmapSp","com.beeper.exclude_from_timeline":true,"displayname":"Костя (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:39.722158224Z","message":"Request completed"} +{"level":"debug","transaction_id":"2370","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:39.742434464Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2370","time":"2026-03-06T19:23:39.742695813Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:39.793870664Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5948,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-235244099776580:matrix.theocloud.dev?user_id=%40whatsapp_lid-235244099776580%3Amatrix.theocloud.dev","duration":80.68863,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nxsRkDPsyhgMLEqqUtGmapSp","com.beeper.exclude_from_timeline":true,"displayname":"Костя (WA)","membership":"join"},"time":"2026-03-06T19:23:39.803580197Z","message":"Request completed"} +{"level":"debug","transaction_id":"2371","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:39.817210532Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2371","time":"2026-03-06T19:23:39.817599902Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5949,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-264840736174206:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.331104,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/bSBVMfsjdKdWLIIBVJLkxPCK","com.beeper.exclude_from_timeline":true,"displayname":"+4917661608163 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:39.878640174Z","message":"Request completed"} +{"level":"debug","transaction_id":"2372","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:39.89979901Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2372","time":"2026-03-06T19:23:39.900156183Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:39.913196211Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5950,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-264840736174206:matrix.theocloud.dev?user_id=%40whatsapp_lid-264840736174206%3Amatrix.theocloud.dev","duration":83.805618,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/bSBVMfsjdKdWLIIBVJLkxPCK","com.beeper.exclude_from_timeline":true,"displayname":"+4917661608163 (WA)","membership":"join"},"time":"2026-03-06T19:23:39.963139046Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:39.964131643Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5951,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491743711632%3Amatrix.theocloud.dev","duration":13.88505,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491743711632","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:39.978312684Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5952,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491743711632:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491743711632%3Amatrix.theocloud.dev","duration":5.342579,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:39.984096387Z","message":"Request completed"} +{"level":"debug","transaction_id":"2373","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:39.986222104Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2373","time":"2026-03-06T19:23:39.986545892Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5953,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491743711632:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491743711632%3Amatrix.theocloud.dev","duration":7.753323,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Philip (WA)"},"time":"2026-03-06T19:23:39.99203996Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:39.992580957Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:40.060837605Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:40.148502913Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5954,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491743711632:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491743711632%3Amatrix.theocloud.dev","duration":2.687668,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:40.151561861Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:40.217708506Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5955,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-29888778084533:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.934958,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Martin Kuhn (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:40.225488998Z","message":"Request completed"} +{"level":"debug","transaction_id":"2374","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.24143977Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2374","time":"2026-03-06T19:23:40.241725285Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5956,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-29888778084533:matrix.theocloud.dev?user_id=%40whatsapp_lid-29888778084533%3Amatrix.theocloud.dev","duration":79.871337,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Martin Kuhn (WA)","membership":"join"},"time":"2026-03-06T19:23:40.30604821Z","message":"Request completed"} +{"level":"debug","transaction_id":"2375","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.324908888Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2375","time":"2026-03-06T19:23:40.325250207Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:23:40.384180476Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5957,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-157088529567880:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":83.342005,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kasbJAazrRqiareSLijNArfp","com.beeper.exclude_from_timeline":true,"displayname":"Yasmine (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:40.390435893Z","message":"Request completed"} +{"level":"debug","transaction_id":"2376","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.409373188Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2376","time":"2026-03-06T19:23:40.409703262Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5958,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-157088529567880:matrix.theocloud.dev?user_id=%40whatsapp_lid-157088529567880%3Amatrix.theocloud.dev","duration":80.343819,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kasbJAazrRqiareSLijNArfp","com.beeper.exclude_from_timeline":true,"displayname":"Yasmine (WA)","membership":"join"},"time":"2026-03-06T19:23:40.471475969Z","message":"Request completed"} +{"level":"debug","transaction_id":"2377","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.489106027Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2377","time":"2026-03-06T19:23:40.489464807Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5959,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-215268173324429:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.300023,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SwLWUAgYYXeOUWfhnQIjMoME","com.beeper.exclude_from_timeline":true,"displayname":"+4917622717740 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:40.544713274Z","message":"Request completed"} +{"level":"debug","transaction_id":"2378","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.557818116Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2378","time":"2026-03-06T19:23:40.558136736Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5960,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-215268173324429:matrix.theocloud.dev?user_id=%40whatsapp_lid-215268173324429%3Amatrix.theocloud.dev","duration":80.714332,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SwLWUAgYYXeOUWfhnQIjMoME","com.beeper.exclude_from_timeline":true,"displayname":"+4917622717740 (WA)","membership":"join"},"time":"2026-03-06T19:23:40.62603628Z","message":"Request completed"} +{"level":"debug","transaction_id":"2379","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.638388573Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2379","time":"2026-03-06T19:23:40.638619052Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5961,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-144049092702394:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.420213,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491735425217 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:40.68856014Z","message":"Request completed"} +{"level":"debug","transaction_id":"2380","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.700898324Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2380","time":"2026-03-06T19:23:40.701125172Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5962,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-144049092702394:matrix.theocloud.dev?user_id=%40whatsapp_lid-144049092702394%3Amatrix.theocloud.dev","duration":60.267957,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491735425217 (WA)","membership":"join"},"time":"2026-03-06T19:23:40.749379221Z","message":"Request completed"} +{"level":"debug","transaction_id":"2381","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.767742553Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2381","time":"2026-03-06T19:23:40.76805363Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5964,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198736911294586:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":85.258266,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+201559445990 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:40.835904634Z","message":"Request completed"} +{"level":"debug","transaction_id":"2382","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.84710041Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2382","time":"2026-03-06T19:23:40.847364762Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":5963,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":180.461363,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<190152 bytes>","time":"2026-03-06T19:23:40.870702675Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5965,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198736911294586:matrix.theocloud.dev?user_id=%40whatsapp_lid-198736911294586%3Amatrix.theocloud.dev","duration":66.192741,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+201559445990 (WA)","membership":"join"},"time":"2026-03-06T19:23:40.902850344Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:40.908992197Z","message":""} +{"level":"debug","transaction_id":"2383","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.91949416Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2383","time":"2026-03-06T19:23:40.919721497Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:40.951695398Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5966,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-159292468543547:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.879006,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Georges Paul (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:40.96451277Z","message":"Request completed"} +{"level":"debug","transaction_id":"2384","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:40.979161194Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2384","time":"2026-03-06T19:23:40.97946829Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5967,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-159292468543547:matrix.theocloud.dev?user_id=%40whatsapp_lid-159292468543547%3Amatrix.theocloud.dev","duration":61.743094,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Georges Paul (WA)","membership":"join"},"time":"2026-03-06T19:23:41.026834855Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:41.027604656Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5968,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917663273910%3Amatrix.theocloud.dev","duration":8.558324,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917663273910","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:41.036448216Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5969,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663273910:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663273910%3Amatrix.theocloud.dev","duration":4.762261,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:41.04165153Z","message":"Request completed"} +{"level":"debug","transaction_id":"2385","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.043654185Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2385","time":"2026-03-06T19:23:41.043853654Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5970,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663273910:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917663273910%3Amatrix.theocloud.dev","duration":8.704015,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"C R (WA)"},"time":"2026-03-06T19:23:41.050551173Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:41.051415121Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:41.208228751Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5971,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917663273910:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917663273910%3Amatrix.theocloud.dev","duration":7.304936,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:41.215916143Z","message":"Request completed"} +{"level":"debug","transaction_id":"2386","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.309615189Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2386","time":"2026-03-06T19:23:41.309993035Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915234825973@s.whatsapp.net","portal_mxid":"!xjzNIvMEOLkmIIZSft:matrix.theocloud.dev","event_loop_index":6,"action":"handle matrix event","event_id":"$5quW4tzc9ghuq7nrKX5vdm5ZBJVZboKS6xYZBFImNmQ","event_type":"m.room.member","event_id":"$5quW4tzc9ghuq7nrKX5vdm5ZBJVZboKS6xYZBFImNmQ","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:41.310507563Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5972,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-73023721844742:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":140.656265,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915110698014 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:41.357486503Z","message":"Request completed"} +{"level":"debug","transaction_id":"2387","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.38566015Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2387","time":"2026-03-06T19:23:41.386003704Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5973,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-73023721844742:matrix.theocloud.dev?user_id=%40whatsapp_lid-73023721844742%3Amatrix.theocloud.dev","duration":85.580727,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915110698014 (WA)","membership":"join"},"time":"2026-03-06T19:23:41.443631136Z","message":"Request completed"} +{"level":"debug","transaction_id":"2388","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.463254491Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2388","time":"2026-03-06T19:23:41.46353365Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5975,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-85641681445100:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.176113,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FheAeRnuJBRFmezVYrgtSJHo","com.beeper.exclude_from_timeline":true,"displayname":"+491717806781 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:41.503647242Z","message":"Request completed"} +{"level":"debug","transaction_id":"2389","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.518050311Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2389","time":"2026-03-06T19:23:41.518419287Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5976,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-85641681445100:matrix.theocloud.dev?user_id=%40whatsapp_lid-85641681445100%3Amatrix.theocloud.dev","duration":63.584833,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FheAeRnuJBRFmezVYrgtSJHo","com.beeper.exclude_from_timeline":true,"displayname":"+491717806781 (WA)","membership":"join"},"time":"2026-03-06T19:23:41.568065711Z","message":"Request completed"} +{"level":"debug","transaction_id":"2390","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.587970809Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2390","time":"2026-03-06T19:23:41.588224616Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5977,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-2379713908979:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.154675,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491783144400 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:41.633296934Z","message":"Request completed"} +{"level":"debug","transaction_id":"2391","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.649314964Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2391","time":"2026-03-06T19:23:41.649571145Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5978,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-2379713908979:matrix.theocloud.dev?user_id=%40whatsapp_lid-2379713908979%3Amatrix.theocloud.dev","duration":52.416366,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491783144400 (WA)","membership":"join"},"time":"2026-03-06T19:23:41.686476744Z","message":"Request completed"} +{"level":"debug","transaction_id":"2392","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.701915085Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2392","time":"2026-03-06T19:23:41.702244111Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":5974,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":303.657146,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<375059 bytes>","time":"2026-03-06T19:23:41.715845671Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5979,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-107533213667570:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.361963,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mbSIZjibeLxFkMxJlaysPEuX","com.beeper.exclude_from_timeline":true,"displayname":"+4917676631864 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:41.746611791Z","message":"Request completed"} +{"level":"debug","transaction_id":"2393","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.761904371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2393","time":"2026-03-06T19:23:41.762140367Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5980,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-107533213667570:matrix.theocloud.dev?user_id=%40whatsapp_lid-107533213667570%3Amatrix.theocloud.dev","duration":55.940184,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mbSIZjibeLxFkMxJlaysPEuX","com.beeper.exclude_from_timeline":true,"displayname":"+4917676631864 (WA)","membership":"join"},"time":"2026-03-06T19:23:41.803371364Z","message":"Request completed"} +{"level":"debug","transaction_id":"2394","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.826409793Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2394","time":"2026-03-06T19:23:41.826736236Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2395","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:41.861514651Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2395","time":"2026-03-06T19:23:41.86161243Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5981,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-15603716907169:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":88.529605,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MmlzaqCCiaoDAMLmgdSLUHrK","com.beeper.exclude_from_timeline":true,"displayname":"+4915731849652 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:41.89280361Z","message":"Request completed"} +{"level":"debug","transaction_id":"2396","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.905629502Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2396","time":"2026-03-06T19:23:41.905873391Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5982,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-15603716907169:matrix.theocloud.dev?user_id=%40whatsapp_lid-15603716907169%3Amatrix.theocloud.dev","duration":54.648732,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MmlzaqCCiaoDAMLmgdSLUHrK","com.beeper.exclude_from_timeline":true,"displayname":"+4915731849652 (WA)","membership":"join"},"time":"2026-03-06T19:23:41.948238695Z","message":"Request completed"} +{"level":"debug","transaction_id":"2397","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:41.973156159Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2397","time":"2026-03-06T19:23:41.973489306Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5983,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-136589153947794:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":83.514306,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491630461857 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:42.032795535Z","message":"Request completed"} +{"level":"debug","transaction_id":"2398","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.045168222Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2398","time":"2026-03-06T19:23:42.045416022Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5985,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-136589153947794:matrix.theocloud.dev?user_id=%40whatsapp_lid-136589153947794%3Amatrix.theocloud.dev","duration":47.978382,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491630461857 (WA)","membership":"join"},"time":"2026-03-06T19:23:42.081471432Z","message":"Request completed"} +{"level":"debug","transaction_id":"2399","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.095287268Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2399","time":"2026-03-06T19:23:42.095511531Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5986,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-174715159236763:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.043831,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YKCMFdCHOAjMvdqTqMEbsrzg","com.beeper.exclude_from_timeline":true,"displayname":"Bryan (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:42.139671361Z","message":"Request completed"} +{"level":"debug","transaction_id":"2400","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.166484831Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2400","time":"2026-03-06T19:23:42.166714123Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5987,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-174715159236763:matrix.theocloud.dev?user_id=%40whatsapp_lid-174715159236763%3Amatrix.theocloud.dev","duration":87.545319,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YKCMFdCHOAjMvdqTqMEbsrzg","com.beeper.exclude_from_timeline":true,"displayname":"Bryan (WA)","membership":"join"},"time":"2026-03-06T19:23:42.228034112Z","message":"Request completed"} +{"level":"debug","transaction_id":"2401","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.243918046Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2401","time":"2026-03-06T19:23:42.244225002Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5988,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-110364100427965:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.030563,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DirJwkctBFoGwKEzXTTMWYyH","com.beeper.exclude_from_timeline":true,"displayname":"Bea (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:42.289022212Z","message":"Request completed"} +{"level":"debug","transaction_id":"2402","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.305754029Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2402","time":"2026-03-06T19:23:42.306075094Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":5984,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":328.480463,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<566472 bytes>","time":"2026-03-06T19:23:42.319198654Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5989,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-110364100427965:matrix.theocloud.dev?user_id=%40whatsapp_lid-110364100427965%3Amatrix.theocloud.dev","duration":66.660683,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DirJwkctBFoGwKEzXTTMWYyH","com.beeper.exclude_from_timeline":true,"displayname":"Bea (WA)","membership":"join"},"time":"2026-03-06T19:23:42.356408975Z","message":"Request completed"} +{"level":"debug","transaction_id":"2403","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.37227866Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2403","time":"2026-03-06T19:23:42.372560194Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5990,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-175909109764250:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":66.382571,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+380952823600 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:42.423729527Z","message":"Request completed"} +{"level":"debug","transaction_id":"2404","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.438429914Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2404","time":"2026-03-06T19:23:42.438627498Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5991,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-175909109764250:matrix.theocloud.dev?user_id=%40whatsapp_lid-175909109764250%3Amatrix.theocloud.dev","duration":57.715922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+380952823600 (WA)","membership":"join"},"time":"2026-03-06T19:23:42.482160284Z","message":"Request completed"} +{"level":"debug","transaction_id":"2405","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.498211769Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2405","time":"2026-03-06T19:23:42.498453633Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5992,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-135613944741978:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.426012,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sofía (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:42.547717531Z","message":"Request completed"} +{"level":"debug","transaction_id":"2406","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.564857227Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2406","time":"2026-03-06T19:23:42.565126399Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5993,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-135613944741978:matrix.theocloud.dev?user_id=%40whatsapp_lid-135613944741978%3Amatrix.theocloud.dev","duration":65.659356,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sofía (WA)","membership":"join"},"time":"2026-03-06T19:23:42.613879052Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:42.614597309Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5994,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915222663440%3Amatrix.theocloud.dev","duration":5.977375,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915222663440","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:42.620873749Z","message":"Request completed"} +{"level":"debug","transaction_id":"2407","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:42.624013645Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2407","time":"2026-03-06T19:23:42.624217793Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5995,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915222663440:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915222663440%3Amatrix.theocloud.dev","duration":4.896009,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:42.626258862Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5996,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915222663440:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915222663440%3Amatrix.theocloud.dev","duration":5.531084,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915222663440 (WA)"},"time":"2026-03-06T19:23:42.631963364Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:42.632740428Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:43.042793025Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5997,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915222663440:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915222663440%3Amatrix.theocloud.dev","duration":2.46096,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:43.045619469Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":5998,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-239363409617131:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.733463,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XyldaycAVTHtGdCrZPqAFuuq","com.beeper.exclude_from_timeline":true,"displayname":"Artur (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:43.119509449Z","message":"Request completed"} +{"level":"debug","transaction_id":"2408","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:43.149714248Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2408","time":"2026-03-06T19:23:43.150011566Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6000,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-239363409617131:matrix.theocloud.dev?user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":68.11836,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XyldaycAVTHtGdCrZPqAFuuq","com.beeper.exclude_from_timeline":true,"displayname":"Artur (WA)","membership":"join"},"time":"2026-03-06T19:23:43.188386924Z","message":"Request completed"} +{"level":"debug","transaction_id":"2409","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:43.208537518Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2409","time":"2026-03-06T19:23:43.208858583Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6001,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-183245031354381:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":69.845349,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EkecugxrVYVarUjWxAcbYQMV","com.beeper.exclude_from_timeline":true,"displayname":"+4915735591152 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:43.259268172Z","message":"Request completed"} +{"level":"debug","transaction_id":"2410","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:43.279649245Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2410","time":"2026-03-06T19:23:43.279968703Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6002,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-183245031354381:matrix.theocloud.dev?user_id=%40whatsapp_lid-183245031354381%3Amatrix.theocloud.dev","duration":67.629813,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EkecugxrVYVarUjWxAcbYQMV","com.beeper.exclude_from_timeline":true,"displayname":"+4915735591152 (WA)","membership":"join"},"time":"2026-03-06T19:23:43.327686295Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:43.328612542Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6003,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491749442314%3Amatrix.theocloud.dev","duration":16.720573,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491749442314","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:43.345637138Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6004,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749442314:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491749442314%3Amatrix.theocloud.dev","duration":6.561466,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:43.352629111Z","message":"Request completed"} +{"level":"debug","transaction_id":"2411","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:43.357149858Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2411","time":"2026-03-06T19:23:43.357513316Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6005,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749442314:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491749442314%3Amatrix.theocloud.dev","duration":12.259402,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491749442314 (WA)"},"time":"2026-03-06T19:23:43.365100135Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:43.365986084Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":5999,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":341.0698,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<392765 bytes>","time":"2026-03-06T19:23:43.414719879Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:43.519737832Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6006,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749442314:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491749442314%3Amatrix.theocloud.dev","duration":2.476534,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:43.522585857Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:43.523388833Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6007,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917622717740%3Amatrix.theocloud.dev","duration":9.532833,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917622717740","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:43.533246013Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6008,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917622717740:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917622717740%3Amatrix.theocloud.dev","duration":2.235509,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:43.535909585Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6009,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917622717740:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917622717740%3Amatrix.theocloud.dev","duration":12.894897,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917622717740 (WA)"},"time":"2026-03-06T19:23:43.549005208Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:43.549898699Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:43.969193096Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6010,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917622717740%3Amatrix.theocloud.dev","duration":82.520172,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<40373 bytes>","time":"2026-03-06T19:23:44.06319372Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6011,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917622717740:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917622717740%3Amatrix.theocloud.dev","duration":2.331822,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:44.065913795Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6012,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/oxmkCtIokNkrFUrrEVPtVVOy?user_id=%40whatsapp_4917622717740%3Amatrix.theocloud.dev","duration":2.343904,"status_code":200,"response_length":40373,"response_mime":"image/jpeg","time":"2026-03-06T19:23:44.068410374Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6013,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917622717740:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917622717740%3Amatrix.theocloud.dev","duration":4.157706,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/oxmkCtIokNkrFUrrEVPtVVOy"},"time":"2026-03-06T19:23:44.072895571Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6014,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-58927135879305:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.369647,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nLxSezpeCzyHdxKqCzqAuJSt","com.beeper.exclude_from_timeline":true,"displayname":"Tino (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:44.135274159Z","message":"Request completed"} +{"level":"debug","transaction_id":"2412","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.156826415Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2412","time":"2026-03-06T19:23:44.157221722Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6015,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-58927135879305:matrix.theocloud.dev?user_id=%40whatsapp_lid-58927135879305%3Amatrix.theocloud.dev","duration":79.032811,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nLxSezpeCzyHdxKqCzqAuJSt","com.beeper.exclude_from_timeline":true,"displayname":"Tino (WA)","membership":"join"},"time":"2026-03-06T19:23:44.215163863Z","message":"Request completed"} +{"level":"debug","transaction_id":"2413","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.231658218Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2413","time":"2026-03-06T19:23:44.232035226Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6017,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-206699780640847:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.786258,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BjGscMHCGvMJzaQSxPmYrAPY","com.beeper.exclude_from_timeline":true,"displayname":"Julia (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:44.281077235Z","message":"Request completed"} +{"level":"debug","transaction_id":"2414","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.298910744Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2414","time":"2026-03-06T19:23:44.299241167Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6018,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-206699780640847:matrix.theocloud.dev?user_id=%40whatsapp_lid-206699780640847%3Amatrix.theocloud.dev","duration":62.341013,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BjGscMHCGvMJzaQSxPmYrAPY","com.beeper.exclude_from_timeline":true,"displayname":"Julia (WA)","membership":"join"},"time":"2026-03-06T19:23:44.344176175Z","message":"Request completed"} +{"level":"debug","transaction_id":"2415","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.360754759Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2415","time":"2026-03-06T19:23:44.361100129Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6019,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-139238746132555:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.552292,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TBFQFuBqdTqYcKeKTxpfZNFv","com.beeper.exclude_from_timeline":true,"displayname":"+491757493106 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:44.416756125Z","message":"Request completed"} +{"level":"debug","transaction_id":"2416","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.436017488Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2416","time":"2026-03-06T19:23:44.436310825Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6020,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-139238746132555:matrix.theocloud.dev?user_id=%40whatsapp_lid-139238746132555%3Amatrix.theocloud.dev","duration":71.677239,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TBFQFuBqdTqYcKeKTxpfZNFv","com.beeper.exclude_from_timeline":true,"displayname":"+491757493106 (WA)","membership":"join"},"time":"2026-03-06T19:23:44.489345644Z","message":"Request completed"} +{"level":"debug","transaction_id":"2417","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.507704016Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2417","time":"2026-03-06T19:23:44.507955937Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6016,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":369.80435,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<435268 bytes>","time":"2026-03-06T19:23:44.53989806Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 403","media_type":"video attachment","time":"2026-03-06T19:23:44.545882559Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6021,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-212326053634078:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.764395,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+5491140809052 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:44.551067435Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","error":"write callback failed: failed to download media: download failed with status code 403","media_type":"video attachment","time":"2026-03-06T19:23:44.552008Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_count":27,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:23:44.552125405Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_count":27,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:23:44.552221508Z","message":"Sending backfill messages"} +{"level":"debug","transaction_id":"2418","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.57016418Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2418","time":"2026-03-06T19:23:44.570386558Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6023,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825024552551652_1?ts=1766520509000&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":72.483009,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.\n\nDas Wort zum Ende des Jahres 🙌🏻","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"Das Wort zum Ende des Jahres 🙌🏻","info":{"mimetype":"video/mp4","w":480,"h":848,"duration":99000,"size":16606791},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"6zred4l+Lopas9e975l07lvXtyuLYOfYgikXcslba6E=","length":16606791,"type":"WhatsApp Video Keys","sha256":"ukfRiqavNq945dWJgrX8JmDIdwBpL/2Jb5sXMwfdKFk=","enc_sha256":"ReI8nKwpuUEmqFVQcxM7ZOTpQUU631Ts4rXL4ybsaF8=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:44.625283788Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","sender_id":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"message_ts":"2025-12-23T20:08:29Z","event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","part_id":"","time":"2026-03-06T19:23:44.625471035Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2419","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.662389904Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2419","time":"2026-03-06T19:23:44.662509614Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6022,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-212326053634078:matrix.theocloud.dev?user_id=%40whatsapp_lid-212326053634078%3Amatrix.theocloud.dev","duration":137.913142,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+5491140809052 (WA)","membership":"join"},"time":"2026-03-06T19:23:44.689565366Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:44.690412133Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6025,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917624327157%3Amatrix.theocloud.dev","duration":18.31535,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917624327157","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:44.709021589Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6026,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624327157:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917624327157%3Amatrix.theocloud.dev","duration":7.985409,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:44.717434641Z","message":"Request completed"} +{"level":"debug","transaction_id":"2420","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.722000994Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2420","time":"2026-03-06T19:23:44.72225508Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2421","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:44.735247826Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2421","time":"2026-03-06T19:23:44.73540958Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6027,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624327157:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917624327157%3Amatrix.theocloud.dev","duration":27.440654,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917624327157 (WA)"},"time":"2026-03-06T19:23:44.745153895Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:44.745783522Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6024,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825024626240347_1?ts=1766566147284&user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":145.612198,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","key":"❤️"}},"time":"2026-03-06T19:23:44.771977423Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","target_part_id":"","reaction_sender_id":{"user_id":"lid-40566117134352","sender_login":"491777059558"},"reaction_ts":"2025-12-24T08:49:07.284Z","event_id":"$eM1GePbK_P6Wfc-EBeLg5VdQ1GC1qLIK6_rZ8kUsuQA","time":"2026-03-06T19:23:44.772109704Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2422","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.790704911Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2422","time":"2026-03-06T19:23:44.790806881Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2423","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.849903165Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2423","time":"2026-03-06T19:23:44.850242737Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","portal_mxid":"!wRkwNZtgctxiqmVHWz:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$6FB2vPgwCrHbPqg4bz5RNfc2ttsfWyUb_iqQixXTj3g","event_type":"m.room.member","event_id":"$6FB2vPgwCrHbPqg4bz5RNfc2ttsfWyUb_iqQixXTj3g","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:44.850764319Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6028,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825024772672981_1?ts=1766528063965&user_id=%40whatsapp_lid-77859284607025%3Amatrix.theocloud.dev","duration":93.977227,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","key":"❤️"}},"time":"2026-03-06T19:23:44.866778857Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","target_part_id":"","reaction_sender_id":{"user_id":"lid-77859284607025","sender_login":"491708034509"},"reaction_ts":"2025-12-23T22:14:23.965Z","event_id":"$KxSB8AXqttK6AlwMFvGpouDZbttlhnUtlluGfdF0yFw","time":"2026-03-06T19:23:44.867320553Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2424","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.888064038Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2424","time":"2026-03-06T19:23:44.88814701Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6029,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825024867977908_1?ts=1766523930933&user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":82.904025,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","key":"🙏"}},"time":"2026-03-06T19:23:44.951065688Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","target_part_id":"","reaction_sender_id":{"user_id":"lid-266502737506505","sender_login":"491624232636"},"reaction_ts":"2025-12-23T21:05:30.933Z","event_id":"$3V7STMdQea68tMN2km1MT4fqwlcVMQcbfBJXTZSnBeE","time":"2026-03-06T19:23:44.951199436Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2425","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:44.969712439Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2425","time":"2026-03-06T19:23:44.969807844Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6030,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825024951743576_1?ts=1766526875089&user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":50.773328,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","key":"❤️"}},"time":"2026-03-06T19:23:45.002639337Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","target_part_id":"","reaction_sender_id":{"user_id":"lid-38504566390811","sender_login":"4917656979328"},"reaction_ts":"2025-12-23T21:54:35.089Z","event_id":"$HYF-g5GAVzWuVDqfwVfXB1Y_iwylM_eFfEafmzxRzIs","time":"2026-03-06T19:23:45.00275772Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2426","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.016415642Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2426","time":"2026-03-06T19:23:45.016507205Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2427","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:45.049984809Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2427","time":"2026-03-06T19:23:45.050092925Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6031,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825025003161897_1?ts=1766526629988&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":69.799601,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","key":"🙏"}},"time":"2026-03-06T19:23:45.073082116Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","target_part_id":"","reaction_sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"reaction_ts":"2025-12-23T21:50:29.988Z","event_id":"$5Hka15k3RklvkjnfQmTGG696ElvW8bxVNb6hO2w_NpM","time":"2026-03-06T19:23:45.073248619Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2428","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.085870712Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2428","time":"2026-03-06T19:23:45.085962345Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6032,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825025073902063_1?ts=1766758433303&user_id=%40whatsapp_lid-75930894614615%3Amatrix.theocloud.dev","duration":48.968396,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","key":"❤️"}},"time":"2026-03-06T19:23:45.122988771Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","target_part_id":"","reaction_sender_id":{"user_id":"lid-75930894614615","sender_login":"4917684328837"},"reaction_ts":"2025-12-26T14:13:53.303Z","event_id":"$IzLXhNU6sa0VH-WshhB2XFE8BoyQYE8NghP72eDGcDs","time":"2026-03-06T19:23:45.123112741Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2429","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.143351126Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2429","time":"2026-03-06T19:23:45.143457915Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:45.155514216Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6033,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825025123585224_1?ts=1766607177150&user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":54.106197,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","key":"🙏"}},"time":"2026-03-06T19:23:45.177814413Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","target_part_id":"","reaction_sender_id":{"user_id":"lid-61955406606386","sender_login":"491788110151"},"reaction_ts":"2025-12-24T20:12:57.15Z","event_id":"$1F_h9TrfCE1dYkLvT33rzjRQKfTPMnog1xkYvN-T3Rs","time":"2026-03-06T19:23:45.17794858Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2430","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.195595121Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2430","time":"2026-03-06T19:23:45.195700443Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6035,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825025178469394_1?ts=1766522685590&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":48.010091,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","key":"🙏"}},"time":"2026-03-06T19:23:45.226594933Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","target_part_id":"","reaction_sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"reaction_ts":"2025-12-23T20:44:45.59Z","event_id":"$oxO9li5jy5_-O1iO_z8OneVTK0IpUKMx95ZnXrFTUU8","time":"2026-03-06T19:23:45.226722326Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2431","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.242861043Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2431","time":"2026-03-06T19:23:45.242963432Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6036,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825025227919980_1?ts=1766596489000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":51.908752,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Danke dir fürs aufnehmen 🙌❤️ ein gesegnetes Fest euch allen ❤️","m.mentions":{"user_ids":["@whatsapp_lid-59622887026730:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:45.280004874Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:239363409617131@lid:3A5A342668EFA37CFE51","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2025-12-24T17:14:49Z","event_id":"$xS7d2G7s5pnNNEtJ0mHy0KOl93I79G6pSWLqKumm7UE","part_id":"","time":"2026-03-06T19:23:45.280192051Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6034,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4917624327157%3Amatrix.theocloud.dev","duration":128.629996,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<52534 bytes>","time":"2026-03-06T19:23:45.296508378Z","message":"Request completed"} +{"level":"debug","transaction_id":"2432","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.300757298Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2432","time":"2026-03-06T19:23:45.300866042Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6038,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624327157:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917624327157%3Amatrix.theocloud.dev","duration":5.355709,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:45.302241026Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6039,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/dJqhfrSVQJgQBKfNEOeWDSaP?user_id=%40whatsapp_4917624327157%3Amatrix.theocloud.dev","duration":7.249062,"status_code":200,"response_length":52534,"response_mime":"image/jpeg","time":"2026-03-06T19:23:45.309678522Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6040,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917624327157:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917624327157%3Amatrix.theocloud.dev","duration":28.073703,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dJqhfrSVQJgQBKfNEOeWDSaP"},"time":"2026-03-06T19:23:45.337986616Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:45.338760048Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6041,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915735591152%3Amatrix.theocloud.dev","duration":9.695564,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915735591152","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:45.348708023Z","message":"Request completed"} +{"level":"debug","transaction_id":"2433","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:45.352605358Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2433","time":"2026-03-06T19:23:45.352694825Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6042,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735591152:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915735591152%3Amatrix.theocloud.dev","duration":5.077878,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:45.354111155Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6043,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735591152:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915735591152%3Amatrix.theocloud.dev","duration":17.648427,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915735591152 (WA)"},"time":"2026-03-06T19:23:45.371954721Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:45.37279178Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6037,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825025281091619_1?ts=1767975313000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":114.051413,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":480,"h":848,"duration":3000,"size":578161},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"qrli7V0C/qv8vx7R44DwVjm4MdarHiCKbv+ga0hzeWc=","length":578161,"type":"WhatsApp Video Keys","sha256":"ZQgYQoglxZRPP3Jw8BvVxwDcdxi7g9HBLU2P4P7QfL8=","enc_sha256":"WzbD1NcLPcX6rwRdegZDuTUDA5n+fr/XULbNLitjU9s=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:45.395485119Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","sender_id":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"message_ts":"2026-01-09T16:15:13Z","event_id":"$sgL3YC2VF_OveaiMbixWT-6GQ35j_kSpjhhQ17nC8YQ","part_id":"","time":"2026-03-06T19:23:45.395683611Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2434","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.416397063Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2434","time":"2026-03-06T19:23:45.416522709Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2435","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:45.445053459Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2435","time":"2026-03-06T19:23:45.445127352Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6044,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825025396550213_1?ts=1767993740945&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":72.619271,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$sgL3YC2VF_OveaiMbixWT-6GQ35j_kSpjhhQ17nC8YQ","key":"❤️"}},"time":"2026-03-06T19:23:45.469291219Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-01-09T21:22:20.945Z","event_id":"$LMvAkSftUhMMzU_Kz17PLkfYwGawQIrKOoRNH3Vpyv8","time":"2026-03-06T19:23:45.46942762Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2436","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.486291021Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2436","time":"2026-03-06T19:23:45.486402489Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6045,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825025469940262_1?ts=1767984379292&user_id=%40whatsapp_lid-105094192341121%3Amatrix.theocloud.dev","duration":46.047735,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$sgL3YC2VF_OveaiMbixWT-6GQ35j_kSpjhhQ17nC8YQ","key":"❤️"}},"time":"2026-03-06T19:23:45.516131173Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","target_part_id":"","reaction_sender_id":{"user_id":"lid-105094192341121","sender_login":"4915738711750"},"reaction_ts":"2026-01-09T18:46:19.292Z","event_id":"$UQqwHaD_tUEtxRCCh3Y58f7RdDQ-VpKA1RYH5J72Ie0","time":"2026-03-06T19:23:45.516298305Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2437","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.531566999Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2437","time":"2026-03-06T19:23:45.531658073Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:45.534293988Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6046,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825025516938758_2?ts=1770644718000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":53.9501,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"Sent an album:","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:45.571043908Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:236846508454136@lid:3A74C15A19C3DC0306C0","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-09T13:45:18Z","event_id":"$hBacKwvC7LB1wvBG6gvyS5VQMqRtbH59oWJ4UgW8Wq8","part_id":"","time":"2026-03-06T19:23:45.571211949Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2438","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.592153855Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2438","time":"2026-03-06T19:23:45.592274053Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2439","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:45.63400505Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2439","time":"2026-03-06T19:23:45.634115191Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6048,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825025572065141_1?ts=1770661135219&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":91.810792,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$hBacKwvC7LB1wvBG6gvyS5VQMqRtbH59oWJ4UgW8Wq8","key":"👍️"}},"time":"2026-03-06T19:23:45.664019109Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:236846508454136@lid:3A74C15A19C3DC0306C0","target_part_id":"","reaction_sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"reaction_ts":"2026-02-09T18:18:55.219Z","event_id":"$botRu99ZabLWv5_QARbSO6JUBZSfW3siTigW2jm2rkA","time":"2026-03-06T19:23:45.664188197Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6047,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915735591152%3Amatrix.theocloud.dev","duration":136.328003,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<67585 bytes>","time":"2026-03-06T19:23:45.680017444Z","message":"Request completed"} +{"level":"debug","transaction_id":"2440","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.684216357Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2440","time":"2026-03-06T19:23:45.684319235Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6050,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735591152:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915735591152%3Amatrix.theocloud.dev","duration":5.534786,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:45.68596786Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6051,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/KvvSvLNFmZpzLaJngsifWSIU?user_id=%40whatsapp_4915735591152%3Amatrix.theocloud.dev","duration":4.776299,"status_code":200,"response_length":67585,"response_mime":"image/jpeg","time":"2026-03-06T19:23:45.690936295Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6052,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735591152:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915735591152%3Amatrix.theocloud.dev","duration":5.943083,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KvvSvLNFmZpzLaJngsifWSIU"},"time":"2026-03-06T19:23:45.697221325Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6049,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825025664857425_3?ts=1770644719000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":64.411135,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":435268,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/hFTFTtYMmTBJbXOfKxZYzmqe"},"time":"2026-03-06T19:23:45.72948577Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:236846508454136@lid:3A6486856FBFB5D9BE07","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-09T13:45:19Z","event_id":"$5UcuA6iF4Czm4gUTQKtA5hps9NMkKXDU3uaFCXvNivo","part_id":"","time":"2026-03-06T19:23:45.729604921Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2441","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.746847355Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2441","time":"2026-03-06T19:23:45.746954633Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6053,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":83.091551,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:45.781074436Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6054,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825025730185798_4?ts=1770644719000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":75.827333,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":392765,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/eXhebbtiHarhBQuEiJCJUHGn"},"time":"2026-03-06T19:23:45.806200867Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:236846508454136@lid:3A62F800078EA28F5293","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-09T13:45:19Z","event_id":"$TCKXzNK_u10vz9NIPCFx2CF5b9jWJRlB_mGYt9yToHg","part_id":"","time":"2026-03-06T19:23:45.806365695Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2442","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.808794527Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2442","time":"2026-03-06T19:23:45.808903551Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2443","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.829944423Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2443","time":"2026-03-06T19:23:45.830199208Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6056,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825025807169858_5?ts=1770644720000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":65.623945,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":566472,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/aXfKbCyUrdXOPUSjqrRAEthJ"},"time":"2026-03-06T19:23:45.873000117Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:236846508454136@lid:3A8D759D082563B0D0E8","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-09T13:45:20Z","event_id":"$2KZh95v8FFNkqJI_wQb6mnVBu9mXLD6XqTT8cBpIiEU","part_id":"","time":"2026-03-06T19:23:45.873147485Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2444","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.898306602Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2444","time":"2026-03-06T19:23:45.898436928Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6055,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195790463058158:matrix.theocloud.dev?user_id=%40whatsapp_lid-195790463058158%3Amatrix.theocloud.dev","duration":133.533896,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XHhOUpIWMcuLQZYnfeaVrlLQ","com.beeper.exclude_from_timeline":true,"displayname":"Theo Leuthardt (WA)","membership":"join"},"time":"2026-03-06T19:23:45.915096599Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6058,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":14.536189,"status_code":200,"response_length":89,"response_mime":"application/json","time":"2026-03-06T19:23:45.930363406Z","message":"Request completed"} +{"level":"debug","transaction_id":"2445","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.934279878Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2445","time":"2026-03-06T19:23:45.934525024Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825025873971762_6?ts=1770644755000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":103.099806,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"Sent an album:","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:45.977222916Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:236846508454136@lid:3A53023DC3398EE1C801","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-09T13:45:55Z","event_id":"$0JFSjxuHs3i6vFvj3iay88btgTndrNPNg8DI3kF803M","part_id":"","time":"2026-03-06T19:23:45.977389979Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2446","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:45.994731519Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2446","time":"2026-03-06T19:23:45.994857445Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6059,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@theo:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":102.40327,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/MpwzzHkfSbfueOUBjXvAEnVD","com.beeper.exclude_from_timeline":true,"displayname":"theo","membership":"invite"},"time":"2026-03-06T19:23:46.033113513Z","message":"Request completed"} +{"level":"debug","transaction_id":"2447","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.066701258Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2447","time":"2026-03-06T19:23:46.066968544Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6060,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825025978260981_7?ts=1770644756000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":106.805214,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":375059,"w":1448},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/VldiQbKKNaWQjmnknTOcGCcd"},"time":"2026-03-06T19:23:46.085318047Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:236846508454136@lid:3AC173BCAFF2EEC2EB18","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-09T13:45:56Z","event_id":"$5xxsIp_NultFljXK9SvyFgtZLyOQUgbswu-w5LHMnBs","part_id":"","time":"2026-03-06T19:23:46.085478335Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2448","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.11107662Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2448","time":"2026-03-06T19:23:46.111189485Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6062,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026086263990_8?ts=1770644756000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":73.834386,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1536,"mimetype":"image/jpeg","size":190152,"w":1024},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/xMLUNXmDiCmrDqXxNsXmBxXM"},"time":"2026-03-06T19:23:46.160359934Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:236846508454136@lid:3A3DF38E54F13D91AABD","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-09T13:45:56Z","event_id":"$OG595JP-Nvh4THn81GK9LzjaXu9gvx6EZOyS3DQx1KE","part_id":"","time":"2026-03-06T19:23:46.160511143Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2449","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.180901574Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2449","time":"2026-03-06T19:23:46.181033157Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-254481426071661:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":160.867481,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uELFhFzjKIToKpGUGznOiFMf","com.beeper.exclude_from_timeline":true,"displayname":"+491704035395 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:46.1946908Z","message":"Request completed"} +{"level":"debug","transaction_id":"2450","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.215712396Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2450","time":"2026-03-06T19:23:46.216012857Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6063,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026161301058_2?ts=1770645560000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":100.886017,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":480,"h":848,"duration":8000,"size":1627530},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"K5z+JcZ1YaTCqjnHHE46NLPlQL/fzpVzC2T412eDOYU=","length":1627530,"type":"WhatsApp Video Keys","sha256":"i2ObcSWHkw7zsykK6Xk/AUr3qKsYYSyhxjLbtTcpyNw=","enc_sha256":"M0G8mYc9AnuLWFqy4vkiUh/2Rk/TyDLV9ANnSSTcAWQ=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.262448914Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:20Z","event_id":"$pu4HHMZdkakx54HaYwnru5UDsbDE5dfKbgVo9fqNnkA","part_id":"","time":"2026-03-06T19:23:46.262630993Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2451","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.281550129Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2451","time":"2026-03-06T19:23:46.281652098Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2452","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:46.330426542Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2452","time":"2026-03-06T19:23:46.330507838Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6064,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-254481426071661:matrix.theocloud.dev?user_id=%40whatsapp_lid-254481426071661%3Amatrix.theocloud.dev","duration":144.126095,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uELFhFzjKIToKpGUGznOiFMf","com.beeper.exclude_from_timeline":true,"displayname":"+491704035395 (WA)","membership":"join"},"time":"2026-03-06T19:23:46.339594658Z","message":"Request completed"} +{"level":"debug","transaction_id":"2453","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.358234216Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2453","time":"2026-03-06T19:23:46.358541382Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6065,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026263392273_3?ts=1770645560000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":130.520345,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":480,"h":848,"duration":7000,"size":1378282},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"izV4jS33sf7XrL1L23KTspj3MtOMrJsrkHRqwoz2G7M=","length":1378282,"type":"WhatsApp Video Keys","sha256":"6fit195lSARDH5vai2mWJB/3i6FrmvFNUypHcUmg5SI=","enc_sha256":"QYmBz/S9mKYQ+TcTYYvfD7SPmjE/S5UBxkTeL/oi/lI=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.394134925Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:20Z","event_id":"$LoUUSXxyjqzrPSQUaHTYi5uXeeihTYrQJfOrf8GVJ-4","part_id":"","time":"2026-03-06T19:23:46.394304223Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2454","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.402829861Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2454","time":"2026-03-06T19:23:46.402938465Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6066,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-165339312693343:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":114.585427,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ShjhDtVYxzklMObAryvcXfnI","com.beeper.exclude_from_timeline":true,"displayname":"Mahmoud (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:46.455239591Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6067,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026395144425_4?ts=1770645561000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":80.46716,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":480,"h":848,"duration":7000,"size":1384207},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"K/OWMBY+y1Zxq0mOg59t+4xZpYYlNJlttJcIVLDVBYY=","length":1384207,"type":"WhatsApp Video Keys","sha256":"t8B9URFjLDHysWlh2oO89FMjDyt8F+atK34dXXotTdI=","enc_sha256":"PdPFDECFTmSz+D7PO4LptONC47kqhEA0+bWRXu5ua0k=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.475873982Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:21Z","event_id":"$UiBp8PkU6r68q_bXIHKZ28_2UlfvmC5FozI8jMbMCWs","part_id":"","time":"2026-03-06T19:23:46.47607855Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2455","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.479921757Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2455","time":"2026-03-06T19:23:46.480046425Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2456","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.490173964Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2456","time":"2026-03-06T19:23:46.490508857Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6069,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026476961914_5?ts=1770645561000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":47.763268,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":464,"h":832,"duration":20000,"size":3836395},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"Y1nLYdgSbdcoW1oPQ99Hc2ULUlurp+ik3yxST3n7/gA=","length":3836395,"type":"WhatsApp Video Keys","sha256":"hL+C1rUoYDivRgSABsUgeyCgtSOzONlWWjETMRGWt7A=","enc_sha256":"sqkFuI+dBeaCV0sPTxCpUaImMbsSIUV+vo1ZzBMHmOY=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.524943649Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:21Z","event_id":"$mf0G5pSdEBQDOjuTx4IXQMgp-E-yHRgjVxBjSyqcLxU","part_id":"","time":"2026-03-06T19:23:46.525131175Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2457","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.545124554Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2457","time":"2026-03-06T19:23:46.545251248Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6068,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-165339312693343:matrix.theocloud.dev?user_id=%40whatsapp_lid-165339312693343%3Amatrix.theocloud.dev","duration":103.185013,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ShjhDtVYxzklMObAryvcXfnI","com.beeper.exclude_from_timeline":true,"displayname":"Mahmoud (WA)","membership":"join"},"time":"2026-03-06T19:23:46.559092017Z","message":"Request completed"} +{"level":"debug","transaction_id":"2458","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.576407646Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2458","time":"2026-03-06T19:23:46.576699447Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6070,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026526006856_6?ts=1770645561000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":82.220548,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":464,"h":832,"duration":12000,"size":2285389},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"xHDDgY3erUYoNK3+ybP0bwQnfo9MlaGj3fBERe+GpfE=","length":2285389,"type":"WhatsApp Video Keys","sha256":"m/x7CqMaDUfbO140NnaPSFmMng3PlCBXhv7/3XxVYZk=","enc_sha256":"wNt9kFCTO5ASTMbfWFjS6w6bnk9e3D+wqJ3YSr/47Q8=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.608467383Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:21Z","event_id":"$h77mlmjJ9wMkIDVSyNnVn3XaUkSqjCFyVAYPIBI94xA","part_id":"","time":"2026-03-06T19:23:46.608648833Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2459","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.623476892Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2459","time":"2026-03-06T19:23:46.623597649Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6071,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-35442120491030:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":110.932958,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ywuJqvpuslyoOQUgPrmGswYF","com.beeper.exclude_from_timeline":true,"displayname":"Taha (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:46.670996062Z","message":"Request completed"} +{"level":"debug","transaction_id":"2460","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.687582817Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2460","time":"2026-03-06T19:23:46.687899552Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6072,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026609542813_7?ts=1770645561000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":95.165242,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":480,"h":848,"duration":9000,"size":1787106},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"3CSSeum2GANRmbDGgz96jQF3UehTJEAjEOz3GbF3B80=","length":1787106,"type":"WhatsApp Video Keys","sha256":"MuCo3hBtGf5DIvsvjRpN3brqCyLScUWk949HmPF/Hr4=","enc_sha256":"QsfJtMhXLcCvRfp0e2fjT2qO5x/BhVt6MbXsi1v2JLk=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.704929386Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:21Z","event_id":"$W1C-1v65tdMF3_yhT9yweUo5d3pNTF84yR4Ku2o3l58","part_id":"","time":"2026-03-06T19:23:46.705067115Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2461","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.735877235Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2461","time":"2026-03-06T19:23:46.736001764Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6074,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026705760229_8?ts=1770645562000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":95.312121,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":464,"h":832,"duration":10000,"size":1944157},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"Z8ANBUFGx8rDbODxzRVm4uoXzSsfGWTnK97JPkTFOPU=","length":1944157,"type":"WhatsApp Video Keys","sha256":"ritCZSb7kiE7vDfe6qa7A59cCJWAukYuEurKAi+YafI=","enc_sha256":"KroGseEfBw3FO4tVYXIrhjZXyDT8l4bz3YwRsoU8Q7s=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.801320988Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:22Z","event_id":"$mDVptqO1o4aQj3oab_11OOb7sDsAzq6xPMnJFHolzh0","part_id":"","time":"2026-03-06T19:23:46.801582617Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6073,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-35442120491030:matrix.theocloud.dev?user_id=%40whatsapp_lid-35442120491030%3Amatrix.theocloud.dev","duration":165.431809,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ywuJqvpuslyoOQUgPrmGswYF","com.beeper.exclude_from_timeline":true,"displayname":"Taha (WA)","membership":"join"},"time":"2026-03-06T19:23:46.837198719Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:46.838084947Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","transaction_id":"2462","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.838760251Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2462","time":"2026-03-06T19:23:46.838863688Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6076,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491759903260%3Amatrix.theocloud.dev","duration":13.263593,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491759903260","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:46.851659059Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6077,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491759903260:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491759903260%3Amatrix.theocloud.dev","duration":4.363602,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:46.856341909Z","message":"Request completed"} +{"level":"debug","transaction_id":"2463","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.858488858Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2463","time":"2026-03-06T19:23:46.858808736Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6078,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491759903260:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491759903260%3Amatrix.theocloud.dev","duration":13.09695,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491759903260 (WA)"},"time":"2026-03-06T19:23:46.869680862Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:46.870669688Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6075,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026802571443_9?ts=1770645562000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":89.456481,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":464,"h":832,"duration":9000,"size":1767566},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"/EgiFgTcel0tx7Jttff3VhgJ0O4gUuP/Krowza92k/g=","length":1767566,"type":"WhatsApp Video Keys","sha256":"pwr1vbqSCEoUSAXXidQrhRVi/8WKAAr1JRqis8PGMLI=","enc_sha256":"42/qm5cQyy7UCDTjW4CO7DQMz3nr7LcMBeQTQJBy0J4=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.892256098Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:22Z","event_id":"$jCz6_5593WFhfzeJXqfNr0CmvpQ1vq39iw8Q44yTao4","part_id":"","time":"2026-03-06T19:23:46.892451935Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2464","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.905144499Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2464","time":"2026-03-06T19:23:46.905249542Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6079,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026893320074_10?ts=1770645576000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":46.47042,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":464,"h":832,"duration":38000,"size":7104119},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"ib+y2dNXtjzqYdiVMkbiqYbAJ6sc+4OS8X1c5x3N0uo=","length":7104119,"type":"WhatsApp Video Keys","sha256":"XKBxbQEF6nuhZ4PsyAVFOAjE+J7KJXHlIL2bSAF6FI0=","enc_sha256":"ATvIBcDoPTZOj1wLbye0J6Awcl0eGqkYIdDv6epClyE=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.940041576Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:36Z","event_id":"$fQuXtzwhSgCNkw6IasvyILreRqtGeZu7CGaGu6ovSm0","part_id":"","time":"2026-03-06T19:23:46.940217718Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2465","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.951278349Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2465","time":"2026-03-06T19:23:46.95139289Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6080,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026940996109_11?ts=1770645576000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":41.773112,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":464,"h":832,"duration":227000,"size":42663650},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"Ou/pHqjWZqfDGz5cuLGSE+uCRDtizroLcbjnbNje4RA=","length":42663650,"type":"WhatsApp Video Keys","sha256":"WgsaFLGSGQn7LhwXQbY61YHfajSCS2d+tOgE1eV19TI=","enc_sha256":"iarlcKJeFCwpjNKb/vxVID6QjymXy+ZKPoOfesM6/3k=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:23:46.983015066Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-09T13:59:36Z","event_id":"$X302UYo58oDj6WaRKfIIv5w1e7i6j777WczzM43h-ic","part_id":"","time":"2026-03-06T19:23:46.983204268Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2466","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:46.997733472Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2466","time":"2026-03-06T19:23:46.997846407Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:47.023832178Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6081,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825026984270759_9?ts=1770658068000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":47.155292,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"https://www.youtube.com/watch?v=bvRcUVjt1Zs","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"Winter League Woche 2 - Rostock / Berlin","og:type":"video.other","og:description":"In der 2. Woche der Winter League 2026 waren wir zu Gast im Straßensport Gym in Rostock und bei den Jungs von Barsover9000 in Berlin.","matched_url":"https://www.youtube.com/watch?v=bvRcUVjt1Zs"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:47.031620422Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:236846508454136@lid:4A07A34F0D2DFDDE96EE","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-09T17:27:48Z","event_id":"$60KPyLrZg29KkhCfPZAD8jtASsvdNXRzedhQIxxf--c","part_id":"","time":"2026-03-06T19:23:47.031749909Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6082,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491759903260:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491759903260%3Amatrix.theocloud.dev","duration":7.893356,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:47.032039056Z","message":"Request completed"} +{"level":"debug","transaction_id":"2467","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.05143689Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2467","time":"2026-03-06T19:23:47.051568682Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6083,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825027034565597_1?ts=1770662021191&user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":74.845771,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$60KPyLrZg29KkhCfPZAD8jtASsvdNXRzedhQIxxf--c","key":"🔥"}},"time":"2026-03-06T19:23:47.109523884Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:236846508454136@lid:4A07A34F0D2DFDDE96EE","target_part_id":"","reaction_sender_id":{"user_id":"lid-70029659869242","sender_login":"4915759322544"},"reaction_ts":"2026-02-09T18:33:41.191Z","event_id":"$Y5Y-ogVNxg8AYtlALdZBoM7s8eQZwnJXXwpdSXMPSpg","time":"2026-03-06T19:23:47.109612863Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2468","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.130648008Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2468","time":"2026-03-06T19:23:47.130734054Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6084,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-61169360498824:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":124.815773,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ozOWBtbeKJycQWGYvxqLbBEQ","com.beeper.exclude_from_timeline":true,"displayname":"Carlo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:47.160690633Z","message":"Request completed"} +{"level":"debug","transaction_id":"2469","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.181001863Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2469","time":"2026-03-06T19:23:47.18138844Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6085,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825027110036526_1?ts=1770660862496&user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":107.43575,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$60KPyLrZg29KkhCfPZAD8jtASsvdNXRzedhQIxxf--c","key":"💪"}},"time":"2026-03-06T19:23:47.217586887Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:236846508454136@lid:4A07A34F0D2DFDDE96EE","target_part_id":"","reaction_sender_id":{"user_id":"lid-87162133413943","sender_login":"491772982858"},"reaction_ts":"2026-02-09T18:14:22.496Z","event_id":"$SpGsiJR_C3epHklTI8lyyN2gPZUP07ecyEyChYD7q6M","time":"2026-03-06T19:23:47.217734323Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2470","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.25695135Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2470","time":"2026-03-06T19:23:47.257066799Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6086,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-61169360498824:matrix.theocloud.dev?user_id=%40whatsapp_lid-61169360498824%3Amatrix.theocloud.dev","duration":189.783132,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ozOWBtbeKJycQWGYvxqLbBEQ","com.beeper.exclude_from_timeline":true,"displayname":"Carlo (WA)","membership":"join"},"time":"2026-03-06T19:23:47.351307331Z","message":"Request completed"} +{"level":"debug","transaction_id":"2471","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:47.352163457Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2471","time":"2026-03-06T19:23:47.352215001Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:47.352380946Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6088,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491624100405%3Amatrix.theocloud.dev","duration":12.858788,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491624100405","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:47.365559751Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6089,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624100405:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491624100405%3Amatrix.theocloud.dev","duration":6.474303,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:47.372543971Z","message":"Request completed"} +{"level":"debug","transaction_id":"2472","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.376032869Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2472","time":"2026-03-06T19:23:47.37638641Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6087,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825027218382738_1?ts=1772247445000&user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":179.861557,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Hey Chris hier und relativ neu im Calstihenticsbereich.\n\nBin gespannt was ich hier alles lernen kann","com.beeper.disappearing_timer":{},"filename":"image.jpg","format":"org.matrix.custom.html","formatted_body":"Hey Chris hier und relativ neu im Calstihenticsbereich.\u003cbr\u003e\u003cbr\u003eBin gespannt was ich hier alles lernen kann","info":{"h":940,"mimetype":"image/jpeg","size":157231,"w":1080},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/mMGqaTqlhBktYbfVSZrKfOZN"},"time":"2026-03-06T19:23:47.398515005Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:242661625704624@lid:ACB1B945EFC501A84C01FADFA019452D","sender_id":{"user_id":"lid-242661625704624","sender_login":"491792276137"},"message_ts":"2026-02-28T02:57:25Z","event_id":"$mIHDR8r6f0sPCsOargGx5FL06rhmQug6sGVIKOtku-g","part_id":"","time":"2026-03-06T19:23:47.398671172Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6090,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624100405:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491624100405%3Amatrix.theocloud.dev","duration":40.180151,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491624100405 (WA)"},"time":"2026-03-06T19:23:47.41294622Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:47.413720002Z","message":""} +{"level":"debug","transaction_id":"2473","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.415091633Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2473","time":"2026-03-06T19:23:47.415214625Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2474","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:47.445601223Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2474","time":"2026-03-06T19:23:47.445713669Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6091,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825027399486510_2?ts=1772292644429&user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":75.867911,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$mIHDR8r6f0sPCsOargGx5FL06rhmQug6sGVIKOtku-g","key":"🚀"}},"time":"2026-03-06T19:23:47.475489007Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:242661625704624@lid:ACB1B945EFC501A84C01FADFA019452D","target_part_id":"","reaction_sender_id":{"user_id":"lid-40566117134352","sender_login":"491777059558"},"reaction_ts":"2026-02-28T15:30:44.429Z","event_id":"$Vupm_GBZ9VHdFU5O9xuJPsbBWm_M9WNqaaj0pZZqAZ4","time":"2026-03-06T19:23:47.475626037Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2475","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.502657974Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2475","time":"2026-03-06T19:23:47.502769861Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6092,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825027476149784_2?ts=1772247501324&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":71.612705,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$mIHDR8r6f0sPCsOargGx5FL06rhmQug6sGVIKOtku-g","key":"🚀"}},"time":"2026-03-06T19:23:47.547895818Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:242661625704624@lid:ACB1B945EFC501A84C01FADFA019452D","target_part_id":"","reaction_sender_id":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"reaction_ts":"2026-02-28T02:58:21.324Z","event_id":"$lt9xcGoXo_LJTUOSo_HRoV7SCl52BbNJWeq6ySk-HbU","time":"2026-03-06T19:23:47.548043255Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2476","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.567725836Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2476","time":"2026-03-06T19:23:47.567859723Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:47.580295687Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6094,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491624100405:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491624100405%3Amatrix.theocloud.dev","duration":5.095338,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:47.585788637Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6093,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825027548612888_1?ts=1772279647635&user_id=%40whatsapp_lid-276334119006314%3Amatrix.theocloud.dev","duration":56.015893,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$mIHDR8r6f0sPCsOargGx5FL06rhmQug6sGVIKOtku-g","key":"❤️"}},"time":"2026-03-06T19:23:47.604763507Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:242661625704624@lid:ACB1B945EFC501A84C01FADFA019452D","target_part_id":"","reaction_sender_id":{"user_id":"lid-276334119006314","sender_login":"491759232609"},"reaction_ts":"2026-02-28T11:54:07.635Z","event_id":"$dH8ej_N5u19XMJLeLVKkhY06TgCSovq3C86_dZ5aQx4","time":"2026-03-06T19:23:47.604900537Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2477","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.626153031Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2477","time":"2026-03-06T19:23:47.626266245Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6096,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825027605563339_2?ts=1772278788000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":72.685133,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Willkommen Chris.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:47.678401147Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:44419206123644@lid:3A84AA48B6A464B05648","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-28T11:39:48Z","event_id":"$oYMySDA44j68Fr6qrBb6r8TS7nnzS7t5yFKN2RcykUo","part_id":"","time":"2026-03-06T19:23:47.678548723Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2478","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.69843685Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2478","time":"2026-03-06T19:23:47.698511791Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6095,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-154378388402269:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":141.565052,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491729879482 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:47.728537653Z","message":"Request completed"} +{"level":"debug","transaction_id":"2479","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.755181616Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2479","time":"2026-03-06T19:23:47.755479703Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2480","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:47.770798333Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2480","time":"2026-03-06T19:23:47.770907287Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6097,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825027679355121_1?ts=1772562097000&user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":127.60108,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.notice","body":"Sent an album:","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:23:47.807102312Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:80522080477241@lid:3A6E94B430A0335A370A","sender_id":{"user_id":"lid-80522080477241","sender_login":"4917673282928"},"message_ts":"2026-03-03T18:21:37Z","event_id":"$adIoyb33twhfpsIWQ2r8Rkz4A4o1xo09MKG4KeitVfs","part_id":"","time":"2026-03-06T19:23:47.807233405Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2481","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.827171749Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2481","time":"2026-03-06T19:23:47.82728154Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2482","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:47.872646218Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2482","time":"2026-03-06T19:23:47.872748886Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6098,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-154378388402269:matrix.theocloud.dev?user_id=%40whatsapp_lid-154378388402269%3Amatrix.theocloud.dev","duration":153.637555,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491729879482 (WA)","membership":"join"},"time":"2026-03-06T19:23:47.883000255Z","message":"Request completed"} +{"level":"debug","transaction_id":"2483","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.902165096Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2483","time":"2026-03-06T19:23:47.902487557Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6099,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825027808015708_3?ts=1772562467516&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":117.769044,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$adIoyb33twhfpsIWQ2r8Rkz4A4o1xo09MKG4KeitVfs","key":"🚀"}},"time":"2026-03-06T19:23:47.925912703Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:80522080477241@lid:3A6E94B430A0335A370A","target_part_id":"","reaction_sender_id":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"reaction_ts":"2026-03-03T18:27:47.516Z","event_id":"$SbIJL7rDCxbEng08tm_12UMcbATHcep_HsftctjV-3U","time":"2026-03-06T19:23:47.926041841Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2484","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:47.94546405Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2484","time":"2026-03-06T19:23:47.945578033Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6100,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-188257056890939:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":103.294736,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WHJzUFuDxcewXWsoOtBxblJf","com.beeper.exclude_from_timeline":true,"displayname":"Martín (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:47.987297785Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6101,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825027926660643_10?ts=1772565187434&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":64.432019,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$adIoyb33twhfpsIWQ2r8Rkz4A4o1xo09MKG4KeitVfs","key":"😎"}},"time":"2026-03-06T19:23:47.99121712Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:80522080477241@lid:3A6E94B430A0335A370A","target_part_id":"","reaction_sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"reaction_ts":"2026-03-03T19:13:07.434Z","event_id":"$Ft5FK6v19ojffVTrU_1V2_eSEjf6cR79CIO-3xZrxwU","time":"2026-03-06T19:23:47.991375033Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2485","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.0053587Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2485","time":"2026-03-06T19:23:48.005464511Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2486","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.021327701Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2486","time":"2026-03-06T19:23:48.02166916Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6103,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825027991909955_1?ts=1772562406903&user_id=%40whatsapp_lid-111437372489803%3Amatrix.theocloud.dev","duration":76.455983,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$adIoyb33twhfpsIWQ2r8Rkz4A4o1xo09MKG4KeitVfs","key":"🔥"}},"time":"2026-03-06T19:23:48.068500314Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:80522080477241@lid:3A6E94B430A0335A370A","target_part_id":"","reaction_sender_id":{"user_id":"lid-111437372489803","sender_login":"4915227785049"},"reaction_ts":"2026-03-03T18:26:46.903Z","event_id":"$11npCxBZrx_1nsOK9nHAeX3gxRMzvSlFUN-K0Ddq6aY","time":"2026-03-06T19:23:48.068641884Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2487","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.088373285Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2487","time":"2026-03-06T19:23:48.088479445Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6102,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-188257056890939:matrix.theocloud.dev?user_id=%40whatsapp_lid-188257056890939%3Amatrix.theocloud.dev","duration":122.545273,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WHJzUFuDxcewXWsoOtBxblJf","com.beeper.exclude_from_timeline":true,"displayname":"Martín (WA)","membership":"join"},"time":"2026-03-06T19:23:48.110689336Z","message":"Request completed"} +{"level":"debug","transaction_id":"2488","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.130172867Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2488","time":"2026-03-06T19:23:48.130488484Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6104,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825028069146424_1?ts=1772563573767&user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":120.478572,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$adIoyb33twhfpsIWQ2r8Rkz4A4o1xo09MKG4KeitVfs","key":"💪"}},"time":"2026-03-06T19:23:48.189758674Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363400918258753@g.us:80522080477241@lid:3A6E94B430A0335A370A","target_part_id":"","reaction_sender_id":{"user_id":"lid-83674703904795","sender_login":"4915236735839"},"reaction_ts":"2026-03-03T18:46:13.767Z","event_id":"$jyeVGkstRRkDE91EKwxat-9Ka-zCfbL7suTKtXpFeRs","time":"2026-03-06T19:23:48.189899895Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2489","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.209361705Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2489","time":"2026-03-06T19:23:48.209467097Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6105,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-60129676394725:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":132.909786,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491739423344 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:48.244598494Z","message":"Request completed"} +{"level":"debug","transaction_id":"2490","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.2655184Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2490","time":"2026-03-06T19:23:48.265744549Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6106,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825028190495509_2?ts=1772562098000&user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":91.937625,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":365368,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/JJquUcgJeUqQFrGgQtzWrZpl"},"time":"2026-03-06T19:23:48.282656001Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:80522080477241@lid:3A863D4C2FF02F3FCC33","sender_id":{"user_id":"lid-80522080477241","sender_login":"4917673282928"},"message_ts":"2026-03-03T18:21:38Z","event_id":"$gNXOMy3Tio_aDnS7O1uRyO9Tm5fub2DbK8x3unuXeRI","part_id":"","time":"2026-03-06T19:23:48.282789329Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2491","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.299894314Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2491","time":"2026-03-06T19:23:48.300026036Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6108,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825028283694834_3?ts=1772562104000&user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":73.891028,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":428365,"w":1536},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/mlRPvXHQZAFbhoHrtbhovWCW"},"time":"2026-03-06T19:23:48.357822487Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:80522080477241@lid:3AF72D7341151B4BE78C","sender_id":{"user_id":"lid-80522080477241","sender_login":"4917673282928"},"message_ts":"2026-03-03T18:21:44Z","event_id":"$MyFbeXzXNEp7YrQAy4OdRjt06O1awnFzKhvuLH42Nug","part_id":"","time":"2026-03-06T19:23:48.357964057Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6107,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-60129676394725:matrix.theocloud.dev?user_id=%40whatsapp_lid-60129676394725%3Amatrix.theocloud.dev","duration":147.891428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491739423344 (WA)","membership":"join"},"time":"2026-03-06T19:23:48.393204478Z","message":"Request completed"} +{"level":"debug","transaction_id":"2492","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.394194002Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2492","time":"2026-03-06T19:23:48.394320137Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2493","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.411619772Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2493","time":"2026-03-06T19:23:48.411947891Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","req_id":6109,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825028358687622_4?ts=1772562104000&user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":102.296342,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1536,"mimetype":"image/jpeg","size":357552,"w":2048},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/MFrttsOBIfvqNeLxiDXYCgDY"},"time":"2026-03-06T19:23:48.461195306Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","message_id":"120363400918258753@g.us:80522080477241@lid:3A600332DFBF753F67D8","sender_id":{"user_id":"lid-80522080477241","sender_login":"4917673282928"},"message_ts":"2026-03-03T18:21:44Z","event_id":"$rRecr1NDDO4kC4TY1pf0yHLD0BIpK_eZIULVpJX7HjQ","part_id":"","time":"2026-03-06T19:23:48.461355105Z","message":"Sent message part to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:23:48.46236216Z","message":"Backfill finished"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","time":"2026-03-06T19:23:48.462442618Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.463405672Z","message":"39546100805e9462f9a907b79f83cdd57efdf02c4cf155c0f2494bf30430c599c2acfae13dc5e23a5c6798c31032ac163d82"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","time":"2026-03-06T19:23:48.463671701Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.464509877Z","message":"2a849cb08695a92f99d22da4178998c3574602ff2b17d4f5028e381f6d16326664f62a42619d23c7c43e00cf5b4881873335"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","time":"2026-03-06T19:23:48.464677708Z","message":"Sent media retry request"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","started_at":"2026-03-06T19:22:00.504833518Z","duration":"1m47.96005211s","time":"2026-03-06T19:23:48.464906022Z","message":"Event that took long finished handling"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.46620816Z","message":"fc196d2e8588f38a8f8273b2746697bbed0089480fb7db92c9711bc7118cf6d4dc714f80fe627783b9cbe60db98f8d035d27"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","time":"2026-03-06T19:23:48.466383325Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.46708922Z","message":"dfcf65e5cb457e9907d5f65d91057c847503d14b57be11099a35e197546647f1da7a161041d290c585dc874df3e6fccaddf4"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","time":"2026-03-06T19:23:48.467251463Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.467944787Z","message":"df49b8f14d5262a13df1ba9fc8dbe0cfb1956a55e1dd7a8c052ba7b80884317ead4208ecf8b21792d71ddcf7b80ce9bfe37a"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","time":"2026-03-06T19:23:48.468112059Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.468812576Z","message":"c388f5538afae82621da0c530839a0f54d4304fd0e92d3bac36b1d17ed619bfb6a524ce87461f261527f4a8cb34ff688b484"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","time":"2026-03-06T19:23:48.468986623Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.469672473Z","message":"08ef226a9c512fdba0e02454bdc5fb2d1973bdb649d67d8ed32a8fa7f606153375dc526dcc7f7a6fe7d6b887a0bd8714fbbf"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","time":"2026-03-06T19:23:48.469827593Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.470538656Z","message":"70949645e340f812fe434c69814c3157be38bb6d90b453968d6381966ca2dfd556fb19812ab34b710a498866c9203a358553"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","time":"2026-03-06T19:23:48.470711027Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.471424465Z","message":"af0d8db18a67ba3c442d72fe9b65cb3785f8df2da8e6c0a6c983bf9de07072fc3dc77953f4d1d5c30a3a4aa58a70a29c615e"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","time":"2026-03-06T19:23:48.471605706Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.472241898Z","message":"0123d6249901b0494e564de5176b1ce550c6120cea25c11c5d1f2eafe950fb36a8c26b6e45ec81a2847e6057a1b5c1af946e"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","time":"2026-03-06T19:23:48.472418878Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.473088595Z","message":"88bbdcde2fa01c48d8491cb3c17a88c326e89a473e582d85a8de0e228cd54b98a738e39c9de859c1b1d6fbd315396e33dea4"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","time":"2026-03-06T19:23:48.473237848Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.473891711Z","message":"e527f1a8f142fa50b6ddc22a43337a4f05f245cc418e2f91e1a3ffba3b7b0b1beea1e73fa3a7d3f50195a43c6cd0bd06c519"} +{"level":"debug","portal_id":"120363400918258753@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363400918258753@g.us","latest_message_ts":"2026-03-04T06:51:57Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","time":"2026-03-06T19:23:48.474043129Z","message":"Sent media retry request"} +{"level":"debug","transaction_id":"2494","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.476652434Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2494","time":"2026-03-06T19:23:48.476761737Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.508035679Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.509485254Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.51174905Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.512526882Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.5139708Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.515527443Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6110,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-197577119109324:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":123.375347,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ErUtmyuocmfWBAglUhjOiQgD","com.beeper.exclude_from_timeline":true,"displayname":"Robin (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:48.517634233Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.517729568Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.517806953Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.519987776Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.521460469Z","message":""} +{"level":"debug","transaction_id":"2495","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.523593659Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2495","time":"2026-03-06T19:23:48.523891466Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.524475626Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:48.53655756Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-197577119109324:matrix.theocloud.dev?user_id=%40whatsapp_lid-197577119109324%3Amatrix.theocloud.dev","duration":43.309919,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ErUtmyuocmfWBAglUhjOiQgD","com.beeper.exclude_from_timeline":true,"displayname":"Robin (WA)","membership":"join"},"time":"2026-03-06T19:23:48.561784913Z","message":"Request completed"} +{"level":"debug","transaction_id":"2496","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.580021202Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2496","time":"2026-03-06T19:23:48.580387594Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6112,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-67697341677813:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.649654,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vtKqdlAucZbsjzrEPbEcuZaR","com.beeper.exclude_from_timeline":true,"displayname":"+491757262193 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:48.637493026Z","message":"Request completed"} +{"level":"debug","transaction_id":"2497","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.655613656Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2497","time":"2026-03-06T19:23:48.655948689Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6113,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-67697341677813:matrix.theocloud.dev?user_id=%40whatsapp_lid-67697341677813%3Amatrix.theocloud.dev","duration":77.517515,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/vtKqdlAucZbsjzrEPbEcuZaR","com.beeper.exclude_from_timeline":true,"displayname":"+491757262193 (WA)","membership":"join"},"time":"2026-03-06T19:23:48.715741508Z","message":"Request completed"} +{"level":"debug","transaction_id":"2498","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.736108054Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2498","time":"2026-03-06T19:23:48.736480592Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-156668226703416:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.267475,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Shane (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:48.788060318Z","message":"Request completed"} +{"level":"debug","transaction_id":"2499","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.80590123Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2499","time":"2026-03-06T19:23:48.806195196Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-156668226703416:matrix.theocloud.dev?user_id=%40whatsapp_lid-156668226703416%3Amatrix.theocloud.dev","duration":58.931176,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Shane (WA)","membership":"join"},"time":"2026-03-06T19:23:48.847733289Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:48.848451476Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6116,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_5491140809052%3Amatrix.theocloud.dev","duration":15.490023,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_5491140809052","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:48.864146207Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6117,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_5491140809052:matrix.theocloud.dev/displayname?user_id=%40whatsapp_5491140809052%3Amatrix.theocloud.dev","duration":5.214769,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:48.869857553Z","message":"Request completed"} +{"level":"debug","transaction_id":"2500","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:48.87215187Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2500","time":"2026-03-06T19:23:48.872489836Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_5491140809052:matrix.theocloud.dev/displayname?user_id=%40whatsapp_5491140809052%3Amatrix.theocloud.dev","duration":9.065588,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+5491140809052 (WA)"},"time":"2026-03-06T19:23:48.879153132Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:48.879749654Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:49.159144875Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6119,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_5491140809052:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_5491140809052%3Amatrix.theocloud.dev","duration":2.357594,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:49.161843368Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:49.162757882Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6120,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_31613688070%3Amatrix.theocloud.dev","duration":3.479958,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_31613688070","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:49.166513996Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6121,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_31613688070:matrix.theocloud.dev/displayname?user_id=%40whatsapp_31613688070%3Amatrix.theocloud.dev","duration":2.18634,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:23:49.1691812Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6122,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_31613688070:matrix.theocloud.dev/displayname?user_id=%40whatsapp_31613688070%3Amatrix.theocloud.dev","duration":6.243614,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+31613688070 (WA)"},"time":"2026-03-06T19:23:49.175599978Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:49.176410357Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:49.584373134Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6123,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_31613688070%3Amatrix.theocloud.dev","duration":67.005774,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<78312 bytes>","time":"2026-03-06T19:23:49.663852446Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6124,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_31613688070:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_31613688070%3Amatrix.theocloud.dev","duration":1.667902,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:49.665906505Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6125,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/ynOqPGjaMiWwypJeqRNJyUeI?user_id=%40whatsapp_31613688070%3Amatrix.theocloud.dev","duration":1.674397,"status_code":200,"response_length":78312,"response_mime":"image/jpeg","time":"2026-03-06T19:23:49.667711926Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6126,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_31613688070:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_31613688070%3Amatrix.theocloud.dev","duration":4.19165,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ynOqPGjaMiWwypJeqRNJyUeI"},"time":"2026-03-06T19:23:49.672178196Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6127,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-111918626934878:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.482724,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917631251200 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:49.737682571Z","message":"Request completed"} +{"level":"debug","transaction_id":"2501","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:49.75705638Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2501","time":"2026-03-06T19:23:49.75743248Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6128,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-111918626934878:matrix.theocloud.dev?user_id=%40whatsapp_lid-111918626934878%3Amatrix.theocloud.dev","duration":75.849403,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917631251200 (WA)","membership":"join"},"time":"2026-03-06T19:23:49.814381046Z","message":"Request completed"} +{"level":"debug","transaction_id":"2502","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:49.837257441Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2502","time":"2026-03-06T19:23:49.83763864Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6129,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70476638453883:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":85.753027,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mumen Moawia (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:49.901116614Z","message":"Request completed"} +{"level":"debug","transaction_id":"2503","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:49.919415411Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2503","time":"2026-03-06T19:23:49.919648684Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6130,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70476638453883:matrix.theocloud.dev?user_id=%40whatsapp_lid-70476638453883%3Amatrix.theocloud.dev","duration":65.468128,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mumen Moawia (WA)","membership":"join"},"time":"2026-03-06T19:23:49.967389673Z","message":"Request completed"} +{"level":"debug","transaction_id":"2504","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:49.984035724Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2504","time":"2026-03-06T19:23:49.98438731Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6131,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-130455353487454:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":66.749452,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WJKInHLEkPvWFRukBlVYLEki","com.beeper.exclude_from_timeline":true,"displayname":"+491739137913 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:50.035119012Z","message":"Request completed"} +{"level":"debug","transaction_id":"2505","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.052708841Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2505","time":"2026-03-06T19:23:50.052989327Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-130455353487454:matrix.theocloud.dev?user_id=%40whatsapp_lid-130455353487454%3Amatrix.theocloud.dev","duration":67.331587,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WJKInHLEkPvWFRukBlVYLEki","com.beeper.exclude_from_timeline":true,"displayname":"+491739137913 (WA)","membership":"join"},"time":"2026-03-06T19:23:50.103285842Z","message":"Request completed"} +{"level":"debug","transaction_id":"2506","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.119458084Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2506","time":"2026-03-06T19:23:50.119753307Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6133,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-49997882073306:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":75.10272,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491786748116 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:50.179397363Z","message":"Request completed"} +{"level":"debug","transaction_id":"2507","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.196982024Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2507","time":"2026-03-06T19:23:50.197366225Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6134,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-49997882073306:matrix.theocloud.dev?user_id=%40whatsapp_lid-49997882073306%3Amatrix.theocloud.dev","duration":79.291157,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491786748116 (WA)","membership":"join"},"time":"2026-03-06T19:23:50.25938317Z","message":"Request completed"} +{"level":"debug","transaction_id":"2508","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.279111638Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2508","time":"2026-03-06T19:23:50.280193843Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6135,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88601031344164:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":77.884046,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sonja Eigenbrod (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:50.341746686Z","message":"Request completed"} +{"level":"debug","transaction_id":"2509","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.361084107Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2509","time":"2026-03-06T19:23:50.361406289Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6136,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88601031344164:matrix.theocloud.dev?user_id=%40whatsapp_lid-88601031344164%3Amatrix.theocloud.dev","duration":76.47477,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sonja Eigenbrod (WA)","membership":"join"},"time":"2026-03-06T19:23:50.418954939Z","message":"Request completed"} +{"level":"debug","transaction_id":"2510","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.437995181Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2510","time":"2026-03-06T19:23:50.438310449Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6137,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-265085683519507:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.112208,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/itkPvVnnVdyfQQZBkzVXzZvb","com.beeper.exclude_from_timeline":true,"displayname":"+491795247666 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:50.480091523Z","message":"Request completed"} +{"level":"debug","transaction_id":"2511","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.497065134Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2511","time":"2026-03-06T19:23:50.497423005Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6138,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-265085683519507:matrix.theocloud.dev?user_id=%40whatsapp_lid-265085683519507%3Amatrix.theocloud.dev","duration":69.789474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/itkPvVnnVdyfQQZBkzVXzZvb","com.beeper.exclude_from_timeline":true,"displayname":"+491795247666 (WA)","membership":"join"},"time":"2026-03-06T19:23:50.550613292Z","message":"Request completed"} +{"level":"debug","transaction_id":"2512","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.568026281Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2512","time":"2026-03-06T19:23:50.56827897Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-175110245867630:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":88.223556,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PvkWtcTEtdTVwzftscgQGOqO","com.beeper.exclude_from_timeline":true,"displayname":"+4915256299774 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:50.639915701Z","message":"Request completed"} +{"level":"debug","transaction_id":"2513","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.656082076Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2513","time":"2026-03-06T19:23:50.65642542Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6140,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-175110245867630:matrix.theocloud.dev?user_id=%40whatsapp_lid-175110245867630%3Amatrix.theocloud.dev","duration":73.064375,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PvkWtcTEtdTVwzftscgQGOqO","com.beeper.exclude_from_timeline":true,"displayname":"+4915256299774 (WA)","membership":"join"},"time":"2026-03-06T19:23:50.713588681Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:50.714218029Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6141,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917635572681%3Amatrix.theocloud.dev","duration":7.563561,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917635572681","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:50.72198567Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6142,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917635572681:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917635572681%3Amatrix.theocloud.dev","duration":4.924853,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:50.727262947Z","message":"Request completed"} +{"level":"debug","transaction_id":"2514","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:50.729666846Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2514","time":"2026-03-06T19:23:50.730003555Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6143,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917635572681:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917635572681%3Amatrix.theocloud.dev","duration":10.392451,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Bea (WA)"},"time":"2026-03-06T19:23:50.737813031Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:50.738413883Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:51.09261283Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6144,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917635572681:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917635572681%3Amatrix.theocloud.dev","duration":2.441963,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:51.09544109Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6145,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220460688113746:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.388436,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491795186866 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:51.160799495Z","message":"Request completed"} +{"level":"debug","transaction_id":"2515","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:51.183522028Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2515","time":"2026-03-06T19:23:51.18381306Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6146,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220460688113746:matrix.theocloud.dev?user_id=%40whatsapp_lid-220460688113746%3Amatrix.theocloud.dev","duration":83.444533,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491795186866 (WA)","membership":"join"},"time":"2026-03-06T19:23:51.245036528Z","message":"Request completed"} +{"level":"debug","transaction_id":"2516","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:51.26399722Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2516","time":"2026-03-06T19:23:51.26436871Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6147,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-172941891379455:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":79.527154,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915222663440 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:51.325624096Z","message":"Request completed"} +{"level":"debug","transaction_id":"2517","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:51.345851586Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2517","time":"2026-03-06T19:23:51.346204079Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6148,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-172941891379455:matrix.theocloud.dev?user_id=%40whatsapp_lid-172941891379455%3Amatrix.theocloud.dev","duration":72.189951,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915222663440 (WA)","membership":"join"},"time":"2026-03-06T19:23:51.398444163Z","message":"Request completed"} +{"level":"debug","transaction_id":"2518","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:51.413492644Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2518","time":"2026-03-06T19:23:51.413744984Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6149,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12940887474366:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.115418,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/prVwKQWmMbbqdYpJGhpnfNKm","com.beeper.exclude_from_timeline":true,"displayname":"+491633662727 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:51.45628196Z","message":"Request completed"} +{"level":"debug","transaction_id":"2519","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:51.469820242Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2519","time":"2026-03-06T19:23:51.470034309Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6150,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12940887474366:matrix.theocloud.dev?user_id=%40whatsapp_lid-12940887474366%3Amatrix.theocloud.dev","duration":71.637848,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/prVwKQWmMbbqdYpJGhpnfNKm","com.beeper.exclude_from_timeline":true,"displayname":"+491633662727 (WA)","membership":"join"},"time":"2026-03-06T19:23:51.528624865Z","message":"Request completed"} +{"level":"debug","transaction_id":"2520","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:51.535189473Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2520","time":"2026-03-06T19:23:51.535483509Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6151,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-106669891670209:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.618297,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ijVaSlJKJPgcYolqYpXnLSve","com.beeper.exclude_from_timeline":true,"displayname":"Roman Demchenko (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:51.608251125Z","message":"Request completed"} +{"level":"debug","transaction_id":"2521","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:51.631736474Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2521","time":"2026-03-06T19:23:51.632098676Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6152,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-106669891670209:matrix.theocloud.dev?user_id=%40whatsapp_lid-106669891670209%3Amatrix.theocloud.dev","duration":87.3719,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ijVaSlJKJPgcYolqYpXnLSve","com.beeper.exclude_from_timeline":true,"displayname":"Roman Demchenko (WA)","membership":"join"},"time":"2026-03-06T19:23:51.696399042Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:51.697237008Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6153,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915906652191%3Amatrix.theocloud.dev","duration":11.431074,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915906652191","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:51.708946613Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6154,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915906652191:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915906652191%3Amatrix.theocloud.dev","duration":4.289569,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:51.713640218Z","message":"Request completed"} +{"level":"debug","transaction_id":"2522","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:51.715680239Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2522","time":"2026-03-06T19:23:51.715960656Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6155,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915906652191:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915906652191%3Amatrix.theocloud.dev","duration":8.017606,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915906652191 (WA)"},"time":"2026-03-06T19:23:51.721852684Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:51.722671025Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:51.88831257Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6156,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915906652191:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915906652191%3Amatrix.theocloud.dev","duration":2.379105,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:51.891057718Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:51.891880948Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6157,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915151533302%3Amatrix.theocloud.dev","duration":7.226503,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915151533302","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:51.899392547Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6158,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915151533302:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915151533302%3Amatrix.theocloud.dev","duration":2.218049,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:51.901933127Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6159,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915151533302:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915151533302%3Amatrix.theocloud.dev","duration":6.035414,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915151533302 (WA)"},"time":"2026-03-06T19:23:51.908167312Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:51.90897378Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:52.085646692Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6160,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_4915151533302%3Amatrix.theocloud.dev","duration":77.861766,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<34456 bytes>","time":"2026-03-06T19:23:52.175030606Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6161,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915151533302:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915151533302%3Amatrix.theocloud.dev","duration":2.254856,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:52.177694318Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6162,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/FtyFrqsXbpkaTKrHsAZOjlwx?user_id=%40whatsapp_4915151533302%3Amatrix.theocloud.dev","duration":2.282024,"status_code":200,"response_length":34456,"response_mime":"image/jpeg","time":"2026-03-06T19:23:52.180114141Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6163,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915151533302:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915151533302%3Amatrix.theocloud.dev","duration":4.779163,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FtyFrqsXbpkaTKrHsAZOjlwx"},"time":"2026-03-06T19:23:52.185149834Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:52.186031452Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6164,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491738992038%3Amatrix.theocloud.dev","duration":3.270151,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491738992038","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:52.189597665Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6165,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491738992038:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491738992038%3Amatrix.theocloud.dev","duration":2.116428,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:52.192023634Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6166,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491738992038:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491738992038%3Amatrix.theocloud.dev","duration":7.58633,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491738992038 (WA)"},"time":"2026-03-06T19:23:52.200494655Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:52.201438084Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:52.368451469Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6167,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491738992038:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491738992038%3Amatrix.theocloud.dev","duration":2.524027,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:52.371386169Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6168,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-115947104927857:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":66.94955,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wCwzuzwyQHRZRBnvBgKLxamM","com.beeper.exclude_from_timeline":true,"displayname":"+491727367070 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:52.439363797Z","message":"Request completed"} +{"level":"debug","transaction_id":"2523","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:52.460584792Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2523","time":"2026-03-06T19:23:52.460866396Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6169,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-115947104927857:matrix.theocloud.dev?user_id=%40whatsapp_lid-115947104927857%3Amatrix.theocloud.dev","duration":78.241359,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wCwzuzwyQHRZRBnvBgKLxamM","com.beeper.exclude_from_timeline":true,"displayname":"+491727367070 (WA)","membership":"join"},"time":"2026-03-06T19:23:52.518591048Z","message":"Request completed"} +{"level":"debug","transaction_id":"2524","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:52.538527785Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2524","time":"2026-03-06T19:23:52.538877415Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6170,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-140918044790963:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":80.312809,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JQlITVRLtCFovlwNJIKeCRBy","com.beeper.exclude_from_timeline":true,"displayname":"+4915789414260 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:52.600180153Z","message":"Request completed"} +{"level":"debug","transaction_id":"2525","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:52.619121219Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2525","time":"2026-03-06T19:23:52.619511777Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6171,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-140918044790963:matrix.theocloud.dev?user_id=%40whatsapp_lid-140918044790963%3Amatrix.theocloud.dev","duration":81.976869,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/JQlITVRLtCFovlwNJIKeCRBy","com.beeper.exclude_from_timeline":true,"displayname":"+4915789414260 (WA)","membership":"join"},"time":"2026-03-06T19:23:52.6830077Z","message":"Request completed"} +{"level":"debug","transaction_id":"2526","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:52.703777655Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2526","time":"2026-03-06T19:23:52.704108008Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-48498888163368:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.871334,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xhbUITlxJOdMRvABLbPxiYRY","com.beeper.exclude_from_timeline":true,"displayname":"Florian Weis (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:52.760900826Z","message":"Request completed"} +{"level":"debug","transaction_id":"2527","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:52.775225392Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2527","time":"2026-03-06T19:23:52.775552393Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-48498888163368:matrix.theocloud.dev?user_id=%40whatsapp_lid-48498888163368%3Amatrix.theocloud.dev","duration":65.278645,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xhbUITlxJOdMRvABLbPxiYRY","com.beeper.exclude_from_timeline":true,"displayname":"Florian Weis (WA)","membership":"join"},"time":"2026-03-06T19:23:52.826758673Z","message":"Request completed"} +{"level":"debug","transaction_id":"2528","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:52.84081714Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2528","time":"2026-03-06T19:23:52.84110503Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6174,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-36984131166382:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":83.191216,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Dennis Ma (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:52.910785271Z","message":"Request completed"} +{"level":"debug","transaction_id":"2529","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:52.930276205Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2529","time":"2026-03-06T19:23:52.930597619Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6175,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-36984131166382:matrix.theocloud.dev?user_id=%40whatsapp_lid-36984131166382%3Amatrix.theocloud.dev","duration":72.033435,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Dennis Ma (WA)","membership":"join"},"time":"2026-03-06T19:23:52.983525159Z","message":"Request completed"} +{"level":"debug","transaction_id":"2530","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:53.000487247Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2530","time":"2026-03-06T19:23:53.00082661Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6176,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-97882405363848:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.313643,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Elias (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:53.058903686Z","message":"Request completed"} +{"level":"debug","transaction_id":"2531","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:53.076425768Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2531","time":"2026-03-06T19:23:53.076767785Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6177,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-97882405363848:matrix.theocloud.dev?user_id=%40whatsapp_lid-97882405363848%3Amatrix.theocloud.dev","duration":104.959425,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Elias (WA)","membership":"join"},"time":"2026-03-06T19:23:53.16456698Z","message":"Request completed"} +{"level":"debug","transaction_id":"2532","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:53.197480608Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2532","time":"2026-03-06T19:23:53.197855102Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","portal_mxid":"!wRkwNZtgctxiqmVHWz:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$XsKB5G5m9fUVdwKn4DMC1slhoKGl9H9PM7fElXpoXbU","event_type":"m.room.member","event_id":"$XsKB5G5m9fUVdwKn4DMC1slhoKGl9H9PM7fElXpoXbU","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:23:53.198448621Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"4915258731774@s.whatsapp.net","portal_mxid":"!wRkwNZtgctxiqmVHWz:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$XsKB5G5m9fUVdwKn4DMC1slhoKGl9H9PM7fElXpoXbU","event_type":"m.room.member","event_id":"$XsKB5G5m9fUVdwKn4DMC1slhoKGl9H9PM7fElXpoXbU","sender":"@theo:matrix.theocloud.dev","login_id":"4917641870516","membership":"leave","prev_membership":"join","target_user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:23:53.199604091Z","message":"Dropping leave event"} +{"level":"debug","transaction_id":"2533","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:53.22336406Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2533","time":"2026-03-06T19:23:53.223667454Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6178,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-30653349408787:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":145.5492,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rFcZxcudHEcTxqVlwCuCjrtD","com.beeper.exclude_from_timeline":true,"displayname":"Stefan Strolch (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:53.31113867Z","message":"Request completed"} +{"level":"debug","transaction_id":"2534","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:53.327135957Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2534","time":"2026-03-06T19:23:53.327504584Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6179,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-30653349408787:matrix.theocloud.dev?user_id=%40whatsapp_lid-30653349408787%3Amatrix.theocloud.dev","duration":79.516608,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rFcZxcudHEcTxqVlwCuCjrtD","com.beeper.exclude_from_timeline":true,"displayname":"Stefan Strolch (WA)","membership":"join"},"time":"2026-03-06T19:23:53.391394836Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:53.392221768Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6180,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915208759798%3Amatrix.theocloud.dev","duration":13.069572,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915208759798","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:53.405542353Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6181,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915208759798:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915208759798%3Amatrix.theocloud.dev","duration":5.34251,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:53.411279122Z","message":"Request completed"} +{"level":"debug","transaction_id":"2535","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:53.414601725Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2535","time":"2026-03-06T19:23:53.414900999Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6182,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915208759798:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915208759798%3Amatrix.theocloud.dev","duration":14.529344,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Boris ✞ (WA)"},"time":"2026-03-06T19:23:53.426050888Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:53.426923776Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:53.782098487Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6183,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915208759798:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915208759798%3Amatrix.theocloud.dev","duration":2.599946,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:53.785113924Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:53.785966697Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6184,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491749058614%3Amatrix.theocloud.dev","duration":3.597223,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491749058614","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:53.789845035Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6185,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749058614:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491749058614%3Amatrix.theocloud.dev","duration":2.31925,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:53.792504626Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6186,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749058614:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491749058614%3Amatrix.theocloud.dev","duration":6.109447,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491749058614 (WA)"},"time":"2026-03-06T19:23:53.798811587Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:53.799585858Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:54.103593052Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6187,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749058614:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491749058614%3Amatrix.theocloud.dev","duration":2.516485,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:54.106476208Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6188,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-209689514090663:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.564371,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nVngAMkAhBQRNXhaugGWdgAH","com.beeper.exclude_from_timeline":true,"displayname":"sirajedine (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:54.175081228Z","message":"Request completed"} +{"level":"debug","transaction_id":"2536","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:54.195450917Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2536","time":"2026-03-06T19:23:54.195791328Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6189,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-209689514090663:matrix.theocloud.dev?user_id=%40whatsapp_lid-209689514090663%3Amatrix.theocloud.dev","duration":98.343412,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nVngAMkAhBQRNXhaugGWdgAH","com.beeper.exclude_from_timeline":true,"displayname":"sirajedine (WA)","membership":"join"},"time":"2026-03-06T19:23:54.274173419Z","message":"Request completed"} +{"level":"debug","transaction_id":"2537","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:54.286090175Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2537","time":"2026-03-06T19:23:54.286447348Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6190,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12786134462711:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":81.037841,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iBMYaSAapOMhftFicdtIYIGH","com.beeper.exclude_from_timeline":true,"displayname":"Giuseppe Tullo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:54.356481549Z","message":"Request completed"} +{"level":"debug","transaction_id":"2538","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:54.379319461Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2538","time":"2026-03-06T19:23:54.379674469Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6191,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12786134462711:matrix.theocloud.dev?user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":88.042804,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iBMYaSAapOMhftFicdtIYIGH","com.beeper.exclude_from_timeline":true,"displayname":"Giuseppe Tullo (WA)","membership":"join"},"time":"2026-03-06T19:23:54.445261119Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:54.446130584Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":5460,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s3787_1032_8_420_472_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30003.485837,"status_code":200,"response_length":145,"response_mime":"application/json","time":"2026-03-06T19:23:54.453445927Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6192,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915734484578%3Amatrix.theocloud.dev","duration":12.315276,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915734484578","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:54.458750722Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6194,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915734484578:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915734484578%3Amatrix.theocloud.dev","duration":7.958031,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:54.467106364Z","message":"Request completed"} +{"level":"debug","transaction_id":"2539","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:54.469911436Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2539","time":"2026-03-06T19:23:54.470217345Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2540","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:54.485936381Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2540","time":"2026-03-06T19:23:54.486051411Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6195,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915734484578:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915734484578%3Amatrix.theocloud.dev","duration":20.150873,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915734484578 (WA)"},"time":"2026-03-06T19:23:54.487443995Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:54.488236704Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:54.637844853Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6196,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915734484578:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915734484578%3Amatrix.theocloud.dev","duration":1.913537,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:54.640010241Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6197,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70029659869242:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":49.601655,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WjSuHViEFInUkmDqEAsBENJI","com.beeper.exclude_from_timeline":true,"displayname":"Helena (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:54.690301657Z","message":"Request completed"} +{"level":"debug","transaction_id":"2541","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:54.695507416Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2541","time":"2026-03-06T19:23:54.695723298Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6198,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70029659869242:matrix.theocloud.dev?user_id=%40whatsapp_lid-70029659869242%3Amatrix.theocloud.dev","duration":56.538801,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WjSuHViEFInUkmDqEAsBENJI","com.beeper.exclude_from_timeline":true,"displayname":"Helena (WA)","membership":"join"},"time":"2026-03-06T19:23:54.747640291Z","message":"Request completed"} +{"level":"debug","transaction_id":"2542","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:54.759647005Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2542","time":"2026-03-06T19:23:54.760013956Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6199,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25529302425761:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.030919,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OUIiCSWWOIfTUYLvgoSIqMqJ","com.beeper.exclude_from_timeline":true,"displayname":"Michael Spaller (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:54.819644881Z","message":"Request completed"} +{"level":"debug","transaction_id":"2543","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:54.82729386Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2543","time":"2026-03-06T19:23:54.827655153Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6200,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25529302425761:matrix.theocloud.dev?user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":66.150626,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OUIiCSWWOIfTUYLvgoSIqMqJ","com.beeper.exclude_from_timeline":true,"displayname":"Michael Spaller (WA)","membership":"join"},"time":"2026-03-06T19:23:54.886480379Z","message":"Request completed"} +{"level":"debug","transaction_id":"2544","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:54.894299912Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2544","time":"2026-03-06T19:23:54.894523198Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6201,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-135437549052023:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.617098,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Leander (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:54.949013248Z","message":"Request completed"} +{"level":"debug","transaction_id":"2545","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:54.95699733Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2545","time":"2026-03-06T19:23:54.957303308Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6202,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-135437549052023:matrix.theocloud.dev?user_id=%40whatsapp_lid-135437549052023%3Amatrix.theocloud.dev","duration":78.289061,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Leander (WA)","membership":"join"},"time":"2026-03-06T19:23:55.028056256Z","message":"Request completed"} +{"level":"debug","transaction_id":"2546","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.036102566Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2546","time":"2026-03-06T19:23:55.036443396Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6203,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12837791518793:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":54.866151,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491759903260 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:55.083772875Z","message":"Request completed"} +{"level":"debug","transaction_id":"2547","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.093104981Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2547","time":"2026-03-06T19:23:55.093458173Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6204,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12837791518793:matrix.theocloud.dev?user_id=%40whatsapp_lid-12837791518793%3Amatrix.theocloud.dev","duration":39.25977,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491759903260 (WA)","membership":"join"},"time":"2026-03-06T19:23:55.123744057Z","message":"Request completed"} +{"level":"debug","transaction_id":"2548","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.135429357Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2548","time":"2026-03-06T19:23:55.135765717Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6205,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-20414147354769:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.037336,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ivyYZqwVPkAQePkiOikbjzQv","com.beeper.exclude_from_timeline":true,"displayname":"+4915206670209 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:55.183962705Z","message":"Request completed"} +{"level":"debug","transaction_id":"2549","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.194225179Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2549","time":"2026-03-06T19:23:55.194590523Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6206,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-20414147354769:matrix.theocloud.dev?user_id=%40whatsapp_lid-20414147354769%3Amatrix.theocloud.dev","duration":53.29519,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ivyYZqwVPkAQePkiOikbjzQv","com.beeper.exclude_from_timeline":true,"displayname":"+4915206670209 (WA)","membership":"join"},"time":"2026-03-06T19:23:55.237817959Z","message":"Request completed"} +{"level":"debug","transaction_id":"2550","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.249286608Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2550","time":"2026-03-06T19:23:55.249614238Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6207,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-99561704038426:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":52.141326,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FrQuRpXJaVqaTuVDwylopjgE","com.beeper.exclude_from_timeline":true,"displayname":"+491621791301 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:55.290975211Z","message":"Request completed"} +{"level":"debug","transaction_id":"2551","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.301418506Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2551","time":"2026-03-06T19:23:55.301719596Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6208,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-99561704038426:matrix.theocloud.dev?user_id=%40whatsapp_lid-99561704038426%3Amatrix.theocloud.dev","duration":48.408261,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FrQuRpXJaVqaTuVDwylopjgE","com.beeper.exclude_from_timeline":true,"displayname":"+491621791301 (WA)","membership":"join"},"time":"2026-03-06T19:23:55.340171152Z","message":"Request completed"} +{"level":"debug","transaction_id":"2552","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.348720466Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2552","time":"2026-03-06T19:23:55.349027842Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6209,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-28999669539033:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":37.145996,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917672815004 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:55.378454947Z","message":"Request completed"} +{"level":"debug","transaction_id":"2553","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.391260795Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2553","time":"2026-03-06T19:23:55.391616082Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6210,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-28999669539033:matrix.theocloud.dev?user_id=%40whatsapp_lid-28999669539033%3Amatrix.theocloud.dev","duration":68.569889,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917672815004 (WA)","membership":"join"},"time":"2026-03-06T19:23:55.447876981Z","message":"Request completed"} +{"level":"debug","transaction_id":"2554","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.459620948Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2554","time":"2026-03-06T19:23:55.459909327Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6211,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-105094192341121:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":55.692664,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Zou (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:55.504646472Z","message":"Request completed"} +{"level":"debug","transaction_id":"2555","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.515287351Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2555","time":"2026-03-06T19:23:55.515600314Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6212,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-105094192341121:matrix.theocloud.dev?user_id=%40whatsapp_lid-105094192341121%3Amatrix.theocloud.dev","duration":49.549832,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Zou (WA)","membership":"join"},"time":"2026-03-06T19:23:55.555046143Z","message":"Request completed"} +{"level":"debug","transaction_id":"2556","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.561708461Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2556","time":"2026-03-06T19:23:55.561999982Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6213,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-109869759754428:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":49.620302,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/zaAEUpOqizvZRXiKpRgsJkLB","com.beeper.exclude_from_timeline":true,"displayname":"Juan Pablo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:55.605642141Z","message":"Request completed"} +{"level":"debug","transaction_id":"2557","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.615623361Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2557","time":"2026-03-06T19:23:55.615886247Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6214,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-109869759754428:matrix.theocloud.dev?user_id=%40whatsapp_lid-109869759754428%3Amatrix.theocloud.dev","duration":40.55688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/zaAEUpOqizvZRXiKpRgsJkLB","com.beeper.exclude_from_timeline":true,"displayname":"Juan Pablo (WA)","membership":"join"},"time":"2026-03-06T19:23:55.646887665Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:55.647925311Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6215,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4916098347818%3Amatrix.theocloud.dev","duration":5.89587,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4916098347818","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:55.654103482Z","message":"Request completed"} +{"level":"debug","transaction_id":"2558","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.656513667Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2558","time":"2026-03-06T19:23:55.65673367Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6216,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916098347818:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4916098347818%3Amatrix.theocloud.dev","duration":4.332173,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:55.65884947Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6217,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916098347818:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4916098347818%3Amatrix.theocloud.dev","duration":6.160013,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Roman Demchenko (WA)"},"time":"2026-03-06T19:23:55.665220755Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:55.666050201Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:55.931583979Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6218,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916098347818:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4916098347818%3Amatrix.theocloud.dev","duration":1.781675,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:55.933717937Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6219,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12502750490865:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":53.468538,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PXvBGzNQqBSQGjotpdRfXhqw","com.beeper.exclude_from_timeline":true,"displayname":"+491738992038 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:55.988245213Z","message":"Request completed"} +{"level":"debug","transaction_id":"2559","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:55.997656311Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2559","time":"2026-03-06T19:23:55.997961032Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6220,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12502750490865:matrix.theocloud.dev?user_id=%40whatsapp_lid-12502750490865%3Amatrix.theocloud.dev","duration":57.872019,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PXvBGzNQqBSQGjotpdRfXhqw","com.beeper.exclude_from_timeline":true,"displayname":"+491738992038 (WA)","membership":"join"},"time":"2026-03-06T19:23:56.046908265Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:56.048124567Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6221,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491737400248%3Amatrix.theocloud.dev","duration":6.100647,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491737400248","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:56.054579384Z","message":"Request completed"} +{"level":"debug","transaction_id":"2560","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:56.058302882Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2560","time":"2026-03-06T19:23:56.058609279Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6222,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491737400248:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491737400248%3Amatrix.theocloud.dev","duration":5.522562,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:56.060497254Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6223,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491737400248:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491737400248%3Amatrix.theocloud.dev","duration":5.632634,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Dennis Ma (WA)"},"time":"2026-03-06T19:23:56.066347237Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:56.067103698Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:56.223319339Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6224,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491737400248:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491737400248%3Amatrix.theocloud.dev","duration":2.471646,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:56.2261425Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:56.227119453Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6225,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491739356181%3Amatrix.theocloud.dev","duration":3.569565,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491739356181","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:56.230976279Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6226,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739356181:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739356181%3Amatrix.theocloud.dev","duration":2.173978,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:56.23348124Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6227,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739356181:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739356181%3Amatrix.theocloud.dev","duration":6.326517,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491739356181 (WA)"},"time":"2026-03-06T19:23:56.240008273Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:56.240733794Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:56.517457061Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6228,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739356181:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491739356181%3Amatrix.theocloud.dev","duration":2.212601,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:56.52000693Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6229,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-61955406606386:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":49.21403,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GflJdclDSwfpfkboeVWriwdr","com.beeper.exclude_from_timeline":true,"displayname":"Ali (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:56.570258676Z","message":"Request completed"} +{"level":"debug","transaction_id":"2561","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:56.582613622Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2561","time":"2026-03-06T19:23:56.582939995Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6230,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-61955406606386:matrix.theocloud.dev?user_id=%40whatsapp_lid-61955406606386%3Amatrix.theocloud.dev","duration":67.912255,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GflJdclDSwfpfkboeVWriwdr","com.beeper.exclude_from_timeline":true,"displayname":"Ali (WA)","membership":"join"},"time":"2026-03-06T19:23:56.638901969Z","message":"Request completed"} +{"level":"debug","transaction_id":"2562","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:56.647672125Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2562","time":"2026-03-06T19:23:56.647992351Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6231,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-210453582090448:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":53.102495,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VUSVYKoSoxjeAiwZKmjdoVxh","com.beeper.exclude_from_timeline":true,"displayname":"Emre-Can (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:56.693043577Z","message":"Request completed"} +{"level":"debug","transaction_id":"2563","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:56.703221611Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2563","time":"2026-03-06T19:23:56.703569845Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6232,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-210453582090448:matrix.theocloud.dev?user_id=%40whatsapp_lid-210453582090448%3Amatrix.theocloud.dev","duration":48.681624,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VUSVYKoSoxjeAiwZKmjdoVxh","com.beeper.exclude_from_timeline":true,"displayname":"Emre-Can (WA)","membership":"join"},"time":"2026-03-06T19:23:56.742441572Z","message":"Request completed"} +{"level":"debug","transaction_id":"2564","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:56.754996336Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2564","time":"2026-03-06T19:23:56.755308391Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6233,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-44419206123644:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.875095,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SXNeSLsfibUWbhwpGmCpbXKH","com.beeper.exclude_from_timeline":true,"displayname":"Nes The One (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:56.804437214Z","message":"Request completed"} +{"level":"debug","transaction_id":"2565","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:56.817066501Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2565","time":"2026-03-06T19:23:56.817393223Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6234,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-44419206123644:matrix.theocloud.dev?user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":59.552143,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/SXNeSLsfibUWbhwpGmCpbXKH","com.beeper.exclude_from_timeline":true,"displayname":"Nes The One (WA)","membership":"join"},"time":"2026-03-06T19:23:56.864761044Z","message":"Request completed"} +{"level":"debug","transaction_id":"2566","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:56.877225503Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2566","time":"2026-03-06T19:23:56.877551247Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6235,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-166700683100354:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.682957,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"B (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:56.92555163Z","message":"Request completed"} +{"level":"debug","transaction_id":"2567","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:56.93613426Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2567","time":"2026-03-06T19:23:56.936446106Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6236,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-166700683100354:matrix.theocloud.dev?user_id=%40whatsapp_lid-166700683100354%3Amatrix.theocloud.dev","duration":55.666472,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"B (WA)","membership":"join"},"time":"2026-03-06T19:23:56.982051319Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:56.983101537Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6237,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915735308931%3Amatrix.theocloud.dev","duration":6.965084,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915735308931","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:56.99039872Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6238,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735308931:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915735308931%3Amatrix.theocloud.dev","duration":3.639686,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:56.994549372Z","message":"Request completed"} +{"level":"debug","transaction_id":"2568","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:56.997074168Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2568","time":"2026-03-06T19:23:56.997410179Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6239,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735308931:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915735308931%3Amatrix.theocloud.dev","duration":8.514394,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sedjlo (WA)"},"time":"2026-03-06T19:23:57.003298016Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:57.004072147Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:57.168384246Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6240,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915735308931:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915735308931%3Amatrix.theocloud.dev","duration":2.314571,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:57.171022745Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6241,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-13473413128380:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":51.97622,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"TJ (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:57.224020197Z","message":"Request completed"} +{"level":"debug","transaction_id":"2569","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.240920195Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2569","time":"2026-03-06T19:23:57.241246847Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6242,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-13473413128380:matrix.theocloud.dev?user_id=%40whatsapp_lid-13473413128380%3Amatrix.theocloud.dev","duration":69.801068,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"TJ (WA)","membership":"join"},"time":"2026-03-06T19:23:57.294615371Z","message":"Request completed"} +{"level":"debug","transaction_id":"2570","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.306364017Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2570","time":"2026-03-06T19:23:57.306693742Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6243,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-230210683330737:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.960442,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917683609440 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:57.357650545Z","message":"Request completed"} +{"level":"debug","transaction_id":"2571","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.369041808Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2571","time":"2026-03-06T19:23:57.369403312Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6244,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-230210683330737:matrix.theocloud.dev?user_id=%40whatsapp_lid-230210683330737%3Amatrix.theocloud.dev","duration":58.941164,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917683609440 (WA)","membership":"join"},"time":"2026-03-06T19:23:57.417389726Z","message":"Request completed"} +{"level":"debug","transaction_id":"2572","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.428878978Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2572","time":"2026-03-06T19:23:57.429231262Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6245,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-191783325712532:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.585879,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fdeTsjNRYDPfSVWauhNnyKUu","com.beeper.exclude_from_timeline":true,"displayname":"Merle Lea Luttropp (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:57.481047473Z","message":"Request completed"} +{"level":"debug","transaction_id":"2573","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.492610618Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2573","time":"2026-03-06T19:23:57.492900673Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6246,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-191783325712532:matrix.theocloud.dev?user_id=%40whatsapp_lid-191783325712532%3Amatrix.theocloud.dev","duration":59.085668,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fdeTsjNRYDPfSVWauhNnyKUu","com.beeper.exclude_from_timeline":true,"displayname":"Merle Lea Luttropp (WA)","membership":"join"},"time":"2026-03-06T19:23:57.540860617Z","message":"Request completed"} +{"level":"debug","transaction_id":"2574","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.551916847Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2574","time":"2026-03-06T19:23:57.552271297Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6247,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-91422824890466:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.566739,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917663142096 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:57.600509073Z","message":"Request completed"} +{"level":"debug","transaction_id":"2575","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.612891886Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2575","time":"2026-03-06T19:23:57.613222868Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6248,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-91422824890466:matrix.theocloud.dev?user_id=%40whatsapp_lid-91422824890466%3Amatrix.theocloud.dev","duration":49.880954,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917663142096 (WA)","membership":"join"},"time":"2026-03-06T19:23:57.651128677Z","message":"Request completed"} +{"level":"debug","transaction_id":"2576","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.660512606Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2576","time":"2026-03-06T19:23:57.660774514Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6249,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-11373224415308:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":53.483973,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Harun (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:57.705692062Z","message":"Request completed"} +{"level":"debug","transaction_id":"2577","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.71693987Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2577","time":"2026-03-06T19:23:57.71724061Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6250,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-11373224415308:matrix.theocloud.dev?user_id=%40whatsapp_lid-11373224415308%3Amatrix.theocloud.dev","duration":66.961773,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Harun (WA)","membership":"join"},"time":"2026-03-06T19:23:57.773481325Z","message":"Request completed"} +{"level":"debug","transaction_id":"2578","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.781196863Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2578","time":"2026-03-06T19:23:57.781454022Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6251,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251037097177288:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.125128,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Lucas (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:57.832796913Z","message":"Request completed"} +{"level":"debug","transaction_id":"2579","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.840643265Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2579","time":"2026-03-06T19:23:57.840954762Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6252,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251037097177288:matrix.theocloud.dev?user_id=%40whatsapp_lid-251037097177288%3Amatrix.theocloud.dev","duration":41.140201,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Lucas (WA)","membership":"join"},"time":"2026-03-06T19:23:57.87474016Z","message":"Request completed"} +{"level":"debug","transaction_id":"2580","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.88299509Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2580","time":"2026-03-06T19:23:57.883280116Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6253,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-100738508263616:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":40.943177,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UfrLlxiCRoIcIlQeDeyHFFSX","com.beeper.exclude_from_timeline":true,"displayname":"Nemanja (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:57.916747802Z","message":"Request completed"} +{"level":"debug","transaction_id":"2581","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.928348732Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2581","time":"2026-03-06T19:23:57.928613923Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6254,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-100738508263616:matrix.theocloud.dev?user_id=%40whatsapp_lid-100738508263616%3Amatrix.theocloud.dev","duration":51.525807,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UfrLlxiCRoIcIlQeDeyHFFSX","com.beeper.exclude_from_timeline":true,"displayname":"Nemanja (WA)","membership":"join"},"time":"2026-03-06T19:23:57.968885008Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:57.969536077Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6255,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_573218770957%3Amatrix.theocloud.dev","duration":4.596386,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_573218770957","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:57.974348973Z","message":"Request completed"} +{"level":"debug","transaction_id":"2582","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:57.976257062Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2582","time":"2026-03-06T19:23:57.976583295Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6256,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_573218770957:matrix.theocloud.dev/displayname?user_id=%40whatsapp_573218770957%3Amatrix.theocloud.dev","duration":3.512155,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:57.978190364Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6257,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_573218770957:matrix.theocloud.dev/displayname?user_id=%40whatsapp_573218770957%3Amatrix.theocloud.dev","duration":6.083745,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+573218770957 (WA)"},"time":"2026-03-06T19:23:57.984416797Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:57.984916308Z","message":""} +{"level":"debug","transaction_id":"2583","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:23:58.348454763Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2583","time":"2026-03-06T19:23:58.348529773Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:58.350275758Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:58.396880763Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:58.397014441Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6258,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_573218770957:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_573218770957%3Amatrix.theocloud.dev","duration":2.616079,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:58.399969744Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:58.400891173Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6259,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917621763296%3Amatrix.theocloud.dev","duration":3.597572,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917621763296","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:58.404763923Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6260,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621763296:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621763296%3Amatrix.theocloud.dev","duration":2.201706,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:23:58.407378396Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6261,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621763296:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621763296%3Amatrix.theocloud.dev","duration":6.629422,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Julia (WA)"},"time":"2026-03-06T19:23:58.414238437Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:58.41503394Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:58.591879012Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6262,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621763296:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917621763296%3Amatrix.theocloud.dev","duration":2.275739,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:58.594519327Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6263,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-84005869375515:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.03154,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915222317608 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:58.655495622Z","message":"Request completed"} +{"level":"debug","transaction_id":"2584","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:58.664531807Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2584","time":"2026-03-06T19:23:58.664868865Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6264,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-84005869375515:matrix.theocloud.dev?user_id=%40whatsapp_lid-84005869375515%3Amatrix.theocloud.dev","duration":61.469452,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915222317608 (WA)","membership":"join"},"time":"2026-03-06T19:23:58.717722094Z","message":"Request completed"} +{"level":"debug","transaction_id":"2585","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:58.729878199Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2585","time":"2026-03-06T19:23:58.730215467Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6265,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-169187452428542:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.581199,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/udykTnEPHBOgHLTkPsnMTXfX","com.beeper.exclude_from_timeline":true,"displayname":"Nico (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:58.779552001Z","message":"Request completed"} +{"level":"debug","transaction_id":"2586","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:58.791302184Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2586","time":"2026-03-06T19:23:58.791673814Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6266,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-169187452428542:matrix.theocloud.dev?user_id=%40whatsapp_lid-169187452428542%3Amatrix.theocloud.dev","duration":76.007246,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/udykTnEPHBOgHLTkPsnMTXfX","com.beeper.exclude_from_timeline":true,"displayname":"Nico (WA)","membership":"join"},"time":"2026-03-06T19:23:58.856460281Z","message":"Request completed"} +{"level":"debug","transaction_id":"2587","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:58.867965737Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2587","time":"2026-03-06T19:23:58.868319208Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6267,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-200806917791911:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.755666,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dZmFBkdQzbhKwcgpLuVJxzma","com.beeper.exclude_from_timeline":true,"displayname":"+4915254158741 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:58.920283834Z","message":"Request completed"} +{"level":"debug","transaction_id":"2588","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:58.933529618Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2588","time":"2026-03-06T19:23:58.933877851Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6268,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-200806917791911:matrix.theocloud.dev?user_id=%40whatsapp_lid-200806917791911%3Amatrix.theocloud.dev","duration":68.39703,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dZmFBkdQzbhKwcgpLuVJxzma","com.beeper.exclude_from_timeline":true,"displayname":"+4915254158741 (WA)","membership":"join"},"time":"2026-03-06T19:23:58.989511358Z","message":"Request completed"} +{"level":"debug","transaction_id":"2589","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:59.002621438Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2589","time":"2026-03-06T19:23:59.002958985Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6269,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-17910198173840:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.427061,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/eIphljQncIFFqZLRJYwxJlQz","com.beeper.exclude_from_timeline":true,"displayname":"+4917630462874 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:59.058006656Z","message":"Request completed"} +{"level":"debug","transaction_id":"2590","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:59.0666094Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2590","time":"2026-03-06T19:23:59.066921874Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6270,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-17910198173840:matrix.theocloud.dev?user_id=%40whatsapp_lid-17910198173840%3Amatrix.theocloud.dev","duration":60.277804,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/eIphljQncIFFqZLRJYwxJlQz","com.beeper.exclude_from_timeline":true,"displayname":"+4917630462874 (WA)","membership":"join"},"time":"2026-03-06T19:23:59.119163913Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:59.120322106Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6271,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491792322489%3Amatrix.theocloud.dev","duration":6.268338,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491792322489","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:59.126933299Z","message":"Request completed"} +{"level":"debug","transaction_id":"2591","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:59.12974368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2591","time":"2026-03-06T19:23:59.1300403Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6272,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792322489:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491792322489%3Amatrix.theocloud.dev","duration":5.064119,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:59.132394331Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6273,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792322489:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491792322489%3Amatrix.theocloud.dev","duration":6.834618,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nick (WA)"},"time":"2026-03-06T19:23:59.139416406Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:59.140178175Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:59.306582257Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6274,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491792322489:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491792322489%3Amatrix.theocloud.dev","duration":2.290824,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:59.30916132Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:59.310084564Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6275,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_380952380872%3Amatrix.theocloud.dev","duration":3.602461,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_380952380872","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:59.313930215Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6276,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380952380872:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380952380872%3Amatrix.theocloud.dev","duration":2.180124,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:59.316459202Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6277,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380952380872:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380952380872%3Amatrix.theocloud.dev","duration":6.372752,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Nazar (WA)"},"time":"2026-03-06T19:23:59.323013404Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:59.323768258Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:59.708677449Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6278,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380952380872:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380952380872%3Amatrix.theocloud.dev","duration":2.918497,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:59.712001869Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6279,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-86522250412262:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.46882,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Julius (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:23:59.77059871Z","message":"Request completed"} +{"level":"debug","transaction_id":"2592","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:59.779393171Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2592","time":"2026-03-06T19:23:59.779687067Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6280,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-86522250412262:matrix.theocloud.dev?user_id=%40whatsapp_lid-86522250412262%3Amatrix.theocloud.dev","duration":44.28338,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Julius (WA)","membership":"join"},"time":"2026-03-06T19:23:59.815640227Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:23:59.816174381Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6281,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491757262193%3Amatrix.theocloud.dev","duration":8.52494,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491757262193","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:23:59.824899069Z","message":"Request completed"} +{"level":"debug","transaction_id":"2593","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:23:59.828932247Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2593","time":"2026-03-06T19:23:59.829235781Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6282,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491757262193:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491757262193%3Amatrix.theocloud.dev","duration":6.3562,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:23:59.831628575Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6283,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491757262193:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491757262193%3Amatrix.theocloud.dev","duration":6.903972,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491757262193 (WA)"},"time":"2026-03-06T19:23:59.838719305Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:23:59.83958451Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:23:59.99286154Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6284,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491757262193:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491757262193%3Amatrix.theocloud.dev","duration":2.272176,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:23:59.995443397Z","message":"Request completed"} +{"level":"warn","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","started_at":"2026-03-06T19:22:00.030663244Z","time":"2026-03-06T19:24:00.031577798Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6285,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-9461947228209:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":53.509186,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"🤏🏻😎 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:00.050137805Z","message":"Request completed"} +{"level":"debug","transaction_id":"2594","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.060726582Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2594","time":"2026-03-06T19:24:00.060993449Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6286,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-9461947228209:matrix.theocloud.dev?user_id=%40whatsapp_lid-9461947228209%3Amatrix.theocloud.dev","duration":65.222213,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"🤏🏻😎 (WA)","membership":"join"},"time":"2026-03-06T19:24:00.116119063Z","message":"Request completed"} +{"level":"debug","transaction_id":"2595","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.125263014Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2595","time":"2026-03-06T19:24:00.125590713Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6287,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-13413753335991:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.044533,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Liam (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:00.180341764Z","message":"Request completed"} +{"level":"debug","transaction_id":"2596","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.193381234Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2596","time":"2026-03-06T19:24:00.193684768Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6288,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-13413753335991:matrix.theocloud.dev?user_id=%40whatsapp_lid-13413753335991%3Amatrix.theocloud.dev","duration":66.211248,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Liam (WA)","membership":"join"},"time":"2026-03-06T19:24:00.247315829Z","message":"Request completed"} +{"level":"debug","transaction_id":"2597","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.261085848Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2597","time":"2026-03-06T19:24:00.261379255Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6289,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101641122517221:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":68.496764,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tjJOoYadWQpBLfLsPbEvCKBA","com.beeper.exclude_from_timeline":true,"displayname":"Seiar (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:00.316954025Z","message":"Request completed"} +{"level":"debug","transaction_id":"2598","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.329443417Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2598","time":"2026-03-06T19:24:00.329832229Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6290,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101641122517221:matrix.theocloud.dev?user_id=%40whatsapp_lid-101641122517221%3Amatrix.theocloud.dev","duration":64.047816,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tjJOoYadWQpBLfLsPbEvCKBA","com.beeper.exclude_from_timeline":true,"displayname":"Seiar (WA)","membership":"join"},"time":"2026-03-06T19:24:00.38182535Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:00.382820881Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6291,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915159874349%3Amatrix.theocloud.dev","duration":6.626139,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915159874349","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:00.38973058Z","message":"Request completed"} +{"level":"debug","transaction_id":"2599","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.391935847Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2599","time":"2026-03-06T19:24:00.392116878Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6292,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159874349:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915159874349%3Amatrix.theocloud.dev","duration":4.560068,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:00.394718221Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6293,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159874349:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915159874349%3Amatrix.theocloud.dev","duration":6.858923,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Shaimn (WA)"},"time":"2026-03-06T19:24:00.401786741Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:00.40257072Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:00.553142202Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6294,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159874349:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915159874349%3Amatrix.theocloud.dev","duration":2.454465,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:00.555969974Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6295,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88291676282954:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.730449,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LfSqZpmxtuTvQRBlbMXorNkU","com.beeper.exclude_from_timeline":true,"displayname":"+491723891168 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:00.615637636Z","message":"Request completed"} +{"level":"debug","transaction_id":"2600","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.630071715Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2600","time":"2026-03-06T19:24:00.630422812Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6296,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88291676282954:matrix.theocloud.dev?user_id=%40whatsapp_lid-88291676282954%3Amatrix.theocloud.dev","duration":68.790172,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LfSqZpmxtuTvQRBlbMXorNkU","com.beeper.exclude_from_timeline":true,"displayname":"+491723891168 (WA)","membership":"join"},"time":"2026-03-06T19:24:00.685095429Z","message":"Request completed"} +{"level":"debug","transaction_id":"2601","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.694910215Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2601","time":"2026-03-06T19:24:00.695220314Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6297,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-118292240982236:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":65.461143,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sJBFLGLbEkaqHVimBAKphrdL","com.beeper.exclude_from_timeline":true,"displayname":"+4917641816167 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:00.751754157Z","message":"Request completed"} +{"level":"debug","transaction_id":"2602","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.759909421Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2602","time":"2026-03-06T19:24:00.760227064Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6298,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-118292240982236:matrix.theocloud.dev?user_id=%40whatsapp_lid-118292240982236%3Amatrix.theocloud.dev","duration":70.831659,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sJBFLGLbEkaqHVimBAKphrdL","com.beeper.exclude_from_timeline":true,"displayname":"+4917641816167 (WA)","membership":"join"},"time":"2026-03-06T19:24:00.823529733Z","message":"Request completed"} +{"level":"debug","transaction_id":"2603","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.831637436Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2603","time":"2026-03-06T19:24:00.83187008Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6299,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-213099231596676:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.092863,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"René (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:00.886690204Z","message":"Request completed"} +{"level":"debug","transaction_id":"2604","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.895526989Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2604","time":"2026-03-06T19:24:00.895843165Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6300,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-213099231596676:matrix.theocloud.dev?user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":55.097258,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"René (WA)","membership":"join"},"time":"2026-03-06T19:24:00.942474081Z","message":"Request completed"} +{"level":"debug","transaction_id":"2605","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.951614261Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2605","time":"2026-03-06T19:24:00.951864226Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6301,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-56895431819388:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":46.414895,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Razik (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:00.989590122Z","message":"Request completed"} +{"level":"debug","transaction_id":"2606","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:00.998263685Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2606","time":"2026-03-06T19:24:00.99860668Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6302,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-56895431819388:matrix.theocloud.dev?user_id=%40whatsapp_lid-56895431819388%3Amatrix.theocloud.dev","duration":56.380399,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Razik (WA)","membership":"join"},"time":"2026-03-06T19:24:01.046732709Z","message":"Request completed"} +{"level":"debug","transaction_id":"2607","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.054248498Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2607","time":"2026-03-06T19:24:01.054503981Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6303,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101992705880128:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":55.690079,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XtmCxYQmxoDAxNyFqLSUqTvO","com.beeper.exclude_from_timeline":true,"displayname":"Juli (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:01.103502199Z","message":"Request completed"} +{"level":"debug","transaction_id":"2608","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.116604806Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2608","time":"2026-03-06T19:24:01.116962398Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6304,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101992705880128:matrix.theocloud.dev?user_id=%40whatsapp_lid-101992705880128%3Amatrix.theocloud.dev","duration":71.746033,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XtmCxYQmxoDAxNyFqLSUqTvO","com.beeper.exclude_from_timeline":true,"displayname":"Juli (WA)","membership":"join"},"time":"2026-03-06T19:24:01.175950356Z","message":"Request completed"} +{"level":"debug","transaction_id":"2609","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.189246566Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2609","time":"2026-03-06T19:24:01.189566164Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:01.216958626Z","message":"a5b5752e6450cec188b6fee6"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:01.217721652Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A5AFA097521B7FDA3AD","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","time":"2026-03-06T19:24:01.217848974Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6305,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-226147862347841:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":88.78376,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sirajedine (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:01.26584789Z","message":"Request completed"} +{"level":"debug","transaction_id":"2610","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.276630339Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2610","time":"2026-03-06T19:24:01.277451613Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6306,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-226147862347841:matrix.theocloud.dev?user_id=%40whatsapp_lid-226147862347841%3Amatrix.theocloud.dev","duration":51.967978,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sirajedine (WA)","membership":"join"},"time":"2026-03-06T19:24:01.318388364Z","message":"Request completed"} +{"level":"debug","transaction_id":"2611","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.3501079Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2611","time":"2026-03-06T19:24:01.35044419Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6307,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-8821896405131:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":93.791097,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Louis (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:01.413266765Z","message":"Request completed"} +{"level":"debug","transaction_id":"2612","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.430451649Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2612","time":"2026-03-06T19:24:01.430729341Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6308,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-8821896405131:matrix.theocloud.dev?user_id=%40whatsapp_lid-8821896405131%3Amatrix.theocloud.dev","duration":57.073024,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Louis (WA)","membership":"join"},"time":"2026-03-06T19:24:01.471112803Z","message":"Request completed"} +{"level":"debug","transaction_id":"2613","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.486258853Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2613","time":"2026-03-06T19:24:01.48650812Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6309,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-207820683223254:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":81.248205,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KsgCKZqBmgzTQUlqjzTXEbEt","com.beeper.exclude_from_timeline":true,"displayname":"Tuan (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:01.553178022Z","message":"Request completed"} +{"level":"debug","transaction_id":"2614","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.560966825Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2614","time":"2026-03-06T19:24:01.561186758Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2615","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:01.598527683Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2615","time":"2026-03-06T19:24:01.598607932Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:01.599234765Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":31,"action":"handle matrix event","event_id":"","event_type":"m.typing","user_id":"@theo:matrix.theocloud.dev","typing":true,"time":"2026-03-06T19:24:01.600143203Z","message":"Sent typing event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6310,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-207820683223254:matrix.theocloud.dev?user_id=%40whatsapp_lid-207820683223254%3Amatrix.theocloud.dev","duration":67.339968,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KsgCKZqBmgzTQUlqjzTXEbEt","com.beeper.exclude_from_timeline":true,"displayname":"Tuan (WA)","membership":"join"},"time":"2026-03-06T19:24:01.621150481Z","message":"Request completed"} +{"level":"debug","transaction_id":"2616","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.636976515Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2616","time":"2026-03-06T19:24:01.637229763Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6311,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-182961395781844:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.987269,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iEYebzGDOAkIIyPewuWwttdV","com.beeper.exclude_from_timeline":true,"displayname":"Dmytro (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:01.693943938Z","message":"Request completed"} +{"level":"debug","transaction_id":"2617","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.700017207Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2617","time":"2026-03-06T19:24:01.700362646Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6312,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-182961395781844:matrix.theocloud.dev?user_id=%40whatsapp_lid-182961395781844%3Amatrix.theocloud.dev","duration":55.325223,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iEYebzGDOAkIIyPewuWwttdV","com.beeper.exclude_from_timeline":true,"displayname":"Dmytro (WA)","membership":"join"},"time":"2026-03-06T19:24:01.749808134Z","message":"Request completed"} +{"level":"debug","transaction_id":"2618","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.764541277Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2618","time":"2026-03-06T19:24:01.764858989Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6313,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-110608343158788:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":82.776702,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nCEmcylWFePFNVPzAgtHTexF","com.beeper.exclude_from_timeline":true,"displayname":"+491756930361 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:01.833699447Z","message":"Request completed"} +{"level":"debug","transaction_id":"2619","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.844022474Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2619","time":"2026-03-06T19:24:01.844248553Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6314,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-110608343158788:matrix.theocloud.dev?user_id=%40whatsapp_lid-110608343158788%3Amatrix.theocloud.dev","duration":60.336541,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/nCEmcylWFePFNVPzAgtHTexF","com.beeper.exclude_from_timeline":true,"displayname":"+491756930361 (WA)","membership":"join"},"time":"2026-03-06T19:24:01.895498135Z","message":"Request completed"} +{"level":"debug","transaction_id":"2620","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.904690207Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2620","time":"2026-03-06T19:24:01.904973627Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6315,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198749678780508:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.526581,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GAxoRJyqwaRZaIEofreBGNQq","com.beeper.exclude_from_timeline":true,"displayname":"Gianni_ (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:01.955113974Z","message":"Request completed"} +{"level":"debug","transaction_id":"2621","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:01.968570542Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2621","time":"2026-03-06T19:24:01.968804373Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6316,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-198749678780508:matrix.theocloud.dev?user_id=%40whatsapp_lid-198749678780508%3Amatrix.theocloud.dev","duration":65.401917,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GAxoRJyqwaRZaIEofreBGNQq","com.beeper.exclude_from_timeline":true,"displayname":"Gianni_ (WA)","membership":"join"},"time":"2026-03-06T19:24:02.021101797Z","message":"Request completed"} +{"level":"debug","transaction_id":"2622","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.031115493Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2622","time":"2026-03-06T19:24:02.031390881Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6317,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-260580380246145:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":50.305664,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Ibrahim (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:02.072104416Z","message":"Request completed"} +{"level":"debug","transaction_id":"2623","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.080266316Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2623","time":"2026-03-06T19:24:02.080590663Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6318,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-260580380246145:matrix.theocloud.dev?user_id=%40whatsapp_lid-260580380246145%3Amatrix.theocloud.dev","duration":50.905539,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Ibrahim (WA)","membership":"join"},"time":"2026-03-06T19:24:02.123651456Z","message":"Request completed"} +{"level":"debug","transaction_id":"2624","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.131570794Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2624","time":"2026-03-06T19:24:02.132040063Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6319,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-43542495891687:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.923635,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915734484578 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:02.186515027Z","message":"Request completed"} +{"level":"debug","transaction_id":"2625","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.195094584Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2625","time":"2026-03-06T19:24:02.195485211Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6320,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-43542495891687:matrix.theocloud.dev?user_id=%40whatsapp_lid-43542495891687%3Amatrix.theocloud.dev","duration":51.945559,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915734484578 (WA)","membership":"join"},"time":"2026-03-06T19:24:02.239253156Z","message":"Request completed"} +{"level":"debug","transaction_id":"2626","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.248295556Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2626","time":"2026-03-06T19:24:02.248577788Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6321,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-141188745167008:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":46.867821,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/deeAqRHkJnAKjOnfsZJvjRCX","com.beeper.exclude_from_timeline":true,"displayname":"+33628246935 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:02.286885469Z","message":"Request completed"} +{"level":"debug","transaction_id":"2627","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.295019293Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2627","time":"2026-03-06T19:24:02.295243975Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6322,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-141188745167008:matrix.theocloud.dev?user_id=%40whatsapp_lid-141188745167008%3Amatrix.theocloud.dev","duration":57.450103,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/deeAqRHkJnAKjOnfsZJvjRCX","com.beeper.exclude_from_timeline":true,"displayname":"+33628246935 (WA)","membership":"join"},"time":"2026-03-06T19:24:02.34496038Z","message":"Request completed"} +{"level":"debug","transaction_id":"2628","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.355792906Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2628","time":"2026-03-06T19:24:02.356019544Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6323,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-67362887889042:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":52.791209,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BHmhRGUonBTzpdzAQwzplAFy","com.beeper.exclude_from_timeline":true,"displayname":"+4915151533302 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:02.398765837Z","message":"Request completed"} +{"level":"debug","transaction_id":"2629","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.407312917Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2629","time":"2026-03-06T19:24:02.407674909Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6324,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-67362887889042:matrix.theocloud.dev?user_id=%40whatsapp_lid-67362887889042%3Amatrix.theocloud.dev","duration":52.929496,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BHmhRGUonBTzpdzAQwzplAFy","com.beeper.exclude_from_timeline":true,"displayname":"+4915151533302 (WA)","membership":"join"},"time":"2026-03-06T19:24:02.452227391Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:02.453032462Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6326,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491621791301%3Amatrix.theocloud.dev","duration":6.272459,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491621791301","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:02.45957954Z","message":"Request completed"} +{"level":"debug","transaction_id":"2630","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.462177949Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2630","time":"2026-03-06T19:24:02.462481833Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6327,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491621791301:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491621791301%3Amatrix.theocloud.dev","duration":3.184385,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:02.463044202Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6328,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491621791301:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491621791301%3Amatrix.theocloud.dev","duration":5.734534,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491621791301 (WA)"},"time":"2026-03-06T19:24:02.468962351Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:02.469777829Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:02.634411201Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A5AFA097521B7FDA3AD","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","req_id":6325,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":227.660445,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<42663650 bytes>","time":"2026-03-06T19:24:02.637477204Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6329,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491621791301:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491621791301%3Amatrix.theocloud.dev","duration":4.340693,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:02.639095308Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6330,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80522080477241:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":47.336742,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BGFNBeGGNGSHJjqGowzMuqpx","com.beeper.exclude_from_timeline":true,"displayname":"Makhkam (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:02.687121812Z","message":"Request completed"} +{"level":"debug","transaction_id":"2631","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.697735312Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2631","time":"2026-03-06T19:24:02.698038847Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A5AFA097521B7FDA3AD","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","req_id":6331,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825042659507321_12?ts=1772825041000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":74.778233,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":227000,"h":832,"mimetype":"video/mp4","size":42663650,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":227000,"h":832,"mimetype":"video/mp4","size":42663650,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/OnpeQhcjIWiIAaKGmFmvCTqI"},"m.relates_to":{"event_id":"$X302UYo58oDj6WaRKfIIv5w1e7i6j777WczzM43h-ic","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/OnpeQhcjIWiIAaKGmFmvCTqI"},"time":"2026-03-06T19:24:02.734643425Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A5AFA097521B7FDA3AD","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","event_id":"$W-UHbT7z_sruWCxFG__UAZqd2UB87-tTjJyAlibyAFw","part_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","time":"2026-03-06T19:24:02.734837098Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2632","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.743246518Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2632","time":"2026-03-06T19:24:02.743394444Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6332,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80522080477241:matrix.theocloud.dev?user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":92.390202,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BGFNBeGGNGSHJjqGowzMuqpx","com.beeper.exclude_from_timeline":true,"displayname":"Makhkam (WA)","membership":"join"},"time":"2026-03-06T19:24:02.7803145Z","message":"Request completed"} +{"level":"debug","transaction_id":"2633","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.790775326Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2633","time":"2026-03-06T19:24:02.791050015Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6333,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-236846508454136:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":54.411477,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RlfOvolUvlxcihDBkLmmyRFC","com.beeper.exclude_from_timeline":true,"displayname":"Milanko (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:02.835755662Z","message":"Request completed"} +{"level":"debug","transaction_id":"2634","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.84596757Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2634","time":"2026-03-06T19:24:02.846236672Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6334,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-236846508454136:matrix.theocloud.dev?user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":65.235203,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RlfOvolUvlxcihDBkLmmyRFC","com.beeper.exclude_from_timeline":true,"displayname":"Milanko (WA)","membership":"join"},"time":"2026-03-06T19:24:02.901573279Z","message":"Request completed"} +{"level":"debug","transaction_id":"2635","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.909940794Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2635","time":"2026-03-06T19:24:02.910156677Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6335,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-182218383188163:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":50.667167,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qgZHFNuWspqmsuVBDuAqCndS","com.beeper.exclude_from_timeline":true,"displayname":"+4915225973389 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:02.952904995Z","message":"Request completed"} +{"level":"debug","transaction_id":"2636","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:02.964497823Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2636","time":"2026-03-06T19:24:02.964806386Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6336,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-182218383188163:matrix.theocloud.dev?user_id=%40whatsapp_lid-182218383188163%3Amatrix.theocloud.dev","duration":70.273131,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qgZHFNuWspqmsuVBDuAqCndS","com.beeper.exclude_from_timeline":true,"displayname":"+4915225973389 (WA)","membership":"join"},"time":"2026-03-06T19:24:03.023843583Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:03.024653333Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6337,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917621844976%3Amatrix.theocloud.dev","duration":5.971718,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917621844976","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:03.030928935Z","message":"Request completed"} +{"level":"debug","transaction_id":"2637","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:03.033502131Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2637","time":"2026-03-06T19:24:03.03377682Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6338,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621844976:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621844976%3Amatrix.theocloud.dev","duration":3.696748,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:03.03500744Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6339,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621844976:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917621844976%3Amatrix.theocloud.dev","duration":5.122995,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917621844976 (WA)"},"time":"2026-03-06T19:24:03.040314749Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:03.041172342Z","message":""} +{"level":"debug","transaction_id":"2638","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:03.114079292Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2638","time":"2026-03-06T19:24:03.114178887Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:03.114457627Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":32,"action":"handle matrix event","event_id":"","event_type":"m.typing","user_id":"@theo:matrix.theocloud.dev","typing":false,"time":"2026-03-06T19:24:03.114679935Z","message":"Sent typing event"} +{"level":"debug","transaction_id":"2639","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:03.181478067Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2639","time":"2026-03-06T19:24:03.181629904Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":33,"action":"handle matrix event","event_id":"$oySyPE0XVLxKVAGsP4BcaIPczJDfBfhypB-XVC7dZRw","event_type":"m.room.message","event_id":"$oySyPE0XVLxKVAGsP4BcaIPczJDfBfhypB-XVC7dZRw","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:03.182072564Z","message":"Sending implicit read receipt for event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:24:03.183290822Z","message":"Replacing SendMessage destination with LID as migration timestamp is set 4917620338641@s.whatsapp.net -> 236399445938270@lid"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:24:03.189628373Z","message":"Stored message secret key for outgoing message 3EB0F256C2F0D18D1048E1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:03.18985564Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:03.198394408Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6340,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917621844976:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917621844976%3Amatrix.theocloud.dev","duration":2.435328,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:03.201165677Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6341,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-10501648023786:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":68.599922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YQfNsGhECvAeLjCqttlAujqu","com.beeper.exclude_from_timeline":true,"displayname":"Yazan Elahmad (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:03.271500199Z","message":"Request completed"} +{"level":"debug","transaction_id":"2640","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:03.288103507Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2640","time":"2026-03-06T19:24:03.288466058Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6342,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-10501648023786:matrix.theocloud.dev?user_id=%40whatsapp_lid-10501648023786%3Amatrix.theocloud.dev","duration":56.250074,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/YQfNsGhECvAeLjCqttlAujqu","com.beeper.exclude_from_timeline":true,"displayname":"Yazan Elahmad (WA)","membership":"join"},"time":"2026-03-06T19:24:03.328250273Z","message":"Request completed"} +{"level":"debug","transaction_id":"2641","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:03.336455685Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2641","time":"2026-03-06T19:24:03.336727441Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6343,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-84069857669232:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.371324,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LiMHGJsNtskYzsMsJShkHqyZ","com.beeper.exclude_from_timeline":true,"displayname":"Nora Ouwerkerk (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:03.392361087Z","message":"Request completed"} +{"level":"debug","transaction_id":"2642","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:03.404969351Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2642","time":"2026-03-06T19:24:03.405284898Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6344,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-84069857669232:matrix.theocloud.dev?user_id=%40whatsapp_lid-84069857669232%3Amatrix.theocloud.dev","duration":65.82069,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LiMHGJsNtskYzsMsJShkHqyZ","com.beeper.exclude_from_timeline":true,"displayname":"Nora Ouwerkerk (WA)","membership":"join"},"time":"2026-03-06T19:24:03.458855615Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:03.459829286Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6345,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491633456827%3Amatrix.theocloud.dev","duration":7.357318,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491633456827","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:03.46750243Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6346,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491633456827:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491633456827%3Amatrix.theocloud.dev","duration":3.881271,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:03.471774188Z","message":"Request completed"} +{"level":"debug","transaction_id":"2643","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:03.47424304Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2643","time":"2026-03-06T19:24:03.474558448Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6347,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491633456827:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491633456827%3Amatrix.theocloud.dev","duration":8.828963,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491633456827 (WA)"},"time":"2026-03-06T19:24:03.480823363Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:03.481501112Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:03.58846382Z","message":"2d855c7bdee94bc0f173392c"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:03.589166642Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AA6A168C55ECC356EEC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","time":"2026-03-06T19:24:03.589281882Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:03.652593072Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6348,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491633456827:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491633456827%3Amatrix.theocloud.dev","duration":2.883715,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:03.655858824Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6349,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-50058112307202:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":80.296256,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tIpzDyJxAJFklfUmHoTXyzMX","com.beeper.exclude_from_timeline":true,"displayname":"Yasin Dalowar (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:03.737256841Z","message":"Request completed"} +{"level":"debug","transaction_id":"2644","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:03.746545435Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2644","time":"2026-03-06T19:24:03.746845966Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6350,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-50058112307202:matrix.theocloud.dev?user_id=%40whatsapp_lid-50058112307202%3Amatrix.theocloud.dev","duration":48.83339,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tIpzDyJxAJFklfUmHoTXyzMX","com.beeper.exclude_from_timeline":true,"displayname":"Yasin Dalowar (WA)","membership":"join"},"time":"2026-03-06T19:24:03.786894673Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:03.787751498Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6351,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917681125611%3Amatrix.theocloud.dev","duration":3.859201,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917681125611","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:03.791922753Z","message":"Request completed"} +{"level":"debug","transaction_id":"2645","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:03.793669367Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2645","time":"2026-03-06T19:24:03.793865205Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6352,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681125611:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917681125611%3Amatrix.theocloud.dev","duration":2.954046,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:03.795238442Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6353,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681125611:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917681125611%3Amatrix.theocloud.dev","duration":4.358084,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917681125611 (WA)"},"time":"2026-03-06T19:24:03.799818834Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:03.800385184Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AA6A168C55ECC356EEC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","req_id":6354,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":52.866498,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<7104119 bytes>","time":"2026-03-06T19:24:03.887724118Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:03.905055322Z","message":"0a1708adcdb6bb0e10d7caa1cd06180b22050008070b0a28001240219f5a0d0a6bddb5fd15b8425abcb18f6e5f3e2180851392dec7c179326cd912425ac960a1240f134c17e62e1f2124519adcf83aa7e3bf3497bc7f5a006dca000a1508cc9c90b30f1089d2accd061802220300010228001240d884d8224128fae529e0f52b3f46c8389f648aee4528eca1c66651b1b54b4b46a1f2abbbeccf85bb99c6fc9c073faa37e542459fa4b55ffa01b2e10364af5b8b"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:03.905904743Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AA6A168C55ECC356EEC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","req_id":6355,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825043891392510_13?ts=1772825043000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":37.193767,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":38000,"h":832,"mimetype":"video/mp4","size":7104119,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":38000,"h":832,"mimetype":"video/mp4","size":7104119,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/zgZADqJLnQryDXXoZiNLhFPs"},"m.relates_to":{"event_id":"$fQuXtzwhSgCNkw6IasvyILreRqtGeZu7CGaGu6ovSm0","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/zgZADqJLnQryDXXoZiNLhFPs"},"time":"2026-03-06T19:24:03.928929343Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AA6A168C55ECC356EEC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","event_id":"$FwAWs7YO9VWc5GpXXtx8LS8kr7YqOVhtKbK6POLA7A4","part_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","time":"2026-03-06T19:24:03.929109815Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2646","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:03.936212558Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2646","time":"2026-03-06T19:24:03.936357201Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:04.152458411Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6356,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917681125611:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917681125611%3Amatrix.theocloud.dev","duration":2.626556,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:04.155461906Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6357,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-150517229604984:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.574151,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xFzHZPHqVdJiEQnxwZXDOSpZ","com.beeper.exclude_from_timeline":true,"displayname":"+4915112997658 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:04.227064274Z","message":"Request completed"} +{"level":"debug","transaction_id":"2647","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:04.23792306Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2647","time":"2026-03-06T19:24:04.238237839Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6358,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-150517229604984:matrix.theocloud.dev?user_id=%40whatsapp_lid-150517229604984%3Amatrix.theocloud.dev","duration":69.445082,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xFzHZPHqVdJiEQnxwZXDOSpZ","com.beeper.exclude_from_timeline":true,"displayname":"+4915112997658 (WA)","membership":"join"},"time":"2026-03-06T19:24:04.2972376Z","message":"Request completed"} +{"level":"debug","transaction_id":"2648","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:04.311615945Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2648","time":"2026-03-06T19:24:04.311987506Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6359,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242047260864591:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.624159,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Liam (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:04.370922872Z","message":"Request completed"} +{"level":"debug","transaction_id":"2649","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:04.385650917Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2649","time":"2026-03-06T19:24:04.385979734Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6360,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242047260864591:matrix.theocloud.dev?user_id=%40whatsapp_lid-242047260864591%3Amatrix.theocloud.dev","duration":74.162015,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Liam (WA)","membership":"join"},"time":"2026-03-06T19:24:04.445817462Z","message":"Request completed"} +{"level":"debug","transaction_id":"2650","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:04.460153832Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2650","time":"2026-03-06T19:24:04.460509608Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6361,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-182750908809456:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.650842,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KLmjBtQffQHmUqxjRvQIPGCK","com.beeper.exclude_from_timeline":true,"displayname":"+4915121699472 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:04.523717362Z","message":"Request completed"} +{"level":"debug","transaction_id":"2651","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:04.538615682Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2651","time":"2026-03-06T19:24:04.539004354Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:04.539794688Z","message":"0000384005003ed0cd27f1b0b5eddca2524f54f57dfb321fe0ea4974f058ae18c1a9e1be2c000001a613be6d11cf1e22766ebbcefd7d7dd7e91c4b2694f5c4a99e192c9504b20c45d5ac9cf89e6f56edafc5d57e8c10eeb7a0aeaf5969b8328991d4795a8522bfe35100069de3edd5498465efefe28f14ba1b63986afd40706d2288769f33ea3d0d0003c1495a8012db2af464b8aa06ed770b00eb97d9da9082809b7b19b7663a9715b0620000040a05909cc64062e2f61ed421e3dcf3194d3167ebd6162e678a30f5c822fc8c78cc75000001b75ea1a0a18ddcc98b91231647a92ecf3f30b011718fe39a0b37bff050da0f6c48975cd2acd341cfb36ef0ade3b93bf16fd35896b5bfbf9a4154145f9b8d733e6ef42cbbb412f7d039706b33c9feef7835776b7f45213393e6b6c004cb28298c00058ba5c0ef2c8dc68fcc57e4e7a307b5b772d899bee0a8193cca61caf7548e58630300003bd005fda702d84a3b6a171a37db2adf0fc02c8f7611f8c03a1b5937505051d4b07a71000001ff68bace02a5d44a676cfbd1a78a612a36284e1715bca04543a4be40ecde5771023fe72c57420bca8267cd977a56dc2047191a919e5aac65c59f800c50df49dfa514efb3807a44681b11b50af8d8aadcc834eeeae81a5abfeca917ba0b70cd0c0004e5ca5104e32237b2bdb923048e3bb12d49b8bd6bb5be9177f43b80bbfa0b0f5561000000c50541e78eca59e94854c9c59d4144e792f01de2bb3a9432c637bcb2391b96db9b6e000001bf5757c10cf00c72ea04fc89c0ac03182d2f29dad17f6c1d9eb3daed607b536f0dc7ca491b34775e58886dfbd18f53b29b7590d5c5eef1ba4b23bb75c0718816d53dfa8d46369afa6ff2f037133d063ff991c6b9687efc94b72883a764bdc487089ab2eb057a11a81275d35845ffd39270fca31bf4e830578170ed60a99116ff35e9648c0e000001a1eca73cd4255007f1629b0eadc6160d92d499333adb3e56024225dc1b161b34d55118f64ebad9eb5440f4822833f9529dda53ae0910a80df17cc85c975fad4efa416f23ecb9224ecbf7822596ef34dae96db2d362d567ae18a8959fb23a490e00031836fff91747379fef7c2dd6ab38f17d8ce97015ce0a08ae794fa6906adeb59b3000001662055c21bc76da3ff4dbf15674a3a336f259723d41dfbeb21614873b3aa06a16a85a00000100b979b61e65e25ed9e27a5b01a3b2e463d71412603da57137a59145dc7ba0736b5d89e3df796515ad8a06ff37b09ddc68ad2f9ebf48cf68277a2fece428624c27c5b20c7b185f3af93ee13b8021740a5986dcbdbe0702ada5550978b33bd980000333e08808788412835e952eecf05251acbdaf72d1a6db95e841e8d0496dab2e2501"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:24:04.540502958Z","message":"Processing prekey bundle for 236399445938270:76@lid"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:24:04.543134892Z","message":"Processing prekey bundle for 236399445938270:77@lid"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:24:04.546261657Z","message":"Processing prekey bundle for 236399445938270:79@lid"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:24:04.549297419Z","message":"Processing prekey bundle for 236399445938270:80@lid"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:24:04.552519868Z","message":"Processing prekey bundle for 195790463058158:53@lid"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:04.557545434Z","message":"330a21056e4e1dc427448d65395a19ea5759c4dfa7508ec054456b35d22a4e27b5665f64100018ffffffff0f22407622ad03499d158f1778f5723a6cb645424ae3a579c1f54c3a8126f3a54250e1c8d9a06871e3b037079bad68eae7c28766b35b843c1e954b42c2ea3adcd850a85b8df1085780ea300d99860b10b9764f383ea96dd91e079e04012343cea31cbeb2e2d0"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:04.606422476Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6362,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-182750908809456:matrix.theocloud.dev?user_id=%40whatsapp_lid-182750908809456%3Amatrix.theocloud.dev","duration":82.027155,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KLmjBtQffQHmUqxjRvQIPGCK","com.beeper.exclude_from_timeline":true,"displayname":"+4915121699472 (WA)","membership":"join"},"time":"2026-03-06T19:24:04.606591633Z","message":"Request completed"} +{"level":"debug","transaction_id":"2652","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:04.618988206Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2652","time":"2026-03-06T19:24:04.61925193Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6363,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-77859284607025:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":66.3832,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sven (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:04.676154609Z","message":"Request completed"} +{"level":"debug","transaction_id":"2653","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:04.693682698Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2653","time":"2026-03-06T19:24:04.694023807Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6364,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-77859284607025:matrix.theocloud.dev?user_id=%40whatsapp_lid-77859284607025%3Amatrix.theocloud.dev","duration":50.598862,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sven (WA)","membership":"join"},"time":"2026-03-06T19:24:04.727623984Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:04.728358654Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6365,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917646028166%3Amatrix.theocloud.dev","duration":4.639547,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917646028166","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:04.733218903Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6366,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646028166:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917646028166%3Amatrix.theocloud.dev","duration":4.935679,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:04.738521952Z","message":"Request completed"} +{"level":"debug","transaction_id":"2654","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:04.741249569Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2654","time":"2026-03-06T19:24:04.741656121Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6367,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646028166:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917646028166%3Amatrix.theocloud.dev","duration":9.516908,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917646028166 (WA)"},"time":"2026-03-06T19:24:04.748227783Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:04.748873055Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:04.91590411Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6368,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917646028166:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917646028166%3Amatrix.theocloud.dev","duration":2.652816,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:04.918889934Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:04.919706879Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6369,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491639864570%3Amatrix.theocloud.dev","duration":3.807168,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491639864570","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:04.923802705Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6370,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639864570:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639864570%3Amatrix.theocloud.dev","duration":3.948389,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:04.928114553Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6371,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639864570:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491639864570%3Amatrix.theocloud.dev","duration":6.883717,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491639864570 (WA)"},"time":"2026-03-06T19:24:04.935208147Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:04.93610527Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:04.999902422Z","message":"2bdc57f543f5634d61b43aee"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:05.000815679Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC5AFFCE95825AB3803","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","time":"2026-03-06T19:24:05.00098756Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC5AFFCE95825AB3803","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","req_id":6372,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":16.626566,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1767566 bytes>","time":"2026-03-06T19:24:05.082113751Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:05.092946975Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6374,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491639864570:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491639864570%3Amatrix.theocloud.dev","duration":4.863881,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:05.098204697Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC5AFFCE95825AB3803","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","req_id":6373,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825045082641828_14?ts=1772825044000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":46.395548,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":832,"mimetype":"video/mp4","size":1767566,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":832,"mimetype":"video/mp4","size":1767566,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/dgfsEbZnfGnoWhAfWUZAzzXz"},"m.relates_to":{"event_id":"$jCz6_5593WFhfzeJXqfNr0CmvpQ1vq39iw8Q44yTao4","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/dgfsEbZnfGnoWhAfWUZAzzXz"},"time":"2026-03-06T19:24:05.129390009Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC5AFFCE95825AB3803","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","event_id":"$KCWZad-pwefOtFjsX4hQiAEPrZXa1wmbnRg4z9jIKAw","part_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","time":"2026-03-06T19:24:05.129577186Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2655","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:05.144001348Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2655","time":"2026-03-06T19:24:05.144151159Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6375,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-91057719120052:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.137987,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xTXyjRsNQSwHdMKStsYuFhvn","com.beeper.exclude_from_timeline":true,"displayname":"+491773825063 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:05.170327529Z","message":"Request completed"} +{"level":"debug","transaction_id":"2656","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:05.184570659Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2656","time":"2026-03-06T19:24:05.184848561Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6376,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-91057719120052:matrix.theocloud.dev?user_id=%40whatsapp_lid-91057719120052%3Amatrix.theocloud.dev","duration":66.95849,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xTXyjRsNQSwHdMKStsYuFhvn","com.beeper.exclude_from_timeline":true,"displayname":"+491773825063 (WA)","membership":"join"},"time":"2026-03-06T19:24:05.238020898Z","message":"Request completed"} +{"level":"debug","transaction_id":"2657","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:05.251450996Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2657","time":"2026-03-06T19:24:05.251762492Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6377,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70965862084760:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":65.73248,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917621844976 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:05.304993357Z","message":"Request completed"} +{"level":"debug","transaction_id":"2658","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:05.324641645Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2658","time":"2026-03-06T19:24:05.324950487Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6378,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-70965862084760:matrix.theocloud.dev?user_id=%40whatsapp_lid-70965862084760%3Amatrix.theocloud.dev","duration":53.177086,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917621844976 (WA)","membership":"join"},"time":"2026-03-06T19:24:05.358826122Z","message":"Request completed"} +{"level":"debug","transaction_id":"2659","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:05.370680579Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2659","time":"2026-03-06T19:24:05.3709413Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6379,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25628103458978:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":54.962882,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"hanneskannes (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:05.414862548Z","message":"Request completed"} +{"level":"debug","transaction_id":"2660","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:05.427951187Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2660","time":"2026-03-06T19:24:05.428253045Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6380,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-25628103458978:matrix.theocloud.dev?user_id=%40whatsapp_lid-25628103458978%3Amatrix.theocloud.dev","duration":53.851064,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"hanneskannes (WA)","membership":"join"},"time":"2026-03-06T19:24:05.469563312Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:05.470168006Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6381,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491628989538%3Amatrix.theocloud.dev","duration":7.47165,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491628989538","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:05.477828997Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6382,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491628989538:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491628989538%3Amatrix.theocloud.dev","duration":5.212324,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:05.483392069Z","message":"Request completed"} +{"level":"debug","transaction_id":"2661","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:05.485587907Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2661","time":"2026-03-06T19:24:05.485882292Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6383,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491628989538:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491628989538%3Amatrix.theocloud.dev","duration":9.954958,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491628989538 (WA)"},"time":"2026-03-06T19:24:05.493557741Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:05.494422946Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:05.624658264Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","lid":"236399445938270@lid","pn":"4917620338641@s.whatsapp.net","message_id":["3EB0F256C2F0D18D1048E1"],"evt_type":"receipt","time":"2026-03-06T19:24:05.624813035Z","message":"Forced LID DM sender to phone number in incoming message"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:05.625507615Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":34,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventDeliveryReceipt","remote_sender":{"user_id":"4917620338641"},"time":"2026-03-06T19:24:05.62563389Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:05.659129164Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6384,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491628989538:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491628989538%3Amatrix.theocloud.dev","duration":2.57124,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:05.661988993Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:05.662743777Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6385,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917675622090%3Amatrix.theocloud.dev","duration":3.591216,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917675622090","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:05.666618134Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6386,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917675622090:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917675622090%3Amatrix.theocloud.dev","duration":2.233414,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:05.669181971Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6387,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917675622090:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917675622090%3Amatrix.theocloud.dev","duration":6.614616,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917675622090 (WA)"},"time":"2026-03-06T19:24:05.675980481Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:05.676819426Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:05.924062297Z","message":"3a8d1da87d1aebe616efbdc1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:05.924914512Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACE32E3C95660B175E6","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","time":"2026-03-06T19:24:05.925021929Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACE32E3C95660B175E6","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","req_id":6388,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":13.748368,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1944157 bytes>","time":"2026-03-06T19:24:06.007651054Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACE32E3C95660B175E6","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","req_id":6389,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825046007984760_15?ts=1772825045000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":32.348465,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":10000,"h":832,"mimetype":"video/mp4","size":1944157,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":10000,"h":832,"mimetype":"video/mp4","size":1944157,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/lgWOTtIENyTSQaurFGbPfRkP"},"m.relates_to":{"event_id":"$mDVptqO1o4aQj3oab_11OOb7sDsAzq6xPMnJFHolzh0","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/lgWOTtIENyTSQaurFGbPfRkP"},"time":"2026-03-06T19:24:06.040571108Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACE32E3C95660B175E6","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","event_id":"$ABATdjenRDJZSARPukOtSU44YiNn0gEFjuc7kRGyl6I","part_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","time":"2026-03-06T19:24:06.040698011Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2662","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:06.047029766Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2662","time":"2026-03-06T19:24:06.047134808Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:06.061889882Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6390,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917675622090:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917675622090%3Amatrix.theocloud.dev","duration":2.203521,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:06.064460983Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6391,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-72000915652689:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":51.56876,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Linda Elke Alice (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:06.117108596Z","message":"Request completed"} +{"level":"debug","transaction_id":"2663","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:06.128741094Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2663","time":"2026-03-06T19:24:06.128976253Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6392,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-72000915652689:matrix.theocloud.dev?user_id=%40whatsapp_lid-72000915652689%3Amatrix.theocloud.dev","duration":67.827187,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Linda Elke Alice (WA)","membership":"join"},"time":"2026-03-06T19:24:06.185773959Z","message":"Request completed"} +{"level":"debug","transaction_id":"2664","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:06.195447873Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2664","time":"2026-03-06T19:24:06.195753293Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6393,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-115431574622245:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.276196,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Kai (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:06.245140602Z","message":"Request completed"} +{"level":"debug","transaction_id":"2665","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:06.259227565Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2665","time":"2026-03-06T19:24:06.259614281Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6394,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-115431574622245:matrix.theocloud.dev?user_id=%40whatsapp_lid-115431574622245%3Amatrix.theocloud.dev","duration":60.897723,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Kai (WA)","membership":"join"},"time":"2026-03-06T19:24:06.306814062Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:06.307775161Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6395,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491735425217%3Amatrix.theocloud.dev","duration":5.641434,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491735425217","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:06.313690237Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6396,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735425217:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491735425217%3Amatrix.theocloud.dev","duration":4.050149,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:06.318095254Z","message":"Request completed"} +{"level":"debug","transaction_id":"2666","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:06.320039661Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2666","time":"2026-03-06T19:24:06.320284109Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6397,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735425217:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491735425217%3Amatrix.theocloud.dev","duration":7.300047,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491735425217 (WA)"},"time":"2026-03-06T19:24:06.325604129Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:06.326444261Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:06.488700763Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6398,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491735425217:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491735425217%3Amatrix.theocloud.dev","duration":2.606232,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:06.491585526Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:06.492146219Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6399,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491739137913%3Amatrix.theocloud.dev","duration":3.667624,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491739137913","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:06.495992709Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6400,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739137913:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739137913%3Amatrix.theocloud.dev","duration":2.186061,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:06.498503187Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6401,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739137913:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739137913%3Amatrix.theocloud.dev","duration":6.449718,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491739137913 (WA)"},"time":"2026-03-06T19:24:06.505075548Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:06.505609072Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:06.67093479Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6402,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739137913:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491739137913%3Amatrix.theocloud.dev","duration":2.437283,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:06.673729177Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:06.674554083Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6403,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915209052709%3Amatrix.theocloud.dev","duration":3.249898,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915209052709","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:06.678093616Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6404,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915209052709:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915209052709%3Amatrix.theocloud.dev","duration":2.225452,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:06.680675263Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6405,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915209052709:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915209052709%3Amatrix.theocloud.dev","duration":6.508176,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915209052709 (WA)"},"time":"2026-03-06T19:24:06.68738207Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:06.688221155Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:06.723430915Z","message":"2592b4dcf132290af0021cdb"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:06.724050345Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A247E32B3A85C3FC601","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","time":"2026-03-06T19:24:06.724161464Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A247E32B3A85C3FC601","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","req_id":6406,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":17.294396,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1787106 bytes>","time":"2026-03-06T19:24:06.808173675Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A247E32B3A85C3FC601","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","req_id":6407,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825046808693999_16?ts=1772825046000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":38.085722,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":848,"mimetype":"video/mp4","size":1787106,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":848,"mimetype":"video/mp4","size":1787106,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/xkghawWcaCWJiJUvUTlxKesa"},"m.relates_to":{"event_id":"$W1C-1v65tdMF3_yhT9yweUo5d3pNTF84yR4Ku2o3l58","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/xkghawWcaCWJiJUvUTlxKesa"},"time":"2026-03-06T19:24:06.847064398Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A247E32B3A85C3FC601","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","event_id":"$iF0r0kQjVLQU0Gx8AhZWdC_d8DJjTS4-JlCYnGSmPtw","part_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","time":"2026-03-06T19:24:06.847198845Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2667","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:06.855214914Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2667","time":"2026-03-06T19:24:06.855327849Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:06.866603244Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6408,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915209052709:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915209052709%3Amatrix.theocloud.dev","duration":1.696468,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:06.868531936Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6409,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-28973983600651:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":38.115335,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rMLVmiEfHSLnEBGlYhVXEAnP","com.beeper.exclude_from_timeline":true,"displayname":"+4917695853477 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:06.907316849Z","message":"Request completed"} +{"level":"debug","transaction_id":"2668","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:06.916014089Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2668","time":"2026-03-06T19:24:06.916346957Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6410,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-28973983600651:matrix.theocloud.dev?user_id=%40whatsapp_lid-28973983600651%3Amatrix.theocloud.dev","duration":56.785693,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/rMLVmiEfHSLnEBGlYhVXEAnP","com.beeper.exclude_from_timeline":true,"displayname":"+4917695853477 (WA)","membership":"join"},"time":"2026-03-06T19:24:06.964728888Z","message":"Request completed"} +{"level":"debug","transaction_id":"2669","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:06.983846026Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2669","time":"2026-03-06T19:24:06.984153471Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6411,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80565550247962:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":108.011529,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gEpAtUolsUFuYvYeQshIKWzJ","com.beeper.exclude_from_timeline":true,"displayname":"Lorena (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:07.073743699Z","message":"Request completed"} +{"level":"debug","transaction_id":"2670","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.085188532Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2670","time":"2026-03-06T19:24:07.085623299Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363192861790277@g.us","portal_mxid":"!yywjyVJbcWYSiFwjvD:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$idwq5HfcPce_hAQtpCBBeXMxh9TkjgHveDnG8BtbzBQ","event_type":"m.room.member","event_id":"$idwq5HfcPce_hAQtpCBBeXMxh9TkjgHveDnG8BtbzBQ","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:07.086064283Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"2671","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.096379628Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2671","time":"2026-03-06T19:24:07.096593415Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6412,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80565550247962:matrix.theocloud.dev?user_id=%40whatsapp_lid-80565550247962%3Amatrix.theocloud.dev","duration":112.935892,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gEpAtUolsUFuYvYeQshIKWzJ","com.beeper.exclude_from_timeline":true,"displayname":"Lorena (WA)","membership":"join"},"time":"2026-03-06T19:24:07.187228202Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:07.188182736Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6413,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915222317608%3Amatrix.theocloud.dev","duration":9.571804,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915222317608","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:07.198051719Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6414,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915222317608:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915222317608%3Amatrix.theocloud.dev","duration":7.162877,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:07.205644334Z","message":"Request completed"} +{"level":"debug","transaction_id":"2672","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.208325647Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2672","time":"2026-03-06T19:24:07.208671924Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6415,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915222317608:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915222317608%3Amatrix.theocloud.dev","duration":11.072014,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915222317608 (WA)"},"time":"2026-03-06T19:24:07.216959889Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:07.217897591Z","message":""} +{"level":"debug","transaction_id":"2673","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:07.312992781Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2673","time":"2026-03-06T19:24:07.313100128Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:07.38865801Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6416,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915222317608:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915222317608%3Amatrix.theocloud.dev","duration":2.712392,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:07.391733022Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6417,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-73950780473356:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.232964,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WZEnXkAYyqIGBdQaBhXFowoQ","com.beeper.exclude_from_timeline":true,"displayname":"Ante Up! (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:07.452006356Z","message":"Request completed"} +{"level":"debug","transaction_id":"2674","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.470847268Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2674","time":"2026-03-06T19:24:07.471161698Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6418,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-73950780473356:matrix.theocloud.dev?user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":75.04042,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WZEnXkAYyqIGBdQaBhXFowoQ","com.beeper.exclude_from_timeline":true,"displayname":"Ante Up! (WA)","membership":"join"},"time":"2026-03-06T19:24:07.527936915Z","message":"Request completed"} +{"level":"debug","transaction_id":"2675","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.542731519Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2675","time":"2026-03-06T19:24:07.543074584Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6419,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21273073692847:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.799392,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"الزير (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:07.599782055Z","message":"Request completed"} +{"level":"debug","transaction_id":"2676","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.616217741Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2676","time":"2026-03-06T19:24:07.616595797Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6420,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21273073692847:matrix.theocloud.dev?user_id=%40whatsapp_lid-21273073692847%3Amatrix.theocloud.dev","duration":70.079249,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"الزير (WA)","membership":"join"},"time":"2026-03-06T19:24:07.670555605Z","message":"Request completed"} +{"level":"debug","transaction_id":"2677","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.686846229Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2677","time":"2026-03-06T19:24:07.687122874Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6421,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-173460928122963:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":123.97564,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491622315148 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:07.795568053Z","message":"Request completed"} +{"level":"debug","transaction_id":"2678","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.802809293Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2678","time":"2026-03-06T19:24:07.803013441Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6422,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-173460928122963:matrix.theocloud.dev?user_id=%40whatsapp_lid-173460928122963%3Amatrix.theocloud.dev","duration":45.489136,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491622315148 (WA)","membership":"join"},"time":"2026-03-06T19:24:07.841610199Z","message":"Request completed"} +{"level":"debug","transaction_id":"2679","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.855640032Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2679","time":"2026-03-06T19:24:07.855900473Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6423,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95344432046332:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.481182,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NAEpmEpcUFNmEdNMZrwlMWxh","com.beeper.exclude_from_timeline":true,"displayname":"+491629094532 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:07.900111078Z","message":"Request completed"} +{"level":"debug","transaction_id":"2680","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.909588804Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2680","time":"2026-03-06T19:24:07.909868103Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6424,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95344432046332:matrix.theocloud.dev?user_id=%40whatsapp_lid-95344432046332%3Amatrix.theocloud.dev","duration":64.43551,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NAEpmEpcUFNmEdNMZrwlMWxh","com.beeper.exclude_from_timeline":true,"displayname":"+491629094532 (WA)","membership":"join"},"time":"2026-03-06T19:24:07.965271759Z","message":"Request completed"} +{"level":"debug","transaction_id":"2681","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:07.976507973Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2681","time":"2026-03-06T19:24:07.976758148Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6425,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-269247389384889:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.142878,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917643137297 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:08.040505503Z","message":"Request completed"} +{"level":"debug","transaction_id":"2682","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.061903269Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2682","time":"2026-03-06T19:24:08.062237114Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6426,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-269247389384889:matrix.theocloud.dev?user_id=%40whatsapp_lid-269247389384889%3Amatrix.theocloud.dev","duration":91.07605,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917643137297 (WA)","membership":"join"},"time":"2026-03-06T19:24:08.132250363Z","message":"Request completed"} +{"level":"debug","transaction_id":"2683","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.144159925Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2683","time":"2026-03-06T19:24:08.144534838Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6427,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59197668491519:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":48.560865,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XgCeSqovhMkLpuITwngvYlJl","com.beeper.exclude_from_timeline":true,"displayname":"Sasha (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:08.181688796Z","message":"Request completed"} +{"level":"debug","transaction_id":"2684","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.192860615Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2684","time":"2026-03-06T19:24:08.193114911Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6428,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59197668491519:matrix.theocloud.dev?user_id=%40whatsapp_lid-59197668491519%3Amatrix.theocloud.dev","duration":45.449116,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XgCeSqovhMkLpuITwngvYlJl","com.beeper.exclude_from_timeline":true,"displayname":"Sasha (WA)","membership":"join"},"time":"2026-03-06T19:24:08.22824526Z","message":"Request completed"} +{"level":"debug","transaction_id":"2685","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.236357013Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2685","time":"2026-03-06T19:24:08.236621994Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:08.278216519Z","message":"37017f26ae30b90b084fdf0d"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:08.279051553Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AB6BB671DF10ED6F6D1","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","time":"2026-03-06T19:24:08.279149262Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6429,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-131061430358216:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":52.990887,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WwCpqlcSNcLfpqffabZfpqxw","com.beeper.exclude_from_timeline":true,"displayname":"Lori 🦉 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:08.282113924Z","message":"Request completed"} +{"level":"debug","transaction_id":"2686","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.289623079Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2686","time":"2026-03-06T19:24:08.289956156Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6430,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-131061430358216:matrix.theocloud.dev?user_id=%40whatsapp_lid-131061430358216%3Amatrix.theocloud.dev","duration":55.256079,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WwCpqlcSNcLfpqffabZfpqxw","com.beeper.exclude_from_timeline":true,"displayname":"Lori 🦉 (WA)","membership":"join"},"time":"2026-03-06T19:24:08.338265101Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:08.339167602Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6431,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491622315148%3Amatrix.theocloud.dev","duration":5.141434,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491622315148","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:08.344637085Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6432,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491622315148:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491622315148%3Amatrix.theocloud.dev","duration":3.669509,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:08.348824753Z","message":"Request completed"} +{"level":"debug","transaction_id":"2687","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.350411289Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2687","time":"2026-03-06T19:24:08.350747719Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6433,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491622315148:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491622315148%3Amatrix.theocloud.dev","duration":6.858295,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491622315148 (WA)"},"time":"2026-03-06T19:24:08.355900188Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:08.356798498Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AB6BB671DF10ED6F6D1","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","req_id":6434,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":21.220995,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2285389 bytes>","time":"2026-03-06T19:24:08.384971586Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AB6BB671DF10ED6F6D1","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","req_id":6435,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825048385470050_17?ts=1772825048000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":43.512671,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":12000,"h":832,"mimetype":"video/mp4","size":2285389,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":12000,"h":832,"mimetype":"video/mp4","size":2285389,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/FXUUicLvKWdvKOIKXbSpWOon"},"m.relates_to":{"event_id":"$h77mlmjJ9wMkIDVSyNnVn3XaUkSqjCFyVAYPIBI94xA","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/FXUUicLvKWdvKOIKXbSpWOon"},"time":"2026-03-06T19:24:08.429305113Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AB6BB671DF10ED6F6D1","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","event_id":"$OqbgnKuups9hMvHAdb4i5NiME_C8DuhMX--rfBDLVC0","part_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","time":"2026-03-06T19:24:08.429543694Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2688","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.436507381Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2688","time":"2026-03-06T19:24:08.436614798Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:08.512204039Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6436,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491622315148:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491622315148%3Amatrix.theocloud.dev","duration":2.411093,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:08.515027829Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6437,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-119086675710153:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.799943,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/HmYptzJmTBrjaAdXwNjfDrZL","com.beeper.exclude_from_timeline":true,"displayname":"+393273817314 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:08.574842299Z","message":"Request completed"} +{"level":"debug","transaction_id":"2689","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.597679722Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2689","time":"2026-03-06T19:24:08.598010705Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6438,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-119086675710153:matrix.theocloud.dev?user_id=%40whatsapp_lid-119086675710153%3Amatrix.theocloud.dev","duration":76.040561,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/HmYptzJmTBrjaAdXwNjfDrZL","com.beeper.exclude_from_timeline":true,"displayname":"+393273817314 (WA)","membership":"join"},"time":"2026-03-06T19:24:08.651640299Z","message":"Request completed"} +{"level":"debug","transaction_id":"2690","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.667506282Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2690","time":"2026-03-06T19:24:08.667835728Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6439,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66039450742811:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.683943,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CRlfKRnnTgfyaTEtNbLsJeKP","com.beeper.exclude_from_timeline":true,"displayname":"+4917623974702 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:08.723140976Z","message":"Request completed"} +{"level":"debug","transaction_id":"2691","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.738152999Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2691","time":"2026-03-06T19:24:08.738510661Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6440,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66039450742811:matrix.theocloud.dev?user_id=%40whatsapp_lid-66039450742811%3Amatrix.theocloud.dev","duration":67.828654,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CRlfKRnnTgfyaTEtNbLsJeKP","com.beeper.exclude_from_timeline":true,"displayname":"+4917623974702 (WA)","membership":"join"},"time":"2026-03-06T19:24:08.791813883Z","message":"Request completed"} +{"level":"debug","transaction_id":"2692","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.806858243Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2692","time":"2026-03-06T19:24:08.807181193Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6441,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-223072531550244:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.084418,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"C R (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:08.862736896Z","message":"Request completed"} +{"level":"debug","transaction_id":"2693","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.877855428Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2693","time":"2026-03-06T19:24:08.878181871Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6442,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-223072531550244:matrix.theocloud.dev?user_id=%40whatsapp_lid-223072531550244%3Amatrix.theocloud.dev","duration":66.226544,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"C R (WA)","membership":"join"},"time":"2026-03-06T19:24:08.929734497Z","message":"Request completed"} +{"level":"debug","transaction_id":"2694","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:08.943198049Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2694","time":"2026-03-06T19:24:08.943453531Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6443,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101816561881152:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.206704,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/URHQSzcZOkoAwYOvSLwKknXR","com.beeper.exclude_from_timeline":true,"displayname":"JH (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:08.990691795Z","message":"Request completed"} +{"level":"debug","transaction_id":"2695","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.004314238Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2695","time":"2026-03-06T19:24:09.004653951Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6444,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101816561881152:matrix.theocloud.dev?user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":64.00186,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/URHQSzcZOkoAwYOvSLwKknXR","com.beeper.exclude_from_timeline":true,"displayname":"JH (WA)","membership":"join"},"time":"2026-03-06T19:24:09.055298698Z","message":"Request completed"} +{"level":"debug","transaction_id":"2696","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.072236062Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2696","time":"2026-03-06T19:24:09.072584784Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6445,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-196215597719577:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.332846,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CDAKyKnmgnBdOwuGvFMTOIhy","com.beeper.exclude_from_timeline":true,"displayname":"Nathalia Marmolejos Feliz (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:09.126646491Z","message":"Request completed"} +{"level":"debug","transaction_id":"2697","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.141588882Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2697","time":"2026-03-06T19:24:09.141894302Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:09.181285515Z","message":"f85424a639f5de040699fbf0015e8f1b0370788c5690c1b21526fa99212b63a24da93263bec1a2bf551fc961931fe6152a06957e"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:09.182204079Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACBF52899206373688A","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","time":"2026-03-06T19:24:09.182320995Z","message":"Handling remote event"} +{"level":"warn","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACBF52899206373688A","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","error_name":"GENERAL_ERROR","time":"2026-03-06T19:24:09.183071101Z","message":"Got error response in media retry notification"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACBF52899206373688A","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","error_content":{"stanzaID":"4ACBF52899206373688A","result":0},"time":"2026-03-06T19:24:09.18323048Z","message":"Full error response content"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6446,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-196215597719577:matrix.theocloud.dev?user_id=%40whatsapp_lid-196215597719577%3Amatrix.theocloud.dev","duration":78.232768,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CDAKyKnmgnBdOwuGvFMTOIhy","com.beeper.exclude_from_timeline":true,"displayname":"Nathalia Marmolejos Feliz (WA)","membership":"join"},"time":"2026-03-06T19:24:09.205627269Z","message":"Request completed"} +{"level":"debug","transaction_id":"2698","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.226565753Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2698","time":"2026-03-06T19:24:09.226891217Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACBF52899206373688A","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","req_id":6447,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825049183582066_18?ts=1772825049000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":96.327207,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"* Failed to bridge media after re-requesting it from your phone: phone sent error response: GENERAL_ERROR\n\n","m.mentions":{},"m.new_content":{"body":"Failed to bridge media after re-requesting it from your phone: phone sent error response: GENERAL_ERROR\n\n","m.mentions":{},"msgtype":"m.notice"},"m.relates_to":{"event_id":"$mf0G5pSdEBQDOjuTx4IXQMgp-E-yHRgjVxBjSyqcLxU","rel_type":"m.replace"},"msgtype":"m.notice"},"time":"2026-03-06T19:24:09.280232153Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":7,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACBF52899206373688A","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","event_id":"$iNaXnkGRm8aetkCWz1BpAH2V533bXj_v1BcjVDoIU2s","part_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","time":"2026-03-06T19:24:09.280497414Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2699","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.291712745Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2699","time":"2026-03-06T19:24:09.291833013Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6448,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-73736032112697:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":117.950074,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xRHsxcXYcAQLZmBBRwywFmDt","com.beeper.exclude_from_timeline":true,"displayname":"Sidonie (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:09.324662412Z","message":"Request completed"} +{"level":"debug","transaction_id":"2700","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.341506186Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2700","time":"2026-03-06T19:24:09.341810139Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6449,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-73736032112697:matrix.theocloud.dev?user_id=%40whatsapp_lid-73736032112697%3Amatrix.theocloud.dev","duration":67.968478,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xRHsxcXYcAQLZmBBRwywFmDt","com.beeper.exclude_from_timeline":true,"displayname":"Sidonie (WA)","membership":"join"},"time":"2026-03-06T19:24:09.393351102Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:09.393988203Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6450,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917657796759%3Amatrix.theocloud.dev","duration":5.852567,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917657796759","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:09.400036398Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6451,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657796759:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917657796759%3Amatrix.theocloud.dev","duration":4.013831,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:09.404350621Z","message":"Request completed"} +{"level":"debug","transaction_id":"2701","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.405861028Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2701","time":"2026-03-06T19:24:09.406092555Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6452,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657796759:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917657796759%3Amatrix.theocloud.dev","duration":7.021236,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917657796759 (WA)"},"time":"2026-03-06T19:24:09.411559035Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:09.412162262Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:09.556822928Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:09.566664813Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6453,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917657796759:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917657796759%3Amatrix.theocloud.dev","duration":2.727548,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:09.569721317Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:09.600528434Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6454,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-208057309085944:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.989984,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917675622090 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:09.630749156Z","message":"Request completed"} +{"level":"debug","transaction_id":"2702","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.646567368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2702","time":"2026-03-06T19:24:09.646921887Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6455,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-208057309085944:matrix.theocloud.dev?user_id=%40whatsapp_lid-208057309085944%3Amatrix.theocloud.dev","duration":69.209364,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917675622090 (WA)","membership":"join"},"time":"2026-03-06T19:24:09.70072427Z","message":"Request completed"} +{"level":"debug","transaction_id":"2703","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.716538222Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2703","time":"2026-03-06T19:24:09.716871159Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6456,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-243632070254676:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.816359,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491738002445 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:09.765799465Z","message":"Request completed"} +{"level":"debug","transaction_id":"2704","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.775990351Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2704","time":"2026-03-06T19:24:09.776291091Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6457,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-243632070254676:matrix.theocloud.dev?user_id=%40whatsapp_lid-243632070254676%3Amatrix.theocloud.dev","duration":56.214663,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491738002445 (WA)","membership":"join"},"time":"2026-03-06T19:24:09.822782393Z","message":"Request completed"} +{"level":"debug","transaction_id":"2705","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.83481376Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2705","time":"2026-03-06T19:24:09.835149073Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6458,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-247824025391160:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":69.65391,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Pat (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:09.893394259Z","message":"Request completed"} +{"level":"debug","transaction_id":"2706","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.904895035Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2706","time":"2026-03-06T19:24:09.905227903Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6459,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-247824025391160:matrix.theocloud.dev?user_id=%40whatsapp_lid-247824025391160%3Amatrix.theocloud.dev","duration":61.026791,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Pat (WA)","membership":"join"},"time":"2026-03-06T19:24:09.954987889Z","message":"Request completed"} +{"level":"debug","transaction_id":"2707","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:09.960974344Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2707","time":"2026-03-06T19:24:09.961273059Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6460,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-146720914698447:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":43.03104,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Illia (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:09.99881499Z","message":"Request completed"} +{"level":"debug","transaction_id":"2708","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.009097928Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2708","time":"2026-03-06T19:24:10.00943345Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6461,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-146720914698447:matrix.theocloud.dev?user_id=%40whatsapp_lid-146720914698447%3Amatrix.theocloud.dev","duration":61.229125,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Illia (WA)","membership":"join"},"time":"2026-03-06T19:24:10.060798829Z","message":"Request completed"} +{"level":"debug","transaction_id":"2709","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.076492931Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2709","time":"2026-03-06T19:24:10.076836066Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6462,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-75930894614615:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.237992,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Vincent (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:10.120142144Z","message":"Request completed"} +{"level":"debug","transaction_id":"2710","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.137519793Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2710","time":"2026-03-06T19:24:10.137837714Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6463,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-75930894614615:matrix.theocloud.dev?user_id=%40whatsapp_lid-75930894614615%3Amatrix.theocloud.dev","duration":72.245894,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Vincent (WA)","membership":"join"},"time":"2026-03-06T19:24:10.193275593Z","message":"Request completed"} +{"level":"debug","transaction_id":"2711","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.207773927Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2711","time":"2026-03-06T19:24:10.20809988Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6464,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-275883097071617:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":56.904914,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sCTgPORBQRLSQYTETlrunLuQ","com.beeper.exclude_from_timeline":true,"displayname":"andac (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:10.251049065Z","message":"Request completed"} +{"level":"debug","transaction_id":"2712","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.261371184Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2712","time":"2026-03-06T19:24:10.261675696Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6465,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-275883097071617:matrix.theocloud.dev?user_id=%40whatsapp_lid-275883097071617%3Amatrix.theocloud.dev","duration":44.899877,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/sCTgPORBQRLSQYTETlrunLuQ","com.beeper.exclude_from_timeline":true,"displayname":"andac (WA)","membership":"join"},"time":"2026-03-06T19:24:10.296740184Z","message":"Request completed"} +{"level":"debug","transaction_id":"2713","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.313011043Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2713","time":"2026-03-06T19:24:10.313254373Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6466,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-102886059073748:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.520095,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mpxMFrBTkgnEXCsuBbAGPUsX","com.beeper.exclude_from_timeline":true,"displayname":"Viktor Tevosyan (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:10.370313918Z","message":"Request completed"} +{"level":"debug","transaction_id":"2714","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.38284787Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2714","time":"2026-03-06T19:24:10.383187443Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6467,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-102886059073748:matrix.theocloud.dev?user_id=%40whatsapp_lid-102886059073748%3Amatrix.theocloud.dev","duration":75.944737,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mpxMFrBTkgnEXCsuBbAGPUsX","com.beeper.exclude_from_timeline":true,"displayname":"Viktor Tevosyan (WA)","membership":"join"},"time":"2026-03-06T19:24:10.447090965Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:10.448404138Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6468,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915770291784%3Amatrix.theocloud.dev","duration":7.671468,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915770291784","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:10.456431801Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6469,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915770291784:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915770291784%3Amatrix.theocloud.dev","duration":6.03304,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:10.462865315Z","message":"Request completed"} +{"level":"debug","transaction_id":"2715","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.464949756Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2715","time":"2026-03-06T19:24:10.465278503Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6470,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915770291784:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915770291784%3Amatrix.theocloud.dev","duration":9.364443,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Juli (WA)"},"time":"2026-03-06T19:24:10.472433418Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:10.473374053Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:10.51465359Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","lid":"236399445938270@lid","pn":"4917620338641@s.whatsapp.net","message_id":["3EB0F256C2F0D18D1048E1"],"evt_type":"receipt","time":"2026-03-06T19:24:10.514779026Z","message":"Forced LID DM sender to phone number in own message sent from another device"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:10.514873453Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:10.635407828Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6471,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915770291784:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915770291784%3Amatrix.theocloud.dev","duration":2.388114,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:10.638061482Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6472,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-189768969261225:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.934741,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491631390112 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:10.703068721Z","message":"Request completed"} +{"level":"debug","transaction_id":"2716","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.719623698Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2716","time":"2026-03-06T19:24:10.719986808Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6473,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-189768969261225:matrix.theocloud.dev?user_id=%40whatsapp_lid-189768969261225%3Amatrix.theocloud.dev","duration":75.386837,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491631390112 (WA)","membership":"join"},"time":"2026-03-06T19:24:10.779276623Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:10.780068494Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6474,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_573123344836%3Amatrix.theocloud.dev","duration":17.411243,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_573123344836","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:10.797786484Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6475,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_573123344836:matrix.theocloud.dev/displayname?user_id=%40whatsapp_573123344836%3Amatrix.theocloud.dev","duration":5.573548,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:10.803704144Z","message":"Request completed"} +{"level":"debug","transaction_id":"2717","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.807527236Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2717","time":"2026-03-06T19:24:10.807761417Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6476,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_573123344836:matrix.theocloud.dev/displayname?user_id=%40whatsapp_573123344836%3Amatrix.theocloud.dev","duration":15.796281,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+573123344836 (WA)"},"time":"2026-03-06T19:24:10.819694028Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:10.820439314Z","message":""} +{"level":"debug","transaction_id":"2718","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:10.857550877Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2718","time":"2026-03-06T19:24:10.857870056Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363326854732201@g.us","portal_mxid":"!RLPmAJGDXGPlIucoNA:matrix.theocloud.dev","event_loop_index":2,"action":"handle matrix event","event_id":"$xfVD4mjneeGodfRWLTKhsKTTGCFs5YtuGtsekOUmp0g","event_type":"m.room.member","event_id":"$xfVD4mjneeGodfRWLTKhsKTTGCFs5YtuGtsekOUmp0g","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:10.858512535Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"2719","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:11.031569644Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2719","time":"2026-03-06T19:24:11.031698853Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:11.09741897Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6477,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_573123344836:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_573123344836%3Amatrix.theocloud.dev","duration":2.086327,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:11.099798354Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:11.100417925Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6478,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491733430974%3Amatrix.theocloud.dev","duration":2.727967,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491733430974","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:11.103356675Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6479,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491733430974:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491733430974%3Amatrix.theocloud.dev","duration":1.364926,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:11.104994545Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6480,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491733430974:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491733430974%3Amatrix.theocloud.dev","duration":3.947272,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491733430974 (WA)"},"time":"2026-03-06T19:24:11.109069837Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:11.109603851Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:11.159684972Z","message":"06e97739e99e60a1c29b3467"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:11.160397712Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","time":"2026-03-06T19:24:11.160544171Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","req_id":6481,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":13.76932,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1384207 bytes>","time":"2026-03-06T19:24:11.226067822Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","req_id":6482,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825051226557067_19?ts=1772825051000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":37.708226,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1384207,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1384207,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/pzgctvNwYLbxuLNWOVwwfQRr"},"m.relates_to":{"event_id":"$UiBp8PkU6r68q_bXIHKZ28_2UlfvmC5FozI8jMbMCWs","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/pzgctvNwYLbxuLNWOVwwfQRr"},"time":"2026-03-06T19:24:11.264558979Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":8,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","event_id":"$Fyc4wcutDVGdqExU7UMRLXzjm_tHseJy3egUu5hq-Do","part_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","time":"2026-03-06T19:24:11.2647002Z","message":"Sent message part edit to Matrix"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:11.266938991Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6483,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491733430974:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491733430974%3Amatrix.theocloud.dev","duration":10.367517,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:11.277632392Z","message":"Request completed"} +{"level":"debug","transaction_id":"2720","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:11.282819991Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2720","time":"2026-03-06T19:24:11.282950247Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6484,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-237340027011205:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":101.145061,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NPSYsdNXCPPbyqMwvLdofOLK","com.beeper.exclude_from_timeline":true,"displayname":"+4917679096203 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:11.379936694Z","message":"Request completed"} +{"level":"debug","transaction_id":"2721","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:11.391000049Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2721","time":"2026-03-06T19:24:11.391346676Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6485,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-237340027011205:matrix.theocloud.dev?user_id=%40whatsapp_lid-237340027011205%3Amatrix.theocloud.dev","duration":47.167723,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NPSYsdNXCPPbyqMwvLdofOLK","com.beeper.exclude_from_timeline":true,"displayname":"+4917679096203 (WA)","membership":"join"},"time":"2026-03-06T19:24:11.428001191Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:11.428859692Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6486,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917617625510%3Amatrix.theocloud.dev","duration":5.318624,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917617625510","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:11.434458941Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6487,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917617625510:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917617625510%3Amatrix.theocloud.dev","duration":4.904739,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:11.439786365Z","message":"Request completed"} +{"level":"debug","transaction_id":"2722","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:11.442484509Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2722","time":"2026-03-06T19:24:11.442792653Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6488,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917617625510:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917617625510%3Amatrix.theocloud.dev","duration":7.248783,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917617625510 (WA)"},"time":"2026-03-06T19:24:11.447278338Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:11.448008329Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:11.716962837Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6489,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917617625510:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917617625510%3Amatrix.theocloud.dev","duration":2.451462,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:11.719797522Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6490,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-206734241087531:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.532461,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/adSGDEQiJCQpOqQgCfHEjoWp","com.beeper.exclude_from_timeline":true,"displayname":"Julio Cela (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:11.799426855Z","message":"Request completed"} +{"level":"debug","transaction_id":"2723","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:11.814272933Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2723","time":"2026-03-06T19:24:11.814611178Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6491,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-206734241087531:matrix.theocloud.dev?user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":71.646718,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/adSGDEQiJCQpOqQgCfHEjoWp","com.beeper.exclude_from_timeline":true,"displayname":"Julio Cela (WA)","membership":"join"},"time":"2026-03-06T19:24:11.87203509Z","message":"Request completed"} +{"level":"debug","transaction_id":"2724","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:11.887483836Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2724","time":"2026-03-06T19:24:11.8877433Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6492,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-187501142626535:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.576531,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+919766453850 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:11.951673013Z","message":"Request completed"} +{"level":"debug","transaction_id":"2725","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:11.966492272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2725","time":"2026-03-06T19:24:11.966743494Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6493,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-187501142626535:matrix.theocloud.dev?user_id=%40whatsapp_lid-187501142626535%3Amatrix.theocloud.dev","duration":69.360293,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+919766453850 (WA)","membership":"join"},"time":"2026-03-06T19:24:12.021779431Z","message":"Request completed"} +{"level":"debug","transaction_id":"2726","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.039971579Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2726","time":"2026-03-06T19:24:12.040305355Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:12.052284899Z","message":"ec37e418b4d0957b97e6d973"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:12.052926889Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","time":"2026-03-06T19:24:12.053045201Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6494,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-199870648455306:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":82.049016,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/crKSWuMnVganZAFfyMcaNcwQ","com.beeper.exclude_from_timeline":true,"displayname":"Anja (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:12.104900105Z","message":"Request completed"} +{"level":"debug","transaction_id":"2727","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.118314069Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2727","time":"2026-03-06T19:24:12.118647914Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","req_id":6495,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":38.168765,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1378282 bytes>","time":"2026-03-06T19:24:12.136167063Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6496,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-199870648455306:matrix.theocloud.dev?user_id=%40whatsapp_lid-199870648455306%3Amatrix.theocloud.dev","duration":67.419099,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/crKSWuMnVganZAFfyMcaNcwQ","com.beeper.exclude_from_timeline":true,"displayname":"Anja (WA)","membership":"join"},"time":"2026-03-06T19:24:12.173103811Z","message":"Request completed"} +{"level":"debug","transaction_id":"2728","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.19091518Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2728","time":"2026-03-06T19:24:12.191221578Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","req_id":6497,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825052136689832_20?ts=1772825052000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":81.778517,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1378282,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1378282,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/wOilRJNBnzokXxZGTCdopIcj"},"m.relates_to":{"event_id":"$LoUUSXxyjqzrPSQUaHTYi5uXeeihTYrQJfOrf8GVJ-4","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/wOilRJNBnzokXxZGTCdopIcj"},"time":"2026-03-06T19:24:12.218797445Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":9,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","event_id":"$5Di1mhDsntLPyWkJ9wnpjqxyYBJ4pJ5bctFiFZeSUGU","part_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","time":"2026-03-06T19:24:12.219008299Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2729","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.236213297Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2729","time":"2026-03-06T19:24:12.236419821Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6498,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-115070881280105:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":107.041909,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nizar Khalifa (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:12.281078952Z","message":"Request completed"} +{"level":"debug","transaction_id":"2730","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.292725139Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2730","time":"2026-03-06T19:24:12.293015264Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6499,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-115070881280105:matrix.theocloud.dev?user_id=%40whatsapp_lid-115070881280105%3Amatrix.theocloud.dev","duration":74.488946,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nizar Khalifa (WA)","membership":"join"},"time":"2026-03-06T19:24:12.356468164Z","message":"Request completed"} +{"level":"debug","transaction_id":"2731","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.371448409Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2731","time":"2026-03-06T19:24:12.371794756Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6500,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-86861754155032:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.231927,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sero (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:12.431485327Z","message":"Request completed"} +{"level":"debug","transaction_id":"2732","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.447472347Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2732","time":"2026-03-06T19:24:12.447831615Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6501,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-86861754155032:matrix.theocloud.dev?user_id=%40whatsapp_lid-86861754155032%3Amatrix.theocloud.dev","duration":66.386971,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sero (WA)","membership":"join"},"time":"2026-03-06T19:24:12.498564853Z","message":"Request completed"} +{"level":"debug","transaction_id":"2733","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.51663359Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2733","time":"2026-03-06T19:24:12.516980356Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6502,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12395695087726:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.234722,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915159400259 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:12.575647319Z","message":"Request completed"} +{"level":"debug","transaction_id":"2734","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.590840793Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2734","time":"2026-03-06T19:24:12.591181623Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6503,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12395695087726:matrix.theocloud.dev?user_id=%40whatsapp_lid-12395695087726%3Amatrix.theocloud.dev","duration":82.164604,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915159400259 (WA)","membership":"join"},"time":"2026-03-06T19:24:12.658697034Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:12.659669168Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6504,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915252411739%3Amatrix.theocloud.dev","duration":9.981917,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915252411739","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:12.669946937Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6505,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915252411739:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915252411739%3Amatrix.theocloud.dev","duration":6.375336,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:12.676757181Z","message":"Request completed"} +{"level":"debug","transaction_id":"2735","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:12.679183289Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2735","time":"2026-03-06T19:24:12.679510221Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6506,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915252411739:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915252411739%3Amatrix.theocloud.dev","duration":9.108541,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Alessia (WA)"},"time":"2026-03-06T19:24:12.686090893Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:12.686921736Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:12.836022061Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6507,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915252411739:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915252411739%3Amatrix.theocloud.dev","duration":2.4076,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:12.838771679Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:12.839621728Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6508,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_393273817314%3Amatrix.theocloud.dev","duration":3.4127,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_393273817314","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:12.843298222Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6509,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393273817314:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393273817314%3Amatrix.theocloud.dev","duration":2.135844,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:12.845791938Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6510,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393273817314:matrix.theocloud.dev/displayname?user_id=%40whatsapp_393273817314%3Amatrix.theocloud.dev","duration":6.764846,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+393273817314 (WA)"},"time":"2026-03-06T19:24:12.852758Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:12.853617478Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:13.020473438Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6511,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_393273817314:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_393273817314%3Amatrix.theocloud.dev","duration":2.526472,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:13.023388162Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:13.037761339Z","message":"d8ac588514e182084a03aec2"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:13.038528276Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","time":"2026-03-06T19:24:13.03866363Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6512,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-197731905720552:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":77.570175,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iagMrDmHqhpMisgHlhpvKrII","com.beeper.exclude_from_timeline":true,"displayname":"+4917670764502 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:13.101960084Z","message":"Request completed"} +{"level":"debug","transaction_id":"2736","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.116649925Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2736","time":"2026-03-06T19:24:13.116934741Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","req_id":6513,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":42.513579,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1627530 bytes>","time":"2026-03-06T19:24:13.136641208Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6514,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-197731905720552:matrix.theocloud.dev?user_id=%40whatsapp_lid-197731905720552%3Amatrix.theocloud.dev","duration":71.246242,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iagMrDmHqhpMisgHlhpvKrII","com.beeper.exclude_from_timeline":true,"displayname":"+4917670764502 (WA)","membership":"join"},"time":"2026-03-06T19:24:13.173927098Z","message":"Request completed"} +{"level":"debug","transaction_id":"2737","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.199703062Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2737","time":"2026-03-06T19:24:13.199976913Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","req_id":6515,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825053137135691_21?ts=1772825053000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":68.646157,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1627530,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1627530,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/owWNfTuAGYFCMDYavwZAwtCE"},"m.relates_to":{"event_id":"$pu4HHMZdkakx54HaYwnru5UDsbDE5dfKbgVo9fqNnkA","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/owWNfTuAGYFCMDYavwZAwtCE"},"time":"2026-03-06T19:24:13.206127707Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":10,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","event_id":"$8U2qtWdEWJ5gLm_m4hKFR0P_o63944AHD5NumQXkkpk","part_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","time":"2026-03-06T19:24:13.206378231Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2738","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.225559065Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2738","time":"2026-03-06T19:24:13.225716Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6516,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-177803660156957:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":124.453919,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LgGHEriuKzTdbiwmIeibKsuW","com.beeper.exclude_from_timeline":true,"displayname":"+4915751234074 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:13.29986272Z","message":"Request completed"} +{"level":"debug","transaction_id":"2739","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.326696723Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2739","time":"2026-03-06T19:24:13.327027147Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2740","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.343441951Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2740","time":"2026-03-06T19:24:13.34377405Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","portal_mxid":"!KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$phlV1GbR-QmJMDMOyfqWqsldCWwqKsoUTpep4Efn8J8","event_type":"m.room.member","event_id":"$phlV1GbR-QmJMDMOyfqWqsldCWwqKsoUTpep4Efn8J8","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:13.344277752Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6517,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-177803660156957:matrix.theocloud.dev?user_id=%40whatsapp_lid-177803660156957%3Amatrix.theocloud.dev","duration":131.693622,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LgGHEriuKzTdbiwmIeibKsuW","com.beeper.exclude_from_timeline":true,"displayname":"+4915751234074 (WA)","membership":"join"},"time":"2026-03-06T19:24:13.432222567Z","message":"Request completed"} +{"level":"debug","transaction_id":"2741","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.454627947Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2741","time":"2026-03-06T19:24:13.454960745Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2742","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:13.540812319Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2742","time":"2026-03-06T19:24:13.54094474Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6518,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-232878009012475:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":130.87193,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NzntjkmaJiHVVWeTwBFxukpG","com.beeper.exclude_from_timeline":true,"displayname":"+4917661047280 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:13.564224334Z","message":"Request completed"} +{"level":"debug","transaction_id":"2743","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.582131247Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2743","time":"2026-03-06T19:24:13.582474311Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6519,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-232878009012475:matrix.theocloud.dev?user_id=%40whatsapp_lid-232878009012475%3Amatrix.theocloud.dev","duration":62.010868,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NzntjkmaJiHVVWeTwBFxukpG","com.beeper.exclude_from_timeline":true,"displayname":"+4917661047280 (WA)","membership":"join"},"time":"2026-03-06T19:24:13.626964285Z","message":"Request completed"} +{"level":"debug","transaction_id":"2744","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.641517584Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2744","time":"2026-03-06T19:24:13.641831036Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6520,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-19460647870473:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.517788,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AQSGZhmBhAXoMQHinFfOGWiE","com.beeper.exclude_from_timeline":true,"displayname":"Yating (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:13.69854989Z","message":"Request completed"} +{"level":"debug","transaction_id":"2745","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.713819282Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2745","time":"2026-03-06T19:24:13.714175896Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6521,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-19460647870473:matrix.theocloud.dev?user_id=%40whatsapp_lid-19460647870473%3Amatrix.theocloud.dev","duration":77.343327,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/AQSGZhmBhAXoMQHinFfOGWiE","com.beeper.exclude_from_timeline":true,"displayname":"Yating (WA)","membership":"join"},"time":"2026-03-06T19:24:13.77664444Z","message":"Request completed"} +{"level":"debug","transaction_id":"2746","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.795624059Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2746","time":"2026-03-06T19:24:13.795948965Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6522,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-170402944921672:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":95.612721,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OPtpwVMKLbqVkJSrWYiBPROw","com.beeper.exclude_from_timeline":true,"displayname":"Marco (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:13.873088493Z","message":"Request completed"} +{"level":"debug","transaction_id":"2747","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.890794679Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2747","time":"2026-03-06T19:24:13.891089902Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6523,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-170402944921672:matrix.theocloud.dev?user_id=%40whatsapp_lid-170402944921672%3Amatrix.theocloud.dev","duration":56.551652,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OPtpwVMKLbqVkJSrWYiBPROw","com.beeper.exclude_from_timeline":true,"displayname":"Marco (WA)","membership":"join"},"time":"2026-03-06T19:24:13.9304082Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:13.931250357Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6524,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917661608163%3Amatrix.theocloud.dev","duration":6.883019,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917661608163","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:13.938460726Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6525,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661608163:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917661608163%3Amatrix.theocloud.dev","duration":5.676774,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:13.944545379Z","message":"Request completed"} +{"level":"debug","transaction_id":"2748","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:13.94759476Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2748","time":"2026-03-06T19:24:13.947917431Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6526,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661608163:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917661608163%3Amatrix.theocloud.dev","duration":9.833991,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917661608163 (WA)"},"time":"2026-03-06T19:24:13.954562358Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:13.95534941Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:14.051034627Z","message":"06d00cb29f8dd160ae1ca8f3"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:14.051844028Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":11,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","time":"2026-03-06T19:24:14.051952702Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":11,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","req_id":6527,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":19.417529,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<578161 bytes>","time":"2026-03-06T19:24:14.097119028Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:14.114691466Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6529,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661608163:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917661608163%3Amatrix.theocloud.dev","duration":6.845863,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:14.121910147Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":11,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","req_id":6528,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825054097624126_2?ts=1772825054000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":86.49105,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":3000,"h":848,"mimetype":"video/mp4","size":578161,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":3000,"h":848,"mimetype":"video/mp4","size":578161,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/LwKuDFzVFWDHFdBlCuPQYhZp"},"m.relates_to":{"event_id":"$sgL3YC2VF_OveaiMbixWT-6GQ35j_kSpjhhQ17nC8YQ","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/LwKuDFzVFWDHFdBlCuPQYhZp"},"time":"2026-03-06T19:24:14.184497841Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":11,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","event_id":"$q8WtduJRjTPSidoRu3Xc1LQB1bmIe57I3k6teSZKE-k","part_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","time":"2026-03-06T19:24:14.184748226Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2749","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:14.200446169Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2749","time":"2026-03-06T19:24:14.200564272Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6530,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80358888464591:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":114.055603,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QCXIwVHDANbLEfrPboJQeaoY","com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:14.237055567Z","message":"Request completed"} +{"level":"debug","transaction_id":"2750","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:14.253403462Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2750","time":"2026-03-06T19:24:14.253749111Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6531,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-80358888464591:matrix.theocloud.dev?user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":75.468273,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/QCXIwVHDANbLEfrPboJQeaoY","com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","membership":"join"},"time":"2026-03-06T19:24:14.313328143Z","message":"Request completed"} +{"level":"debug","transaction_id":"2751","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:14.333356862Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2751","time":"2026-03-06T19:24:14.333692943Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6532,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220538484043940:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":82.411845,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UDgNXJkTzFRtrSHexhqovmzd","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Bakdad (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:14.396780917Z","message":"Request completed"} +{"level":"debug","transaction_id":"2752","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:14.410548771Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2752","time":"2026-03-06T19:24:14.410852515Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6533,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-220538484043940:matrix.theocloud.dev?user_id=%40whatsapp_lid-220538484043940%3Amatrix.theocloud.dev","duration":59.116048,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/UDgNXJkTzFRtrSHexhqovmzd","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Bakdad (WA)","membership":"join"},"time":"2026-03-06T19:24:14.456725224Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:14.457609846Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6534,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491727367070%3Amatrix.theocloud.dev","duration":5.862066,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491727367070","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:14.463769649Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6535,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491727367070:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491727367070%3Amatrix.theocloud.dev","duration":4.796972,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:14.468944886Z","message":"Request completed"} +{"level":"debug","transaction_id":"2753","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:14.471361915Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2753","time":"2026-03-06T19:24:14.471662516Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6536,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491727367070:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491727367070%3Amatrix.theocloud.dev","duration":8.735793,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491727367070 (WA)"},"time":"2026-03-06T19:24:14.477882663Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:14.478728662Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:14.628441084Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6537,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491727367070:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491727367070%3Amatrix.theocloud.dev","duration":2.616429,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:14.631405187Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:14.632126448Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6538,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917695853477%3Amatrix.theocloud.dev","duration":9.516978,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917695853477","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:14.641915461Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6539,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695853477:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917695853477%3Amatrix.theocloud.dev","duration":1.963613,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:14.644218368Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6540,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695853477:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917695853477%3Amatrix.theocloud.dev","duration":6.174121,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917695853477 (WA)"},"time":"2026-03-06T19:24:14.650605438Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:14.651413931Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:14.80394763Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6541,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917695853477:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917695853477%3Amatrix.theocloud.dev","duration":2.172162,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:14.806453149Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6542,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-274010575245356:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.974003,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LSzszKTpZPgXUivtQKJhwaUu","com.beeper.exclude_from_timeline":true,"displayname":"yousef (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:14.886501465Z","message":"Request completed"} +{"level":"debug","transaction_id":"2754","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:14.903716381Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2754","time":"2026-03-06T19:24:14.904065033Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6543,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-274010575245356:matrix.theocloud.dev?user_id=%40whatsapp_lid-274010575245356%3Amatrix.theocloud.dev","duration":76.831453,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LSzszKTpZPgXUivtQKJhwaUu","com.beeper.exclude_from_timeline":true,"displayname":"yousef (WA)","membership":"join"},"time":"2026-03-06T19:24:14.964100973Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:14.965121787Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6544,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491718967464%3Amatrix.theocloud.dev","duration":10.500775,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491718967464","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:14.975935525Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6545,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491718967464:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491718967464%3Amatrix.theocloud.dev","duration":5.42674,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:14.981655811Z","message":"Request completed"} +{"level":"debug","transaction_id":"2755","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:14.985694925Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2755","time":"2026-03-06T19:24:14.985913322Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6546,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491718967464:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491718967464%3Amatrix.theocloud.dev","duration":10.277699,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Junior (WA)"},"time":"2026-03-06T19:24:14.992129558Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:14.992662523Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:15.169282843Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6547,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491718967464:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491718967464%3Amatrix.theocloud.dev","duration":2.586745,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:15.172251695Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6548,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-146415502245916:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.115425,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"🥳 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:15.240445624Z","message":"Request completed"} +{"level":"debug","transaction_id":"2756","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.2566956Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2756","time":"2026-03-06T19:24:15.257065414Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6549,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-146415502245916:matrix.theocloud.dev?user_id=%40whatsapp_lid-146415502245916%3Amatrix.theocloud.dev","duration":75.575761,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"🥳 (WA)","membership":"join"},"time":"2026-03-06T19:24:15.316694663Z","message":"Request completed"} +{"level":"debug","transaction_id":"2757","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.3351175Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2757","time":"2026-03-06T19:24:15.335526985Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6550,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-264544232407203:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.074854,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iHftjmntHIOnjnfAsgdWVTvG","com.beeper.exclude_from_timeline":true,"displayname":"Linus Grabenhenrich (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:15.395837125Z","message":"Request completed"} +{"level":"debug","transaction_id":"2758","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.414513699Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2758","time":"2026-03-06T19:24:15.414854319Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6551,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-264544232407203:matrix.theocloud.dev?user_id=%40whatsapp_lid-264544232407203%3Amatrix.theocloud.dev","duration":79.275512,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iHftjmntHIOnjnfAsgdWVTvG","com.beeper.exclude_from_timeline":true,"displayname":"Linus Grabenhenrich (WA)","membership":"join"},"time":"2026-03-06T19:24:15.475687369Z","message":"Request completed"} +{"level":"debug","transaction_id":"2759","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.489715944Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2759","time":"2026-03-06T19:24:15.490108666Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6552,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195562762690743:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.092241,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Daniel Gleissenberg (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:15.548844214Z","message":"Request completed"} +{"level":"debug","transaction_id":"2760","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.562311956Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2760","time":"2026-03-06T19:24:15.562630088Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6553,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-195562762690743:matrix.theocloud.dev?user_id=%40whatsapp_lid-195562762690743%3Amatrix.theocloud.dev","duration":52.312858,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Daniel Gleissenberg (WA)","membership":"join"},"time":"2026-03-06T19:24:15.601889438Z","message":"Request completed"} +{"level":"debug","transaction_id":"2761","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.61286123Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2761","time":"2026-03-06T19:24:15.613921574Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6554,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-239839731523825:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":55.791839,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+573123344836 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:15.661821732Z","message":"Request completed"} +{"level":"debug","transaction_id":"2762","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.678804912Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2762","time":"2026-03-06T19:24:15.679112707Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6555,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-239839731523825:matrix.theocloud.dev?user_id=%40whatsapp_lid-239839731523825%3Amatrix.theocloud.dev","duration":80.29863,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+573123344836 (WA)","membership":"join"},"time":"2026-03-06T19:24:15.742791476Z","message":"Request completed"} +{"level":"debug","transaction_id":"2763","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.756397157Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2763","time":"2026-03-06T19:24:15.756707745Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6556,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-219241135489206:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":77.516605,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Seyyid (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:15.821350267Z","message":"Request completed"} +{"level":"debug","transaction_id":"2764","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.839937234Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2764","time":"2026-03-06T19:24:15.840229174Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6557,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-219241135489206:matrix.theocloud.dev?user_id=%40whatsapp_lid-219241135489206%3Amatrix.theocloud.dev","duration":80.85667,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Seyyid (WA)","membership":"join"},"time":"2026-03-06T19:24:15.902864222Z","message":"Request completed"} +{"level":"debug","transaction_id":"2765","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:15.919678244Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2765","time":"2026-03-06T19:24:15.919977448Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6558,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-15985952219342:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":82.243526,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iLcAYsdLUclRhniOCaLyZhkX","com.beeper.exclude_from_timeline":true,"displayname":"Adri (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:15.986093151Z","message":"Request completed"} +{"level":"debug","transaction_id":"2766","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:16.010367648Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2766","time":"2026-03-06T19:24:16.010708268Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6559,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-15985952219342:matrix.theocloud.dev?user_id=%40whatsapp_lid-15985952219342%3Amatrix.theocloud.dev","duration":89.235848,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/iLcAYsdLUclRhniOCaLyZhkX","com.beeper.exclude_from_timeline":true,"displayname":"Adri (WA)","membership":"join"},"time":"2026-03-06T19:24:16.076298549Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:16.077045232Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6560,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915751812665%3Amatrix.theocloud.dev","duration":6.821628,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915751812665","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:16.084134565Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6561,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751812665:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915751812665%3Amatrix.theocloud.dev","duration":5.438123,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:16.089976516Z","message":"Request completed"} +{"level":"debug","transaction_id":"2767","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:16.092951934Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2767","time":"2026-03-06T19:24:16.093247925Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6562,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751812665:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915751812665%3Amatrix.theocloud.dev","duration":10.241731,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Adri (WA)"},"time":"2026-03-06T19:24:16.100421348Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:16.101355208Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:16.250050379Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6563,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915751812665:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915751812665%3Amatrix.theocloud.dev","duration":2.548402,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:16.253014761Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6564,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21079833710744:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":80.86966,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VnmYzoNKYWXdotaucesMOFXO","com.beeper.exclude_from_timeline":true,"displayname":"Burak C. (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:16.334849222Z","message":"Request completed"} +{"level":"debug","transaction_id":"2768","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:16.361847145Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2768","time":"2026-03-06T19:24:16.362174844Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6565,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21079833710744:matrix.theocloud.dev?user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":154.537402,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VnmYzoNKYWXdotaucesMOFXO","com.beeper.exclude_from_timeline":true,"displayname":"Burak C. (WA)","membership":"join"},"time":"2026-03-06T19:24:16.490154049Z","message":"Request completed"} +{"level":"debug","transaction_id":"2769","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:16.49245954Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2769","time":"2026-03-06T19:24:16.492666972Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","portal_mxid":"!PchXjQjXcAUVmlVcIq:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$TloQQsaYPUkSvgAyt5YIgafq4PvNQP5u54-BFQrVfN4","event_type":"m.room.member","event_id":"$TloQQsaYPUkSvgAyt5YIgafq4PvNQP5u54-BFQrVfN4","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:16.493162013Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"2770","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:16.510114183Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2770","time":"2026-03-06T19:24:16.510426028Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6566,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-112798826770575:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":75.4872,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jWAgxYDjikATfKSDigCcIWQW","com.beeper.exclude_from_timeline":true,"displayname":"+4917643655863 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:16.566562678Z","message":"Request completed"} +{"level":"debug","transaction_id":"2771","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:16.587194275Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2771","time":"2026-03-06T19:24:16.587530844Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6567,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-112798826770575:matrix.theocloud.dev?user_id=%40whatsapp_lid-112798826770575%3Amatrix.theocloud.dev","duration":69.623808,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jWAgxYDjikATfKSDigCcIWQW","com.beeper.exclude_from_timeline":true,"displayname":"+4917643655863 (WA)","membership":"join"},"time":"2026-03-06T19:24:16.636756747Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:16.637576346Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6568,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_33783410767%3Amatrix.theocloud.dev","duration":5.398453,"status_code":200,"response_length":93,"response_mime":"application/json","req_body":{"username":"whatsapp_33783410767","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:16.643261711Z","message":"Request completed"} +{"level":"debug","transaction_id":"2772","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:16.647060638Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2772","time":"2026-03-06T19:24:16.647417112Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6569,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33783410767:matrix.theocloud.dev/displayname?user_id=%40whatsapp_33783410767%3Amatrix.theocloud.dev","duration":5.824491,"status_code":200,"response_length":38,"response_mime":"application/json","time":"2026-03-06T19:24:16.649494848Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6570,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33783410767:matrix.theocloud.dev/displayname?user_id=%40whatsapp_33783410767%3Amatrix.theocloud.dev","duration":27.614909,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+33783410767 (WA)"},"time":"2026-03-06T19:24:16.677293442Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:16.678019033Z","message":""} +{"level":"debug","transaction_id":"2773","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:16.679020011Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2773","time":"2026-03-06T19:24:16.679104101Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:16.837959218Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6571,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_33783410767:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_33783410767%3Amatrix.theocloud.dev","duration":2.64262,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:16.840918921Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6572,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-190219840168190:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.842546,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WrSjcFeZmOzQQVcltXsSxeuB","com.beeper.exclude_from_timeline":true,"displayname":"Tobi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:16.900782001Z","message":"Request completed"} +{"level":"debug","transaction_id":"2774","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:16.921006837Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2774","time":"2026-03-06T19:24:16.921306111Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6573,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-190219840168190:matrix.theocloud.dev?user_id=%40whatsapp_lid-190219840168190%3Amatrix.theocloud.dev","duration":83.897948,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WrSjcFeZmOzQQVcltXsSxeuB","com.beeper.exclude_from_timeline":true,"displayname":"Tobi (WA)","membership":"join"},"time":"2026-03-06T19:24:16.985505554Z","message":"Request completed"} +{"level":"debug","transaction_id":"2775","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.013131638Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2775","time":"2026-03-06T19:24:17.013445998Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6574,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38504566390811:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":81.71042,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wwYmacyEqsOYwkZsEJSbjqKM","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Al koudsi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:17.06840846Z","message":"Request completed"} +{"level":"debug","transaction_id":"2776","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.07490623Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2776","time":"2026-03-06T19:24:17.075134754Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6575,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38504566390811:matrix.theocloud.dev?user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":52.443324,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wwYmacyEqsOYwkZsEJSbjqKM","com.beeper.exclude_from_timeline":true,"displayname":"Ahmad Al koudsi (WA)","membership":"join"},"time":"2026-03-06T19:24:17.121503133Z","message":"Request completed"} +{"level":"debug","transaction_id":"2777","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.145078159Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2777","time":"2026-03-06T19:24:17.145441059Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6576,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-165566878843022:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.959401,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Anna vdM (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:17.194609902Z","message":"Request completed"} +{"level":"debug","transaction_id":"2778","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.21191226Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2778","time":"2026-03-06T19:24:17.212243452Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6577,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-165566878843022:matrix.theocloud.dev?user_id=%40whatsapp_lid-165566878843022%3Amatrix.theocloud.dev","duration":88.272236,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Anna vdM (WA)","membership":"join"},"time":"2026-03-06T19:24:17.283540469Z","message":"Request completed"} +{"level":"debug","transaction_id":"2779","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.299654882Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2779","time":"2026-03-06T19:24:17.299948638Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6578,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127505180680381:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":75.107329,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TmwMKWAePfUzkYDsWXddFsMS","com.beeper.exclude_from_timeline":true,"displayname":"Margarita Pantzali (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:17.359746207Z","message":"Request completed"} +{"level":"debug","transaction_id":"2780","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.372665548Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2780","time":"2026-03-06T19:24:17.3730318Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6579,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127505180680381:matrix.theocloud.dev?user_id=%40whatsapp_lid-127505180680381%3Amatrix.theocloud.dev","duration":64.168922,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/TmwMKWAePfUzkYDsWXddFsMS","com.beeper.exclude_from_timeline":true,"displayname":"Margarita Pantzali (WA)","membership":"join"},"time":"2026-03-06T19:24:17.424753584Z","message":"Request completed"} +{"level":"debug","transaction_id":"2781","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.441030659Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2781","time":"2026-03-06T19:24:17.441314498Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6580,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-172988750102720:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.6685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KAEUAtBAxjRWKWwzruAphSmY","com.beeper.exclude_from_timeline":true,"displayname":"Andrey (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:17.485477121Z","message":"Request completed"} +{"level":"debug","transaction_id":"2782","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.499459111Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2782","time":"2026-03-06T19:24:17.499812583Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6581,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-172988750102720:matrix.theocloud.dev?user_id=%40whatsapp_lid-172988750102720%3Amatrix.theocloud.dev","duration":57.00367,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KAEUAtBAxjRWKWwzruAphSmY","com.beeper.exclude_from_timeline":true,"displayname":"Andrey (WA)","membership":"join"},"time":"2026-03-06T19:24:17.543252618Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:17.544224332Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6582,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915214142659%3Amatrix.theocloud.dev","duration":5.9354,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915214142659","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:17.550481775Z","message":"Request completed"} +{"level":"debug","transaction_id":"2783","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.554860183Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2783","time":"2026-03-06T19:24:17.555119716Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6583,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915214142659:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915214142659%3Amatrix.theocloud.dev","duration":6.407533,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:17.557325193Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6584,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915214142659:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915214142659%3Amatrix.theocloud.dev","duration":6.569777,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Balou (WA)"},"time":"2026-03-06T19:24:17.564046318Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:17.564621888Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:17.720031688Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6585,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915214142659:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915214142659%3Amatrix.theocloud.dev","duration":2.787402,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:17.723129539Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6586,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-232237605900456:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.778432,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DQwjhcGHiXwPkgUghDxSUdzv","com.beeper.exclude_from_timeline":true,"displayname":"+4915120791916 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:17.783916073Z","message":"Request completed"} +{"level":"debug","transaction_id":"2784","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.796566243Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2784","time":"2026-03-06T19:24:17.796838837Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6587,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-232237605900456:matrix.theocloud.dev?user_id=%40whatsapp_lid-232237605900456%3Amatrix.theocloud.dev","duration":60.796451,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/DQwjhcGHiXwPkgUghDxSUdzv","com.beeper.exclude_from_timeline":true,"displayname":"+4915120791916 (WA)","membership":"join"},"time":"2026-03-06T19:24:17.845491126Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:17.846628785Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6588,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917634423387%3Amatrix.theocloud.dev","duration":11.734399,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917634423387","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:17.858690604Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6589,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634423387:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634423387%3Amatrix.theocloud.dev","duration":5.877292,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:17.864955589Z","message":"Request completed"} +{"level":"debug","transaction_id":"2785","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:17.867289437Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2785","time":"2026-03-06T19:24:17.867526691Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6590,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634423387:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634423387%3Amatrix.theocloud.dev","duration":7.582349,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Johannes (WA)"},"time":"2026-03-06T19:24:17.872737687Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:17.873406566Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:18.021520719Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6591,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634423387:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917634423387%3Amatrix.theocloud.dev","duration":2.362134,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:18.024257766Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6592,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-54739391742165:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":55.431104,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZeleidfvltubiOwieBqQPyiZ","com.beeper.exclude_from_timeline":true,"displayname":"+491775603928 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:18.080760947Z","message":"Request completed"} +{"level":"debug","transaction_id":"2786","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:18.092840436Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2786","time":"2026-03-06T19:24:18.093165761Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6593,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-54739391742165:matrix.theocloud.dev?user_id=%40whatsapp_lid-54739391742165%3Amatrix.theocloud.dev","duration":62.226051,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ZeleidfvltubiOwieBqQPyiZ","com.beeper.exclude_from_timeline":true,"displayname":"+491775603928 (WA)","membership":"join"},"time":"2026-03-06T19:24:18.143865823Z","message":"Request completed"} +{"level":"debug","transaction_id":"2787","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:18.163093312Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2787","time":"2026-03-06T19:24:18.163418707Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6594,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-276334119006314:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.059623,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jonny Philippos (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:18.215063665Z","message":"Request completed"} +{"level":"debug","transaction_id":"2788","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:18.233494464Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2788","time":"2026-03-06T19:24:18.233860228Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6595,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-276334119006314:matrix.theocloud.dev?user_id=%40whatsapp_lid-276334119006314%3Amatrix.theocloud.dev","duration":70.2072,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jonny Philippos (WA)","membership":"join"},"time":"2026-03-06T19:24:18.286028653Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:18.28704779Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6596,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491739478270%3Amatrix.theocloud.dev","duration":11.088987,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491739478270","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:18.298500375Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6597,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739478270:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739478270%3Amatrix.theocloud.dev","duration":5.305354,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:18.304222337Z","message":"Request completed"} +{"level":"debug","transaction_id":"2789","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:18.306183437Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2789","time":"2026-03-06T19:24:18.306514Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6598,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739478270:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739478270%3Amatrix.theocloud.dev","duration":6.700382,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Sonja Eigenbrod (WA)"},"time":"2026-03-06T19:24:18.311141465Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:18.311651453Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:18.59994813Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6599,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739478270:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491739478270%3Amatrix.theocloud.dev","duration":2.384064,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:18.60267002Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:18.60347984Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6600,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917679096203%3Amatrix.theocloud.dev","duration":3.517742,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917679096203","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:18.607269129Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6601,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917679096203:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917679096203%3Amatrix.theocloud.dev","duration":2.180683,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:18.609844071Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6602,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917679096203:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917679096203%3Amatrix.theocloud.dev","duration":6.545542,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917679096203 (WA)"},"time":"2026-03-06T19:24:18.616584822Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:18.617472796Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:18.62675266Z","message":"b61c0f159dbca3c40d9d3ea2"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:18.627416859Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":12,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","time":"2026-03-06T19:24:18.627546556Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:18.778367025Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6603,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917679096203:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917679096203%3Amatrix.theocloud.dev","duration":2.494624,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:18.781254791Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6604,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-129064018960516:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.718306,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mahmoud (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:18.854067663Z","message":"Request completed"} +{"level":"debug","transaction_id":"2790","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:18.887958104Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2790","time":"2026-03-06T19:24:18.888270508Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6605,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-129064018960516:matrix.theocloud.dev?user_id=%40whatsapp_lid-129064018960516%3Amatrix.theocloud.dev","duration":115.730419,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mahmoud (WA)","membership":"join"},"time":"2026-03-06T19:24:18.970620963Z","message":"Request completed"} +{"level":"debug","transaction_id":"2791","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:18.987607285Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2791","time":"2026-03-06T19:24:18.987838882Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6606,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-194820068913233:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":79.969393,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PJyVzOlntKKtpBUixEuIuXtv","com.beeper.exclude_from_timeline":true,"displayname":"Shaimn (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:19.051559976Z","message":"Request completed"} +{"level":"debug","transaction_id":"2792","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:19.064554956Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2792","time":"2026-03-06T19:24:19.065222298Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6607,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-194820068913233:matrix.theocloud.dev?user_id=%40whatsapp_lid-194820068913233%3Amatrix.theocloud.dev","duration":54.559264,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/PJyVzOlntKKtpBUixEuIuXtv","com.beeper.exclude_from_timeline":true,"displayname":"Shaimn (WA)","membership":"join"},"time":"2026-03-06T19:24:19.106837776Z","message":"Request completed"} +{"level":"debug","transaction_id":"2793","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:19.122377108Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2793","time":"2026-03-06T19:24:19.12270802Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6608,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-177811813859547:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":68.078619,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Junior (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:19.176018994Z","message":"Request completed"} +{"level":"debug","transaction_id":"2794","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:19.191307382Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2794","time":"2026-03-06T19:24:19.19163166Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6610,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-177811813859547:matrix.theocloud.dev?user_id=%40whatsapp_lid-177811813859547%3Amatrix.theocloud.dev","duration":70.014854,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Junior (WA)","membership":"join"},"time":"2026-03-06T19:24:19.246747635Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:19.247449689Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6611,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915789414260%3Amatrix.theocloud.dev","duration":7.859622,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915789414260","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:19.255539651Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6612,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915789414260:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915789414260%3Amatrix.theocloud.dev","duration":3.8372,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:19.259781727Z","message":"Request completed"} +{"level":"debug","transaction_id":"2795","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:19.262483782Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2795","time":"2026-03-06T19:24:19.262695055Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6613,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915789414260:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915789414260%3Amatrix.theocloud.dev","duration":8.089892,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915789414260 (WA)"},"time":"2026-03-06T19:24:19.268035679Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:19.268762108Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":12,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","req_id":6609,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":192.405146,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<16606791 bytes>","time":"2026-03-06T19:24:19.317194883Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":12,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","req_id":6614,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825059326427533_4?ts=1772825058000&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":36.15277,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Das Wort zum Ende des Jahres 🙌🏻","filename":"video.mp4","info":{"duration":99000,"h":848,"mimetype":"video/mp4","size":16606791,"w":480},"m.mentions":{},"m.new_content":{"body":"Das Wort zum Ende des Jahres 🙌🏻","filename":"video.mp4","info":{"duration":99000,"h":848,"mimetype":"video/mp4","size":16606791,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/XkIQHuvNJdyKLjvEMBzdpTfI"},"m.relates_to":{"event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/XkIQHuvNJdyKLjvEMBzdpTfI"},"time":"2026-03-06T19:24:19.362913869Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":12,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","event_id":"$vuXDGpibnH6UuxsDBNw3PeEXkjxATD53K7QVvvIVveY","part_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","time":"2026-03-06T19:24:19.36309043Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"2796","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:19.371042454Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2796","time":"2026-03-06T19:24:19.371197783Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:19.435287295Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6615,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915789414260:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915789414260%3Amatrix.theocloud.dev","duration":109.202197,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:19.544908895Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:19.54582739Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6616,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917634409352%3Amatrix.theocloud.dev","duration":2.998396,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917634409352","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:19.549106342Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6617,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634409352:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634409352%3Amatrix.theocloud.dev","duration":3.220284,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:19.553017924Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6618,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634409352:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917634409352%3Amatrix.theocloud.dev","duration":5.617339,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917634409352 (WA)"},"time":"2026-03-06T19:24:19.558871958Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:19.55944655Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:19.716612113Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6619,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917634409352:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917634409352%3Amatrix.theocloud.dev","duration":2.362413,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:19.719383242Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6620,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-217626664026259:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":56.63637,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491774226359 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:19.776909961Z","message":"Request completed"} +{"level":"debug","transaction_id":"2797","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:19.796642828Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2797","time":"2026-03-06T19:24:19.796958655Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6621,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-217626664026259:matrix.theocloud.dev?user_id=%40whatsapp_lid-217626664026259%3Amatrix.theocloud.dev","duration":72.364835,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491774226359 (WA)","membership":"join"},"time":"2026-03-06T19:24:19.850089855Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:19.851153971Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6622,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491755557540%3Amatrix.theocloud.dev","duration":19.860888,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491755557540","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:19.871415334Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6623,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491755557540:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491755557540%3Amatrix.theocloud.dev","duration":5.827285,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:19.877673475Z","message":"Request completed"} +{"level":"debug","transaction_id":"2798","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:19.879910171Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2798","time":"2026-03-06T19:24:19.880234798Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6624,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491755557540:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491755557540%3Amatrix.theocloud.dev","duration":9.770994,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491755557540 (WA)"},"time":"2026-03-06T19:24:19.887692548Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:19.888570395Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:20.056276893Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6625,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491755557540:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491755557540%3Amatrix.theocloud.dev","duration":2.819949,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:20.059522251Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:20.060398002Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6626,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491757493106%3Amatrix.theocloud.dev","duration":3.783701,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491757493106","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:20.06448412Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6627,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491757493106:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491757493106%3Amatrix.theocloud.dev","duration":2.194512,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:20.067031964Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6628,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491757493106:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491757493106%3Amatrix.theocloud.dev","duration":6.565097,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491757493106 (WA)"},"time":"2026-03-06T19:24:20.073776835Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:20.074617107Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:20.231741603Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6629,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491757493106:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491757493106%3Amatrix.theocloud.dev","duration":2.569285,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:20.234669877Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:20.235546047Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6630,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917672815004%3Amatrix.theocloud.dev","duration":3.654912,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917672815004","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:20.239472297Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6631,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672815004:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917672815004%3Amatrix.theocloud.dev","duration":2.232925,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:20.242070986Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6632,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672815004:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917672815004%3Amatrix.theocloud.dev","duration":6.223569,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917672815004 (WA)"},"time":"2026-03-06T19:24:20.248463852Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:20.24930133Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:20.404233479Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6633,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672815004:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917672815004%3Amatrix.theocloud.dev","duration":2.005588,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:20.406529681Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:20.407402499Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6634,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917661047280%3Amatrix.theocloud.dev","duration":2.561253,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917661047280","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:20.410229851Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6635,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661047280:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917661047280%3Amatrix.theocloud.dev","duration":1.406343,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:20.41185508Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6636,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661047280:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917661047280%3Amatrix.theocloud.dev","duration":4.959495,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917661047280 (WA)"},"time":"2026-03-06T19:24:20.416951884Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:20.417773089Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:20.584306447Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6637,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917661047280:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917661047280%3Amatrix.theocloud.dev","duration":2.599736,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:20.587302748Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6638,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-245101485920469:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.635537,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+380963593256 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:20.651941987Z","message":"Request completed"} +{"level":"debug","transaction_id":"2799","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:20.669306785Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2799","time":"2026-03-06T19:24:20.669687355Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6639,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-245101485920469:matrix.theocloud.dev?user_id=%40whatsapp_lid-245101485920469%3Amatrix.theocloud.dev","duration":71.777462,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+380963593256 (WA)","membership":"join"},"time":"2026-03-06T19:24:20.724568242Z","message":"Request completed"} +{"level":"debug","transaction_id":"2800","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:20.742763882Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2800","time":"2026-03-06T19:24:20.743148224Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6640,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-54975749202069:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":68.993272,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jnnPELKejCzCqucCZGnhsglN","com.beeper.exclude_from_timeline":true,"displayname":". (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:20.794791785Z","message":"Request completed"} +{"level":"debug","transaction_id":"2801","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:20.807225024Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2801","time":"2026-03-06T19:24:20.807552165Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6641,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-54975749202069:matrix.theocloud.dev?user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":67.750291,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/jnnPELKejCzCqucCZGnhsglN","com.beeper.exclude_from_timeline":true,"displayname":". (WA)","membership":"join"},"time":"2026-03-06T19:24:20.863216681Z","message":"Request completed"} +{"level":"debug","transaction_id":"2802","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:20.879303226Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2802","time":"2026-03-06T19:24:20.879687498Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6642,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-243705789296680:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":68.614308,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wEvgswXxqMzXVjAzbSYdoWIA","com.beeper.exclude_from_timeline":true,"displayname":"Vicente (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:20.932842235Z","message":"Request completed"} +{"level":"debug","transaction_id":"2803","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:20.95184567Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2803","time":"2026-03-06T19:24:20.952168621Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6643,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-243705789296680:matrix.theocloud.dev?user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":75.124998,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wEvgswXxqMzXVjAzbSYdoWIA","com.beeper.exclude_from_timeline":true,"displayname":"Vicente (WA)","membership":"join"},"time":"2026-03-06T19:24:21.008631713Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:21.009490003Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6644,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491739423344%3Amatrix.theocloud.dev","duration":12.634175,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491739423344","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:21.022410392Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6645,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739423344:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739423344%3Amatrix.theocloud.dev","duration":3.96131,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:21.026657566Z","message":"Request completed"} +{"level":"debug","transaction_id":"2804","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:21.0298958Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2804","time":"2026-03-06T19:24:21.030175029Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6646,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739423344:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491739423344%3Amatrix.theocloud.dev","duration":8.925484,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491739423344 (WA)"},"time":"2026-03-06T19:24:21.035769949Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:21.036283778Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:21.35077184Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6647,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491739423344:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491739423344%3Amatrix.theocloud.dev","duration":2.613844,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:21.353730216Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:21.354490518Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6648,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491771848907%3Amatrix.theocloud.dev","duration":3.558879,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491771848907","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:21.358314239Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6649,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491771848907:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491771848907%3Amatrix.theocloud.dev","duration":2.00091,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:21.360698023Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6650,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491771848907:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491771848907%3Amatrix.theocloud.dev","duration":6.186064,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491771848907 (WA)"},"time":"2026-03-06T19:24:21.367091309Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:21.367925155Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:21.528528352Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6651,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491771848907:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491771848907%3Amatrix.theocloud.dev","duration":1.897123,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:21.530696114Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6652,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-166829649616999:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":47.517284,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"M (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:21.579007363Z","message":"Request completed"} +{"level":"debug","transaction_id":"2805","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:21.595987121Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2805","time":"2026-03-06T19:24:21.596304135Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6653,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-166829649616999:matrix.theocloud.dev?user_id=%40whatsapp_lid-166829649616999%3Amatrix.theocloud.dev","duration":83.977499,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"M (WA)","membership":"join"},"time":"2026-03-06T19:24:21.663608622Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:21.664551073Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6654,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917623974702%3Amatrix.theocloud.dev","duration":7.98464,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917623974702","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:21.672840784Z","message":"Request completed"} +{"level":"debug","transaction_id":"2806","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:21.6767729Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2806","time":"2026-03-06T19:24:21.677083Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6655,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623974702:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917623974702%3Amatrix.theocloud.dev","duration":5.951324,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:21.679277162Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6656,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623974702:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917623974702%3Amatrix.theocloud.dev","duration":6.937356,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917623974702 (WA)"},"time":"2026-03-06T19:24:21.686467906Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:21.687283104Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:22.041740672Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6657,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917623974702:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917623974702%3Amatrix.theocloud.dev","duration":2.618734,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:22.044710014Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6658,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-186646947455090:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.163891,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qvHvGznCKwXzGsizddKLfEec","com.beeper.exclude_from_timeline":true,"displayname":"Stefan (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:22.106880262Z","message":"Request completed"} +{"level":"debug","transaction_id":"2807","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.124074644Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2807","time":"2026-03-06T19:24:22.124404648Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6659,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-186646947455090:matrix.theocloud.dev?user_id=%40whatsapp_lid-186646947455090%3Amatrix.theocloud.dev","duration":76.585539,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qvHvGznCKwXzGsizddKLfEec","com.beeper.exclude_from_timeline":true,"displayname":"Stefan (WA)","membership":"join"},"time":"2026-03-06T19:24:22.184213182Z","message":"Request completed"} +{"level":"debug","transaction_id":"2808","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.197542078Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2808","time":"2026-03-06T19:24:22.197777236Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6660,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-141378109608075:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":66.716207,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nads (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:22.252128649Z","message":"Request completed"} +{"level":"debug","transaction_id":"2809","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.272026274Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2809","time":"2026-03-06T19:24:22.272385892Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6661,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-141378109608075:matrix.theocloud.dev?user_id=%40whatsapp_lid-141378109608075%3Amatrix.theocloud.dev","duration":65.583575,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nads (WA)","membership":"join"},"time":"2026-03-06T19:24:22.318299319Z","message":"Request completed"} +{"level":"debug","transaction_id":"2810","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.331000124Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2810","time":"2026-03-06T19:24:22.331257981Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6662,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-235862491136132:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":53.608222,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/HqyJjTEctYMpsUyCRKZTEifn","com.beeper.exclude_from_timeline":true,"displayname":"Yasin Demir (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:22.372728815Z","message":"Request completed"} +{"level":"debug","transaction_id":"2811","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.385488637Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2811","time":"2026-03-06T19:24:22.385816965Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6663,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-235862491136132:matrix.theocloud.dev?user_id=%40whatsapp_lid-235862491136132%3Amatrix.theocloud.dev","duration":56.407638,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/HqyJjTEctYMpsUyCRKZTEifn","com.beeper.exclude_from_timeline":true,"displayname":"Yasin Demir (WA)","membership":"join"},"time":"2026-03-06T19:24:22.42982391Z","message":"Request completed"} +{"level":"debug","transaction_id":"2812","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.446088902Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2812","time":"2026-03-06T19:24:22.446349134Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6664,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-201283793350851:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.327673,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917632063161 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:22.495113799Z","message":"Request completed"} +{"level":"debug","transaction_id":"2813","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.504215006Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2813","time":"2026-03-06T19:24:22.504487531Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6665,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-201283793350851:matrix.theocloud.dev?user_id=%40whatsapp_lid-201283793350851%3Amatrix.theocloud.dev","duration":56.591462,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917632063161 (WA)","membership":"join"},"time":"2026-03-06T19:24:22.552299199Z","message":"Request completed"} +{"level":"debug","transaction_id":"2814","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.563292222Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2814","time":"2026-03-06T19:24:22.563531432Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6666,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-119460253987062:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.986072,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917634409352 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:22.612361469Z","message":"Request completed"} +{"level":"debug","transaction_id":"2815","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.627828026Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2815","time":"2026-03-06T19:24:22.628180589Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6667,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-119460253987062:matrix.theocloud.dev?user_id=%40whatsapp_lid-119460253987062%3Amatrix.theocloud.dev","duration":77.216703,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917634409352 (WA)","membership":"join"},"time":"2026-03-06T19:24:22.690261159Z","message":"Request completed"} +{"level":"debug","transaction_id":"2816","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.709216124Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2816","time":"2026-03-06T19:24:22.709555697Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6668,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251826901377165:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.557183,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Johannes (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:22.767818343Z","message":"Request completed"} +{"level":"debug","transaction_id":"2817","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.780565733Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2817","time":"2026-03-06T19:24:22.780860676Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6669,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-251826901377165:matrix.theocloud.dev?user_id=%40whatsapp_lid-251826901377165%3Amatrix.theocloud.dev","duration":53.418601,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Johannes (WA)","membership":"join"},"time":"2026-03-06T19:24:22.821979366Z","message":"Request completed"} +{"level":"debug","transaction_id":"2818","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.834983356Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2818","time":"2026-03-06T19:24:22.835206642Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6670,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-111437372489803:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.6984,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Marielle (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:22.893684821Z","message":"Request completed"} +{"level":"debug","transaction_id":"2819","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.91263776Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2819","time":"2026-03-06T19:24:22.912949047Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6671,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-111437372489803:matrix.theocloud.dev?user_id=%40whatsapp_lid-111437372489803%3Amatrix.theocloud.dev","duration":64.230523,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Marielle (WA)","membership":"join"},"time":"2026-03-06T19:24:22.958451103Z","message":"Request completed"} +{"level":"debug","transaction_id":"2820","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:22.973924993Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2820","time":"2026-03-06T19:24:22.974210787Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6672,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-199450228215815:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":65.947943,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ueHGVqQluxwydpXALcBNjGZi","com.beeper.exclude_from_timeline":true,"displayname":"🏋️Матвей (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:23.025242391Z","message":"Request completed"} +{"level":"debug","transaction_id":"2821","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.038842903Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2821","time":"2026-03-06T19:24:23.03916718Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6673,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-199450228215815:matrix.theocloud.dev?user_id=%40whatsapp_lid-199450228215815%3Amatrix.theocloud.dev","duration":73.213627,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ueHGVqQluxwydpXALcBNjGZi","com.beeper.exclude_from_timeline":true,"displayname":"🏋️Матвей (WA)","membership":"join"},"time":"2026-03-06T19:24:23.099252079Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:23.100064903Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6674,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491631390112%3Amatrix.theocloud.dev","duration":13.280006,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491631390112","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:23.113640481Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6675,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491631390112:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491631390112%3Amatrix.theocloud.dev","duration":7.96264,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:23.12199752Z","message":"Request completed"} +{"level":"debug","transaction_id":"2822","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.124713474Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2822","time":"2026-03-06T19:24:23.125070647Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6676,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491631390112:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491631390112%3Amatrix.theocloud.dev","duration":8.342651,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491631390112 (WA)"},"time":"2026-03-06T19:24:23.130547114Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:23.131388573Z","message":""} +{"level":"debug","transaction_id":"2823","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.273387203Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2823","time":"2026-03-06T19:24:23.273697721Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","portal_mxid":"!PchXjQjXcAUVmlVcIq:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$bzsEkPBkWaERLMPZBT83odp9To-eRipceuW2JDYxbpw","event_type":"m.room.member","event_id":"$bzsEkPBkWaERLMPZBT83odp9To-eRipceuW2JDYxbpw","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:23.274279577Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"4915901353554@s.whatsapp.net","portal_mxid":"!PchXjQjXcAUVmlVcIq:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$bzsEkPBkWaERLMPZBT83odp9To-eRipceuW2JDYxbpw","event_type":"m.room.member","event_id":"$bzsEkPBkWaERLMPZBT83odp9To-eRipceuW2JDYxbpw","sender":"@theo:matrix.theocloud.dev","login_id":"4917641870516","membership":"leave","prev_membership":"join","target_user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:24:23.27548624Z","message":"Dropping leave event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:23.408763046Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6677,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491631390112:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491631390112%3Amatrix.theocloud.dev","duration":2.489106,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:23.411624132Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6678,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95575957610651:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.968194,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XxJNIiGmETkqWJeqwzopvXag","com.beeper.exclude_from_timeline":true,"displayname":"+491754714679 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:23.474608041Z","message":"Request completed"} +{"level":"debug","transaction_id":"2824","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.489639201Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2824","time":"2026-03-06T19:24:23.489967809Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6679,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95575957610651:matrix.theocloud.dev?user_id=%40whatsapp_lid-95575957610651%3Amatrix.theocloud.dev","duration":85.123609,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XxJNIiGmETkqWJeqwzopvXag","com.beeper.exclude_from_timeline":true,"displayname":"+491754714679 (WA)","membership":"join"},"time":"2026-03-06T19:24:23.56045312Z","message":"Request completed"} +{"level":"debug","transaction_id":"2825","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.575194854Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2825","time":"2026-03-06T19:24:23.575557474Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6680,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-108778989056067:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.12918,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nazar (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:23.623561418Z","message":"Request completed"} +{"level":"debug","transaction_id":"2826","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.640255102Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2826","time":"2026-03-06T19:24:23.64054795Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6681,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-108778989056067:matrix.theocloud.dev?user_id=%40whatsapp_lid-108778989056067%3Amatrix.theocloud.dev","duration":53.810834,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Nazar (WA)","membership":"join"},"time":"2026-03-06T19:24:23.678052306Z","message":"Request completed"} +{"level":"debug","transaction_id":"2827","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.690509012Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2827","time":"2026-03-06T19:24:23.690825258Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6682,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-4157629010109:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":66.959816,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915906652191 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:23.746068486Z","message":"Request completed"} +{"level":"debug","transaction_id":"2828","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.753625063Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2828","time":"2026-03-06T19:24:23.753886413Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6683,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-4157629010109:matrix.theocloud.dev?user_id=%40whatsapp_lid-4157629010109%3Amatrix.theocloud.dev","duration":47.149703,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915906652191 (WA)","membership":"join"},"time":"2026-03-06T19:24:23.793915355Z","message":"Request completed"} +{"level":"debug","transaction_id":"2829","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.806220434Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2829","time":"2026-03-06T19:24:23.806525365Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6684,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-173714331201661:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":56.020711,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491799302414 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:23.850917908Z","message":"Request completed"} +{"level":"debug","transaction_id":"2830","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.863623183Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2830","time":"2026-03-06T19:24:23.863842068Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6685,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-173714331201661:matrix.theocloud.dev?user_id=%40whatsapp_lid-173714331201661%3Amatrix.theocloud.dev","duration":50.467419,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491799302414 (WA)","membership":"join"},"time":"2026-03-06T19:24:23.902163787Z","message":"Request completed"} +{"level":"debug","transaction_id":"2831","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.91409074Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2831","time":"2026-03-06T19:24:23.914429196Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6686,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21479232127054:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":51.694406,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Philip (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:23.954811609Z","message":"Request completed"} +{"level":"debug","transaction_id":"2832","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:23.966451162Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2832","time":"2026-03-06T19:24:23.966743032Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6687,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-21479232127054:matrix.theocloud.dev?user_id=%40whatsapp_lid-21479232127054%3Amatrix.theocloud.dev","duration":49.74958,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Philip (WA)","membership":"join"},"time":"2026-03-06T19:24:24.005302704Z","message":"Request completed"} +{"level":"debug","transaction_id":"2833","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.017205631Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2833","time":"2026-03-06T19:24:24.017523832Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6688,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59622887026730:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":56.563246,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Felix (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:24.062943684Z","message":"Request completed"} +{"level":"debug","transaction_id":"2834","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.077096369Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2834","time":"2026-03-06T19:24:24.077400322Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6689,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59622887026730:matrix.theocloud.dev?user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":57.419022,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Felix (WA)","membership":"join"},"time":"2026-03-06T19:24:24.121137047Z","message":"Request completed"} +{"level":"debug","transaction_id":"2835","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.141814809Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2835","time":"2026-03-06T19:24:24.142062889Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6690,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-69050206027927:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":87.529324,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OmKHHLKcFkOcOmnokmCmDDgX","com.beeper.exclude_from_timeline":true,"displayname":"Scheggia (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:24.209701153Z","message":"Request completed"} +{"level":"debug","transaction_id":"2836","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.228427454Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2836","time":"2026-03-06T19:24:24.22879231Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6691,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-69050206027927:matrix.theocloud.dev?user_id=%40whatsapp_lid-69050206027927%3Amatrix.theocloud.dev","duration":75.764823,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/OmKHHLKcFkOcOmnokmCmDDgX","com.beeper.exclude_from_timeline":true,"displayname":"Scheggia (WA)","membership":"join"},"time":"2026-03-06T19:24:24.286163909Z","message":"Request completed"} +{"level":"debug","transaction_id":"2837","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.299639683Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2837","time":"2026-03-06T19:24:24.299940144Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6692,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-259579434823822:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.441452,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917646028166 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:24.359568415Z","message":"Request completed"} +{"level":"debug","transaction_id":"2838","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.376887116Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2838","time":"2026-03-06T19:24:24.377184365Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6693,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-259579434823822:matrix.theocloud.dev?user_id=%40whatsapp_lid-259579434823822%3Amatrix.theocloud.dev","duration":80.535605,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917646028166 (WA)","membership":"join"},"time":"2026-03-06T19:24:24.440813197Z","message":"Request completed"} +{"level":"debug","transaction_id":"2839","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.458484532Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2839","time":"2026-03-06T19:24:24.458849877Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":6193,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4125_1041_8_428_480_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30022.579125,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:24:24.476450671Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6694,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-57879650386021:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":83.696733,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ojsJCoIPlkzmQdwaaGSxSSqE","com.beeper.exclude_from_timeline":true,"displayname":"Brn (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:24.52553228Z","message":"Request completed"} +{"level":"debug","transaction_id":"2840","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.540391768Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2840","time":"2026-03-06T19:24:24.54071807Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6696,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-57879650386021:matrix.theocloud.dev?user_id=%40whatsapp_lid-57879650386021%3Amatrix.theocloud.dev","duration":55.627709,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ojsJCoIPlkzmQdwaaGSxSSqE","com.beeper.exclude_from_timeline":true,"displayname":"Brn (WA)","membership":"join"},"time":"2026-03-06T19:24:24.581930279Z","message":"Request completed"} +{"level":"debug","transaction_id":"2841","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.589111175Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2841","time":"2026-03-06T19:24:24.589393477Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6697,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-280491597000719:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.943748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LnqFEnlpSGUlUjogXollyQuW","com.beeper.exclude_from_timeline":true,"displayname":"+31613688070 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:24.642960143Z","message":"Request completed"} +{"level":"debug","transaction_id":"2842","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.654317743Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2842","time":"2026-03-06T19:24:24.654591245Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6698,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-280491597000719:matrix.theocloud.dev?user_id=%40whatsapp_lid-280491597000719%3Amatrix.theocloud.dev","duration":63.161588,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/LnqFEnlpSGUlUjogXollyQuW","com.beeper.exclude_from_timeline":true,"displayname":"+31613688070 (WA)","membership":"join"},"time":"2026-03-06T19:24:24.707009844Z","message":"Request completed"} +{"level":"debug","transaction_id":"2843","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.718911585Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2843","time":"2026-03-06T19:24:24.719277977Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6699,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59463872561404:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.59147,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NmIelWpzwZhHrfrTFHGrEsQH","com.beeper.exclude_from_timeline":true,"displayname":"Pasi (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:24.775769215Z","message":"Request completed"} +{"level":"debug","transaction_id":"2844","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.788756443Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2844","time":"2026-03-06T19:24:24.789038815Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6700,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-59463872561404:matrix.theocloud.dev?user_id=%40whatsapp_lid-59463872561404%3Amatrix.theocloud.dev","duration":72.952627,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/NmIelWpzwZhHrfrTFHGrEsQH","com.beeper.exclude_from_timeline":true,"displayname":"Pasi (WA)","membership":"join"},"time":"2026-03-06T19:24:24.849470271Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:24.85040455Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6701,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491778756866%3Amatrix.theocloud.dev","duration":7.723221,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491778756866","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:24.858401972Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6702,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491778756866:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491778756866%3Amatrix.theocloud.dev","duration":5.035344,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:24.863824031Z","message":"Request completed"} +{"level":"debug","transaction_id":"2845","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:24.867546551Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2845","time":"2026-03-06T19:24:24.867858536Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6703,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491778756866:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491778756866%3Amatrix.theocloud.dev","duration":11.218753,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Neesha (WA)"},"time":"2026-03-06T19:24:24.875268235Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:24.876086437Z","message":""} +{"level":"debug","transaction_id":"2846","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:25.01349804Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2846","time":"2026-03-06T19:24:25.013848229Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","portal_mxid":"!NOcWeBtUTcuAExaode:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$sVqEksOPtlbQOUfq4pwgHUx8TK-GggoXkeAcBXGF7vA","event_type":"m.room.member","event_id":"$sVqEksOPtlbQOUfq4pwgHUx8TK-GggoXkeAcBXGF7vA","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:25.014388668Z","message":"Sending implicit read receipt for event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:25.036353273Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6704,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491778756866:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491778756866%3Amatrix.theocloud.dev","duration":4.508384,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:25.041210659Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:25.042048625Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6705,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491795247666%3Amatrix.theocloud.dev","duration":5.307798,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491795247666","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:25.047627691Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6706,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491795247666:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491795247666%3Amatrix.theocloud.dev","duration":5.481007,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:25.053461191Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6707,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491795247666:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491795247666%3Amatrix.theocloud.dev","duration":16.874924,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491795247666 (WA)"},"time":"2026-03-06T19:24:25.070526714Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:25.071325779Z","message":""} +{"level":"debug","transaction_id":"2847","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:25.180049837Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2847","time":"2026-03-06T19:24:25.180202861Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:25.228249339Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6708,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491795247666:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491795247666%3Amatrix.theocloud.dev","duration":2.21309,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:25.230833431Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:25.231778396Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6709,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491749377108%3Amatrix.theocloud.dev","duration":3.254787,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491749377108","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:25.235309059Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6710,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749377108:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491749377108%3Amatrix.theocloud.dev","duration":1.956839,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:25.237646398Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6711,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749377108:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491749377108%3Amatrix.theocloud.dev","duration":6.022773,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Batu (WA)"},"time":"2026-03-06T19:24:25.243845173Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:25.244729305Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:25.406765734Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6712,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491749377108:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491749377108%3Amatrix.theocloud.dev","duration":2.525774,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:25.409644699Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:25.410422462Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6713,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_201559445990%3Amatrix.theocloud.dev","duration":3.526822,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_201559445990","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:25.414215033Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6714,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_201559445990:matrix.theocloud.dev/displayname?user_id=%40whatsapp_201559445990%3Amatrix.theocloud.dev","duration":2.247801,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:25.416848294Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6715,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_201559445990:matrix.theocloud.dev/displayname?user_id=%40whatsapp_201559445990%3Amatrix.theocloud.dev","duration":22.947704,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+201559445990 (WA)"},"time":"2026-03-06T19:24:25.440032344Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:25.440871079Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:25.712025684Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6716,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_201559445990:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_201559445990%3Amatrix.theocloud.dev","duration":2.622785,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:25.715048804Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6717,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-240191784673511:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.981468,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IBymwEgSEooqlcbYkzrNxriI","com.beeper.exclude_from_timeline":true,"displayname":"+491755557540 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:25.784075252Z","message":"Request completed"} +{"level":"debug","transaction_id":"2848","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:25.79827061Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2848","time":"2026-03-06T19:24:25.798641751Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6718,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-240191784673511:matrix.theocloud.dev?user_id=%40whatsapp_lid-240191784673511%3Amatrix.theocloud.dev","duration":72.168299,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/IBymwEgSEooqlcbYkzrNxriI","com.beeper.exclude_from_timeline":true,"displayname":"+491755557540 (WA)","membership":"join"},"time":"2026-03-06T19:24:25.857009231Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:25.857861655Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6719,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491633662727%3Amatrix.theocloud.dev","duration":7.692002,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491633662727","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:25.865832256Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6720,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491633662727:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491633662727%3Amatrix.theocloud.dev","duration":4.183409,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:25.870466007Z","message":"Request completed"} +{"level":"debug","transaction_id":"2849","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:25.873033546Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2849","time":"2026-03-06T19:24:25.873355519Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6721,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491633662727:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491633662727%3Amatrix.theocloud.dev","duration":9.721545,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491633662727 (WA)"},"time":"2026-03-06T19:24:25.880426064Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:25.881196564Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:26.033070811Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6722,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491633662727:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491633662727%3Amatrix.theocloud.dev","duration":2.368,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:26.035708682Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:26.036504045Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6723,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915731849652%3Amatrix.theocloud.dev","duration":3.718539,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915731849652","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:26.040492035Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6724,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915731849652:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915731849652%3Amatrix.theocloud.dev","duration":2.164549,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:26.043079898Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6725,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915731849652:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915731849652%3Amatrix.theocloud.dev","duration":6.404112,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915731849652 (WA)"},"time":"2026-03-06T19:24:26.0496649Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:26.050483381Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:26.209254267Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6726,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915731849652:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915731849652%3Amatrix.theocloud.dev","duration":2.519418,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:26.212127924Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6727,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66662220976313:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":56.815656,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VbuQUzvHAEzAXXFZFRRmjwLh","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:26.270088992Z","message":"Request completed"} +{"level":"debug","transaction_id":"2850","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:26.285424804Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2850","time":"2026-03-06T19:24:26.285658984Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6728,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66662220976313:matrix.theocloud.dev?user_id=%40whatsapp_lid-66662220976313%3Amatrix.theocloud.dev","duration":73.955771,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/VbuQUzvHAEzAXXFZFRRmjwLh","com.beeper.exclude_from_timeline":true,"displayname":"Alex (WA)","membership":"join"},"time":"2026-03-06T19:24:26.344801922Z","message":"Request completed"} +{"level":"debug","transaction_id":"2851","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:26.356123343Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2851","time":"2026-03-06T19:24:26.356497837Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6729,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-145066932846614:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.11291,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XRkYTeIlPqDtSdsTprpoVzSC","com.beeper.exclude_from_timeline":true,"displayname":"Daniil Bykov (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:26.413046905Z","message":"Request completed"} +{"level":"debug","transaction_id":"2852","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:26.423964498Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2852","time":"2026-03-06T19:24:26.42424715Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6730,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-145066932846614:matrix.theocloud.dev?user_id=%40whatsapp_lid-145066932846614%3Amatrix.theocloud.dev","duration":54.205233,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/XRkYTeIlPqDtSdsTprpoVzSC","com.beeper.exclude_from_timeline":true,"displayname":"Daniil Bykov (WA)","membership":"join"},"time":"2026-03-06T19:24:26.468007132Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:26.468862559Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6731,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915904833440%3Amatrix.theocloud.dev","duration":4.449996,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915904833440","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:26.473604635Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6732,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915904833440:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915904833440%3Amatrix.theocloud.dev","duration":4.859062,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:26.478823454Z","message":"Request completed"} +{"level":"debug","transaction_id":"2853","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:26.481253195Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2853","time":"2026-03-06T19:24:26.481560501Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6733,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915904833440:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915904833440%3Amatrix.theocloud.dev","duration":9.315134,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915904833440 (WA)"},"time":"2026-03-06T19:24:26.488286165Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:26.488834496Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:26.657041344Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6734,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915904833440:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915904833440%3Amatrix.theocloud.dev","duration":2.336291,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:26.659667899Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6735,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-1876967866385:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.612905,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Phie (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:26.719230379Z","message":"Request completed"} +{"level":"debug","transaction_id":"2854","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:26.733403806Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2854","time":"2026-03-06T19:24:26.73368548Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6736,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-1876967866385:matrix.theocloud.dev?user_id=%40whatsapp_lid-1876967866385%3Amatrix.theocloud.dev","duration":74.054318,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Phie (WA)","membership":"join"},"time":"2026-03-06T19:24:26.794021183Z","message":"Request completed"} +{"level":"debug","transaction_id":"2855","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:26.805132309Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2855","time":"2026-03-06T19:24:26.805458612Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6737,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256783310393511:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.528894,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jenny (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:26.867559017Z","message":"Request completed"} +{"level":"debug","transaction_id":"2856","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:26.875929885Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2856","time":"2026-03-06T19:24:26.876219241Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6738,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256783310393511:matrix.theocloud.dev?user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":45.12421,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jenny (WA)","membership":"join"},"time":"2026-03-06T19:24:26.913388214Z","message":"Request completed"} +{"level":"debug","transaction_id":"2857","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:26.923907638Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2857","time":"2026-03-06T19:24:26.92419434Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6739,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-211883705536588:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.18212,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917681125611 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:26.975567961Z","message":"Request completed"} +{"level":"debug","transaction_id":"2858","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:26.9869301Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2858","time":"2026-03-06T19:24:26.987223786Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6740,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-211883705536588:matrix.theocloud.dev?user_id=%40whatsapp_lid-211883705536588%3Amatrix.theocloud.dev","duration":77.321257,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917681125611 (WA)","membership":"join"},"time":"2026-03-06T19:24:27.053584706Z","message":"Request completed"} +{"level":"debug","transaction_id":"2859","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:27.066710151Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2859","time":"2026-03-06T19:24:27.067000206Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6741,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-267950527361145:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.545787,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BZQJeRWULQLwtUfTZUsqzUfv","com.beeper.exclude_from_timeline":true,"displayname":"Zaki (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:27.113231275Z","message":"Request completed"} +{"level":"debug","transaction_id":"2860","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:27.12495841Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2860","time":"2026-03-06T19:24:27.125235474Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6742,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-267950527361145:matrix.theocloud.dev?user_id=%40whatsapp_lid-267950527361145%3Amatrix.theocloud.dev","duration":62.238064,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BZQJeRWULQLwtUfTZUsqzUfv","com.beeper.exclude_from_timeline":true,"displayname":"Zaki (WA)","membership":"join"},"time":"2026-03-06T19:24:27.176215953Z","message":"Request completed"} +{"level":"debug","transaction_id":"2861","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:27.189631872Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2861","time":"2026-03-06T19:24:27.189925Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6743,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-228681305870497:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.747708,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"MM (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:27.247824187Z","message":"Request completed"} +{"level":"debug","transaction_id":"2862","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:27.261737313Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2862","time":"2026-03-06T19:24:27.262022549Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6744,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-228681305870497:matrix.theocloud.dev?user_id=%40whatsapp_lid-228681305870497%3Amatrix.theocloud.dev","duration":76.994116,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"MM (WA)","membership":"join"},"time":"2026-03-06T19:24:27.325539074Z","message":"Request completed"} +{"level":"debug","transaction_id":"2863","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:27.334156834Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2863","time":"2026-03-06T19:24:27.33445073Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6745,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-123531916480575:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":71.471623,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GxcEOLlqHPAFJkrNDwSbAjmi","com.beeper.exclude_from_timeline":true,"displayname":"Alessia (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:27.398046248Z","message":"Request completed"} +{"level":"debug","transaction_id":"2864","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:27.40752593Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2864","time":"2026-03-06T19:24:27.407862081Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6746,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-123531916480575:matrix.theocloud.dev?user_id=%40whatsapp_lid-123531916480575%3Amatrix.theocloud.dev","duration":67.212296,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/GxcEOLlqHPAFJkrNDwSbAjmi","com.beeper.exclude_from_timeline":true,"displayname":"Alessia (WA)","membership":"join"},"time":"2026-03-06T19:24:27.466132409Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:27.467226208Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6747,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915203389281%3Amatrix.theocloud.dev","duration":7.078647,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915203389281","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:27.474658606Z","message":"Request completed"} +{"level":"debug","transaction_id":"2865","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:27.478427291Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2865","time":"2026-03-06T19:24:27.478662101Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6748,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915203389281:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915203389281%3Amatrix.theocloud.dev","duration":5.92681,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:27.481045466Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6749,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915203389281:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915203389281%3Amatrix.theocloud.dev","duration":7.205271,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915203389281 (WA)"},"time":"2026-03-06T19:24:27.488446714Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:27.489231252Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:27.656029731Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6750,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915203389281:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915203389281%3Amatrix.theocloud.dev","duration":2.529964,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:27.65896464Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:27.659741146Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6751,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917683609440%3Amatrix.theocloud.dev","duration":3.592682,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917683609440","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:27.663602791Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6752,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917683609440:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917683609440%3Amatrix.theocloud.dev","duration":2.265821,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:27.666177454Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6753,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917683609440:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917683609440%3Amatrix.theocloud.dev","duration":6.654495,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917683609440 (WA)"},"time":"2026-03-06T19:24:27.673006834Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:27.673902351Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:27.827811521Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6754,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917683609440:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917683609440%3Amatrix.theocloud.dev","duration":2.458026,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:27.830663528Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:27.831522517Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6755,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491786748116%3Amatrix.theocloud.dev","duration":3.431976,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491786748116","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:27.83523463Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6756,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491786748116:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491786748116%3Amatrix.theocloud.dev","duration":2.258907,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:27.837828988Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6757,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491786748116:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491786748116%3Amatrix.theocloud.dev","duration":6.642692,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491786748116 (WA)"},"time":"2026-03-06T19:24:27.844644819Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:27.845437109Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:28.13624587Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6758,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491786748116:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491786748116%3Amatrix.theocloud.dev","duration":2.444477,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:28.139062047Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:28.139928021Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6759,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915254158741%3Amatrix.theocloud.dev","duration":3.415493,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915254158741","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:28.143619111Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6760,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915254158741:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915254158741%3Amatrix.theocloud.dev","duration":2.176563,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:28.146119322Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6761,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915254158741:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915254158741%3Amatrix.theocloud.dev","duration":6.987642,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915254158741 (WA)"},"time":"2026-03-06T19:24:28.153306155Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:28.154112134Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:28.316810736Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6762,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915254158741:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915254158741%3Amatrix.theocloud.dev","duration":2.45188,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:28.319543173Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6763,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-87162133413943:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":66.527005,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"christian rzadeh (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:28.38709993Z","message":"Request completed"} +{"level":"debug","transaction_id":"2866","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:28.399937975Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2866","time":"2026-03-06T19:24:28.400306672Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6764,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-87162133413943:matrix.theocloud.dev?user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":77.725643,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"christian rzadeh (WA)","membership":"join"},"time":"2026-03-06T19:24:28.465652575Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:28.46661081Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6765,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917684160229%3Amatrix.theocloud.dev","duration":7.791247,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917684160229","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:28.474686874Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6766,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684160229:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917684160229%3Amatrix.theocloud.dev","duration":4.630957,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:28.479702731Z","message":"Request completed"} +{"level":"debug","transaction_id":"2867","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:28.482219914Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2867","time":"2026-03-06T19:24:28.482579811Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6767,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684160229:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917684160229%3Amatrix.theocloud.dev","duration":9.315134,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Kai (WA)"},"time":"2026-03-06T19:24:28.489216776Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:28.490056419Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:28.64980314Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6768,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917684160229:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917684160229%3Amatrix.theocloud.dev","duration":2.663292,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:28.652837085Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6769,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-6000186790141:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":59.660468,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Filippo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:28.713518088Z","message":"Request completed"} +{"level":"debug","transaction_id":"2868","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:28.721864441Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2868","time":"2026-03-06T19:24:28.722149956Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6770,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-6000186790141:matrix.theocloud.dev?user_id=%40whatsapp_lid-6000186790141%3Amatrix.theocloud.dev","duration":47.47405,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Filippo (WA)","membership":"join"},"time":"2026-03-06T19:24:28.761743082Z","message":"Request completed"} +{"level":"debug","transaction_id":"2869","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:28.770091949Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2869","time":"2026-03-06T19:24:28.770375509Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6771,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242828928122951:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":51.42272,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uLBwZSpsbtKsjdaywYYetTPS","com.beeper.exclude_from_timeline":true,"displayname":"Lulu (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:28.814242699Z","message":"Request completed"} +{"level":"debug","transaction_id":"2870","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:28.823214209Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2870","time":"2026-03-06T19:24:28.823508873Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6772,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242828928122951:matrix.theocloud.dev?user_id=%40whatsapp_lid-242828928122951%3Amatrix.theocloud.dev","duration":75.211883,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uLBwZSpsbtKsjdaywYYetTPS","com.beeper.exclude_from_timeline":true,"displayname":"Lulu (WA)","membership":"join"},"time":"2026-03-06T19:24:28.890249455Z","message":"Request completed"} +{"level":"debug","transaction_id":"2871","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:28.901127798Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2871","time":"2026-03-06T19:24:28.901416874Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6773,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-209178178109568:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.62933,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917665322672 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:28.967808804Z","message":"Request completed"} +{"level":"debug","transaction_id":"2872","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:28.978435365Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2872","time":"2026-03-06T19:24:28.978731356Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6774,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-209178178109568:matrix.theocloud.dev?user_id=%40whatsapp_lid-209178178109568%3Amatrix.theocloud.dev","duration":66.547119,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917665322672 (WA)","membership":"join"},"time":"2026-03-06T19:24:29.035111755Z","message":"Request completed"} +{"level":"debug","transaction_id":"2873","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.048598704Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2873","time":"2026-03-06T19:24:29.048820523Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6775,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12730350215211:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.731713,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dBdPJRZiGQFHXdRjYyypEkWQ","com.beeper.exclude_from_timeline":true,"displayname":"Shirin (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:29.104201619Z","message":"Request completed"} +{"level":"debug","transaction_id":"2874","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.11836485Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2874","time":"2026-03-06T19:24:29.118667197Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6776,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-12730350215211:matrix.theocloud.dev?user_id=%40whatsapp_lid-12730350215211%3Amatrix.theocloud.dev","duration":78.520657,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dBdPJRZiGQFHXdRjYyypEkWQ","com.beeper.exclude_from_timeline":true,"displayname":"Shirin (WA)","membership":"join"},"time":"2026-03-06T19:24:29.183537334Z","message":"Request completed"} +{"level":"debug","transaction_id":"2875","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.194408693Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2875","time":"2026-03-06T19:24:29.194724589Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6777,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-178941893574847:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":88.020035,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EVTxahldSVlRkzCAzOObjuVA","com.beeper.exclude_from_timeline":true,"displayname":"Darin (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:29.272711162Z","message":"Request completed"} +{"level":"debug","transaction_id":"2876","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.288967913Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2876","time":"2026-03-06T19:24:29.289274031Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2877","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.367733926Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2877","time":"2026-03-06T19:24:29.36806819Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","portal_mxid":"!NOcWeBtUTcuAExaode:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$Tzofd4y7FJjIFg3c3cFD6gQQjwvHbCGXz8WH6GGPSNQ","event_type":"m.room.member","event_id":"$Tzofd4y7FJjIFg3c3cFD6gQQjwvHbCGXz8WH6GGPSNQ","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:29.368602693Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"4917616043654@s.whatsapp.net","portal_mxid":"!NOcWeBtUTcuAExaode:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$Tzofd4y7FJjIFg3c3cFD6gQQjwvHbCGXz8WH6GGPSNQ","event_type":"m.room.member","event_id":"$Tzofd4y7FJjIFg3c3cFD6gQQjwvHbCGXz8WH6GGPSNQ","sender":"@theo:matrix.theocloud.dev","login_id":"4917641870516","membership":"leave","prev_membership":"join","target_user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:24:29.369917053Z","message":"Dropping leave event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6778,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-178941893574847:matrix.theocloud.dev?user_id=%40whatsapp_lid-178941893574847%3Amatrix.theocloud.dev","duration":124.030186,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/EVTxahldSVlRkzCAzOObjuVA","com.beeper.exclude_from_timeline":true,"displayname":"Darin (WA)","membership":"join"},"time":"2026-03-06T19:24:29.397598592Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:29.398576243Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6779,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915159400259%3Amatrix.theocloud.dev","duration":11.556999,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915159400259","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:29.410458288Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6780,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159400259:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915159400259%3Amatrix.theocloud.dev","duration":7.29397,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:29.418185908Z","message":"Request completed"} +{"level":"debug","transaction_id":"2878","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.427136885Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2878","time":"2026-03-06T19:24:29.42746696Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6781,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159400259:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915159400259%3Amatrix.theocloud.dev","duration":22.047577,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915159400259 (WA)"},"time":"2026-03-06T19:24:29.440480169Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:29.441297043Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:29.714072686Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6782,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915159400259:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915159400259%3Amatrix.theocloud.dev","duration":2.267566,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:29.716748061Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6783,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101829530640580:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":54.045084,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FeKQfaoOaRpHCxdTjUNbNcXK","com.beeper.exclude_from_timeline":true,"displayname":"Aitor sav (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:29.771865294Z","message":"Request completed"} +{"level":"debug","transaction_id":"2879","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.786384371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2879","time":"2026-03-06T19:24:29.786653123Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6784,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101829530640580:matrix.theocloud.dev?user_id=%40whatsapp_lid-101829530640580%3Amatrix.theocloud.dev","duration":67.944452,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/FeKQfaoOaRpHCxdTjUNbNcXK","com.beeper.exclude_from_timeline":true,"displayname":"Aitor sav (WA)","membership":"join"},"time":"2026-03-06T19:24:29.840615795Z","message":"Request completed"} +{"level":"debug","transaction_id":"2880","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.854045263Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2880","time":"2026-03-06T19:24:29.854357737Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6785,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-71348114170014:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.624153,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915209052709 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:29.905258386Z","message":"Request completed"} +{"level":"debug","transaction_id":"2881","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.914270056Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2881","time":"2026-03-06T19:24:29.914568073Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6786,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-71348114170014:matrix.theocloud.dev?user_id=%40whatsapp_lid-71348114170014%3Amatrix.theocloud.dev","duration":39.966084,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915209052709 (WA)","membership":"join"},"time":"2026-03-06T19:24:29.94595942Z","message":"Request completed"} +{"level":"debug","transaction_id":"2882","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:29.955048056Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2882","time":"2026-03-06T19:24:29.955349983Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6787,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-33213066010783:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":52.175689,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WWdpmZzrDMNnPdylPEUrSWrK","com.beeper.exclude_from_timeline":true,"displayname":"+491639864570 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:29.999175478Z","message":"Request completed"} +{"level":"debug","transaction_id":"2883","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.008847086Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2883","time":"2026-03-06T19:24:30.009173319Z","message":"Finished dispatching events from transaction"} +{"level":"warn","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","started_at":"2026-03-06T19:22:00.030663244Z","time":"2026-03-06T19:24:30.030751976Z","message":"Event handling is taking long"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6788,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-33213066010783:matrix.theocloud.dev?user_id=%40whatsapp_lid-33213066010783%3Amatrix.theocloud.dev","duration":59.12862,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WWdpmZzrDMNnPdylPEUrSWrK","com.beeper.exclude_from_timeline":true,"displayname":"+491639864570 (WA)","membership":"join"},"time":"2026-03-06T19:24:30.059088216Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:30.060031923Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6789,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915258436899%3Amatrix.theocloud.dev","duration":8.13054,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915258436899","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:30.068495053Z","message":"Request completed"} +{"level":"debug","transaction_id":"2884","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.072285668Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2884","time":"2026-03-06T19:24:30.072584803Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6790,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915258436899:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915258436899%3Amatrix.theocloud.dev","duration":6.023541,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:30.074956085Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6791,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915258436899:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915258436899%3Amatrix.theocloud.dev","duration":6.381342,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915258436899 (WA)"},"time":"2026-03-06T19:24:30.081586485Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:30.082524745Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:30.245034982Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6792,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915258436899:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915258436899%3Amatrix.theocloud.dev","duration":1.835244,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:30.247169011Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6793,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-150113620103230:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":42.900993,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915203389281 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:30.290940657Z","message":"Request completed"} +{"level":"debug","transaction_id":"2885","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.301569593Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2885","time":"2026-03-06T19:24:30.301799094Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6794,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-150113620103230:matrix.theocloud.dev?user_id=%40whatsapp_lid-150113620103230%3Amatrix.theocloud.dev","duration":58.67227,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915203389281 (WA)","membership":"join"},"time":"2026-03-06T19:24:30.350516616Z","message":"Request completed"} +{"level":"debug","transaction_id":"2886","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.365852288Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2886","time":"2026-03-06T19:24:30.366172863Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6795,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-125877153202314:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":66.977696,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917617625510 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:30.418546973Z","message":"Request completed"} +{"level":"debug","transaction_id":"2887","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.432271455Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2887","time":"2026-03-06T19:24:30.433382435Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6796,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-125877153202314:matrix.theocloud.dev?user_id=%40whatsapp_lid-125877153202314%3Amatrix.theocloud.dev","duration":51.990257,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917617625510 (WA)","membership":"join"},"time":"2026-03-06T19:24:30.475312063Z","message":"Request completed"} +{"level":"debug","transaction_id":"2888","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.48815339Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2888","time":"2026-03-06T19:24:30.488473966Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6797,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-190885543293102:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.974268,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wtnwAVZzmVhFImxbAmdsghOo","com.beeper.exclude_from_timeline":true,"displayname":"Joan (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:30.535377755Z","message":"Request completed"} +{"level":"debug","transaction_id":"2889","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.54552024Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2889","time":"2026-03-06T19:24:30.545835927Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6798,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-190885543293102:matrix.theocloud.dev?user_id=%40whatsapp_lid-190885543293102%3Amatrix.theocloud.dev","duration":63.830397,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/wtnwAVZzmVhFImxbAmdsghOo","com.beeper.exclude_from_timeline":true,"displayname":"Joan (WA)","membership":"join"},"time":"2026-03-06T19:24:30.601269615Z","message":"Request completed"} +{"level":"debug","transaction_id":"2890","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.614004293Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2890","time":"2026-03-06T19:24:30.614358183Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6799,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-131679435927787:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.40017,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491628989538 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:30.666649321Z","message":"Request completed"} +{"level":"debug","transaction_id":"2891","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.679291458Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2891","time":"2026-03-06T19:24:30.679640111Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6800,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-131679435927787:matrix.theocloud.dev?user_id=%40whatsapp_lid-131679435927787%3Amatrix.theocloud.dev","duration":62.964912,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491628989538 (WA)","membership":"join"},"time":"2026-03-06T19:24:30.730274452Z","message":"Request completed"} +{"level":"debug","transaction_id":"2892","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.742953955Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2892","time":"2026-03-06T19:24:30.743240657Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6801,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-183588511334611:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.794494,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ogGYRpQmcJtTnZfWvyZgKNsv","com.beeper.exclude_from_timeline":true,"displayname":"+4915258436899 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:30.789416621Z","message":"Request completed"} +{"level":"debug","transaction_id":"2893","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.800647736Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2893","time":"2026-03-06T19:24:30.800928641Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6802,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-183588511334611:matrix.theocloud.dev?user_id=%40whatsapp_lid-183588511334611%3Amatrix.theocloud.dev","duration":57.843383,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/ogGYRpQmcJtTnZfWvyZgKNsv","com.beeper.exclude_from_timeline":true,"displayname":"+4915258436899 (WA)","membership":"join"},"time":"2026-03-06T19:24:30.847859809Z","message":"Request completed"} +{"level":"debug","transaction_id":"2894","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.854826569Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2894","time":"2026-03-06T19:24:30.85517131Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6803,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-261301750251678:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":54.97664,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mdQwEdkShmeGrnuymSEokxMO","com.beeper.exclude_from_timeline":true,"displayname":"Javier- (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:30.903631253Z","message":"Request completed"} +{"level":"debug","transaction_id":"2895","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.912072103Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2895","time":"2026-03-06T19:24:30.912280931Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6804,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-261301750251678:matrix.theocloud.dev?user_id=%40whatsapp_lid-261301750251678%3Amatrix.theocloud.dev","duration":37.439403,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mdQwEdkShmeGrnuymSEokxMO","com.beeper.exclude_from_timeline":true,"displayname":"Javier- (WA)","membership":"join"},"time":"2026-03-06T19:24:30.94167053Z","message":"Request completed"} +{"level":"debug","transaction_id":"2896","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.950517512Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2896","time":"2026-03-06T19:24:30.950751972Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6805,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88180091007092:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":39.2421,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pPKHjogbUpOHFJjFptQcXgFN","com.beeper.exclude_from_timeline":true,"displayname":"Mirko (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:30.981758559Z","message":"Request completed"} +{"level":"debug","transaction_id":"2897","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:30.990891055Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2897","time":"2026-03-06T19:24:30.991123909Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6806,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-88180091007092:matrix.theocloud.dev?user_id=%40whatsapp_lid-88180091007092%3Amatrix.theocloud.dev","duration":39.986827,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pPKHjogbUpOHFJjFptQcXgFN","com.beeper.exclude_from_timeline":true,"displayname":"Mirko (WA)","membership":"join"},"time":"2026-03-06T19:24:31.022297977Z","message":"Request completed"} +{"level":"debug","transaction_id":"2898","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.032285901Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2898","time":"2026-03-06T19:24:31.032644471Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6807,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-104239024050301:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":51.810134,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915111021159 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:31.074866249Z","message":"Request completed"} +{"level":"debug","transaction_id":"2899","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.0825315Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2899","time":"2026-03-06T19:24:31.08279264Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6808,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-104239024050301:matrix.theocloud.dev?user_id=%40whatsapp_lid-104239024050301%3Amatrix.theocloud.dev","duration":52.929915,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4915111021159 (WA)","membership":"join"},"time":"2026-03-06T19:24:31.128451283Z","message":"Request completed"} +{"level":"debug","transaction_id":"2900","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.138390527Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2900","time":"2026-03-06T19:24:31.138665705Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6809,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-2160435707964:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.728077,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Lennart (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:31.192028362Z","message":"Request completed"} +{"level":"debug","transaction_id":"2901","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.205525717Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2901","time":"2026-03-06T19:24:31.205828972Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6810,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-2160435707964:matrix.theocloud.dev?user_id=%40whatsapp_lid-2160435707964%3Amatrix.theocloud.dev","duration":80.636387,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Lennart (WA)","membership":"join"},"time":"2026-03-06T19:24:31.273518849Z","message":"Request completed"} +{"level":"debug","transaction_id":"2902","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.286491968Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2902","time":"2026-03-06T19:24:31.286823509Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6811,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-92174427373665:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":73.645601,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sedjlo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:31.348280878Z","message":"Request completed"} +{"level":"debug","transaction_id":"2903","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.357830262Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2903","time":"2026-03-06T19:24:31.358043281Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6812,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-92174427373665:matrix.theocloud.dev?user_id=%40whatsapp_lid-92174427373665%3Amatrix.theocloud.dev","duration":48.433473,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Sedjlo (WA)","membership":"join"},"time":"2026-03-06T19:24:31.39726806Z","message":"Request completed"} +{"level":"debug","transaction_id":"2904","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.41048891Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2904","time":"2026-03-06T19:24:31.410771352Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6813,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95494353215566:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.577711,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491783166911 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:31.465685762Z","message":"Request completed"} +{"level":"debug","transaction_id":"2905","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.478893622Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2905","time":"2026-03-06T19:24:31.479189473Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6814,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-95494353215566:matrix.theocloud.dev?user_id=%40whatsapp_lid-95494353215566%3Amatrix.theocloud.dev","duration":45.663881,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491783166911 (WA)","membership":"join"},"time":"2026-03-06T19:24:31.512086897Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:31.513000852Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6815,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917641816167%3Amatrix.theocloud.dev","duration":6.01956,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917641816167","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:31.519313191Z","message":"Request completed"} +{"level":"debug","transaction_id":"2906","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.523316406Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2906","time":"2026-03-06T19:24:31.523596823Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6816,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641816167:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641816167%3Amatrix.theocloud.dev","duration":5.258419,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:31.52500093Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6817,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641816167:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917641816167%3Amatrix.theocloud.dev","duration":5.078715,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917641816167 (WA)"},"time":"2026-03-06T19:24:31.530290081Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:31.531141806Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:31.679845427Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6818,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917641816167:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917641816167%3Amatrix.theocloud.dev","duration":2.40341,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:31.682651477Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:31.683507044Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6819,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491721735909%3Amatrix.theocloud.dev","duration":3.667274,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491721735909","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:31.687416741Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6820,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491721735909:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491721735909%3Amatrix.theocloud.dev","duration":2.181661,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:31.68994Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6821,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491721735909:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491721735909%3Amatrix.theocloud.dev","duration":6.481007,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Yasin Demir (WA)"},"time":"2026-03-06T19:24:31.696630115Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:31.697422196Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:31.852365799Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6822,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491721735909:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491721735909%3Amatrix.theocloud.dev","duration":2.365485,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:31.855065619Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6823,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-42717778305055:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":51.765784,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hfobDmrIRJPvBJWBuzQwCwcs","com.beeper.exclude_from_timeline":true,"displayname":"+491784134011 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:31.907862484Z","message":"Request completed"} +{"level":"debug","transaction_id":"2907","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.920185442Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2907","time":"2026-03-06T19:24:31.920454824Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6824,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-42717778305055:matrix.theocloud.dev?user_id=%40whatsapp_lid-42717778305055%3Amatrix.theocloud.dev","duration":63.564088,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/hfobDmrIRJPvBJWBuzQwCwcs","com.beeper.exclude_from_timeline":true,"displayname":"+491784134011 (WA)","membership":"join"},"time":"2026-03-06T19:24:31.972162849Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:31.973047191Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6825,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917672718576%3Amatrix.theocloud.dev","duration":7.615594,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917672718576","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:31.980952839Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6826,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672718576:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917672718576%3Amatrix.theocloud.dev","duration":3.791733,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:31.985204553Z","message":"Request completed"} +{"level":"debug","transaction_id":"2908","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:31.987635691Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2908","time":"2026-03-06T19:24:31.98793259Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6827,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672718576:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917672718576%3Amatrix.theocloud.dev","duration":10.20646,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917672718576 (WA)"},"time":"2026-03-06T19:24:31.995611391Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:31.996413599Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:32.143305024Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6828,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917672718576:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917672718576%3Amatrix.theocloud.dev","duration":2.458445,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:32.146086978Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6829,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-83674703904795:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":54.414759,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uHMfWBOwjpDinqKTHuYIBuJO","com.beeper.exclude_from_timeline":true,"displayname":"Zakaria (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:32.201468284Z","message":"Request completed"} +{"level":"debug","transaction_id":"2909","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:32.213638498Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2909","time":"2026-03-06T19:24:32.213878476Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:32.232741249Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6830,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-83674703904795:matrix.theocloud.dev?user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":61.096214,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uHMfWBOwjpDinqKTHuYIBuJO","com.beeper.exclude_from_timeline":true,"displayname":"Zakaria (WA)","membership":"join"},"time":"2026-03-06T19:24:32.263363284Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:32.264171288Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6831,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491756930361%3Amatrix.theocloud.dev","duration":5.380224,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491756930361","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:32.269861542Z","message":"Request completed"} +{"level":"debug","transaction_id":"2910","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:32.274181492Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2910","time":"2026-03-06T19:24:32.274524557Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6832,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491756930361:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491756930361%3Amatrix.theocloud.dev","duration":5.500353,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:32.275800434Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:32.276016805Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6833,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491756930361:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491756930361%3Amatrix.theocloud.dev","duration":6.741309,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491756930361 (WA)"},"time":"2026-03-06T19:24:32.282868535Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:32.283720401Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:32.441874789Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6834,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491756930361:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491756930361%3Amatrix.theocloud.dev","duration":2.537577,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:32.444741043Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6835,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-237597657964579:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":55.569042,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Anjo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:32.501370499Z","message":"Request completed"} +{"level":"debug","transaction_id":"2911","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:32.514359194Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2911","time":"2026-03-06T19:24:32.514656023Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6836,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-237597657964579:matrix.theocloud.dev?user_id=%40whatsapp_lid-237597657964579%3Amatrix.theocloud.dev","duration":64.614794,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Anjo (WA)","membership":"join"},"time":"2026-03-06T19:24:32.56679246Z","message":"Request completed"} +{"level":"debug","transaction_id":"2912","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:32.578948845Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2912","time":"2026-03-06T19:24:32.579282272Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6837,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-84533647044725:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":70.812661,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xuXwDpEPvVNdgnvHGCkogLQz","com.beeper.exclude_from_timeline":true,"displayname":"Martin Ryu (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:32.638657644Z","message":"Request completed"} +{"level":"debug","transaction_id":"2913","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:32.65170731Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2913","time":"2026-03-06T19:24:32.652062807Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6838,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-84533647044725:matrix.theocloud.dev?user_id=%40whatsapp_lid-84533647044725%3Amatrix.theocloud.dev","duration":65.593493,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/xuXwDpEPvVNdgnvHGCkogLQz","com.beeper.exclude_from_timeline":true,"displayname":"Martin Ryu (WA)","membership":"join"},"time":"2026-03-06T19:24:32.704986994Z","message":"Request completed"} +{"level":"debug","transaction_id":"2914","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:32.720070466Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2914","time":"2026-03-06T19:24:32.720426661Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6839,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66709616595045:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":98.416815,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Christian (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:32.804645813Z","message":"Request completed"} +{"level":"debug","transaction_id":"2915","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:32.847293209Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2915","time":"2026-03-06T19:24:32.84765136Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2916","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:32.862351258Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2916","time":"2026-03-06T19:24:32.86270892Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","portal_mxid":"!JmVDWCppZlZeFbcgKz:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$lsY5-YyneO2RCKJ3tGHiVT3ORvINIcGR8eqAwKIl4cQ","event_type":"m.room.member","event_id":"$lsY5-YyneO2RCKJ3tGHiVT3ORvINIcGR8eqAwKIl4cQ","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:32.863210317Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6840,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66709616595045:matrix.theocloud.dev?user_id=%40whatsapp_lid-66709616595045%3Amatrix.theocloud.dev","duration":144.389119,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Christian (WA)","membership":"join"},"time":"2026-03-06T19:24:32.949967116Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:32.950919624Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6841,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917676631864%3Amatrix.theocloud.dev","duration":8.825192,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917676631864","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:32.960044229Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6842,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917676631864:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917676631864%3Amatrix.theocloud.dev","duration":6.763658,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:32.967263328Z","message":"Request completed"} +{"level":"debug","transaction_id":"2917","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:32.967524329Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2917","time":"2026-03-06T19:24:32.967857825Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6843,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917676631864:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917676631864%3Amatrix.theocloud.dev","duration":6.746478,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917676631864 (WA)"},"time":"2026-03-06T19:24:32.974209136Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:32.974745593Z","message":""} +{"level":"debug","transaction_id":"2918","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:33.042472487Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2918","time":"2026-03-06T19:24:33.042604419Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:33.131830069Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6844,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917676631864:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917676631864%3Amatrix.theocloud.dev","duration":2.676284,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:33.134818617Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6845,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-39964771365006:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.316286,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fkvGUnFmYnkpxGHAWbhMPNWK","com.beeper.exclude_from_timeline":true,"displayname":"Wowaa (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:33.197028116Z","message":"Request completed"} +{"level":"debug","transaction_id":"2919","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:33.208597198Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2919","time":"2026-03-06T19:24:33.208929018Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6846,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-39964771365006:matrix.theocloud.dev?user_id=%40whatsapp_lid-39964771365006%3Amatrix.theocloud.dev","duration":49.04124,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fkvGUnFmYnkpxGHAWbhMPNWK","com.beeper.exclude_from_timeline":true,"displayname":"Wowaa (WA)","membership":"join"},"time":"2026-03-06T19:24:33.246794458Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:33.247818973Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6847,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917643137297%3Amatrix.theocloud.dev","duration":10.305357,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917643137297","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:33.258436036Z","message":"Request completed"} +{"level":"debug","transaction_id":"2920","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:33.261648288Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2920","time":"2026-03-06T19:24:33.26193527Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6848,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917643137297:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917643137297%3Amatrix.theocloud.dev","duration":7.506989,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:33.266400142Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6849,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917643137297:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917643137297%3Amatrix.theocloud.dev","duration":22.67043,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917643137297 (WA)"},"time":"2026-03-06T19:24:33.289279122Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:33.29022695Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:33.447570191Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6850,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917643137297:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917643137297%3Amatrix.theocloud.dev","duration":2.664899,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:33.45058919Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:33.451431348Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6851,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491741768036%3Amatrix.theocloud.dev","duration":3.579134,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491741768036","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:33.455296415Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6852,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741768036:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491741768036%3Amatrix.theocloud.dev","duration":1.989455,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:33.457625094Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6853,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741768036:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491741768036%3Amatrix.theocloud.dev","duration":6.210928,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491741768036 (WA)"},"time":"2026-03-06T19:24:33.464039332Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:33.464946652Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:33.638161115Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6854,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=avatar.jpg&user_id=%40whatsapp_491741768036%3Amatrix.theocloud.dev","duration":77.593362,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<43791 bytes>","time":"2026-03-06T19:24:33.727288428Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6855,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741768036:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491741768036%3Amatrix.theocloud.dev","duration":2.548961,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:33.730230112Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6856,"method":"GET","url":"http://synapse:8008/_matrix/client/v1/media/download/matrix.theocloud.dev/BlBTODUQQHbVoqYrJRoDjhYn?user_id=%40whatsapp_491741768036%3Amatrix.theocloud.dev","duration":2.67803,"status_code":200,"response_length":43791,"response_mime":"image/jpeg","time":"2026-03-06T19:24:33.733105725Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6857,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491741768036:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491741768036%3Amatrix.theocloud.dev","duration":3.888604,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/BlBTODUQQHbVoqYrJRoDjhYn"},"time":"2026-03-06T19:24:33.737310784Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6858,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-161684144570509:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":57.767046,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Pablo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:33.796199636Z","message":"Request completed"} +{"level":"debug","transaction_id":"2921","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:33.805251744Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2921","time":"2026-03-06T19:24:33.805621978Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6859,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-161684144570509:matrix.theocloud.dev?user_id=%40whatsapp_lid-161684144570509%3Amatrix.theocloud.dev","duration":59.23485,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Pablo (WA)","membership":"join"},"time":"2026-03-06T19:24:33.856217137Z","message":"Request completed"} +{"level":"debug","transaction_id":"2922","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:33.867786917Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2922","time":"2026-03-06T19:24:33.868010622Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6860,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-132040297042065:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":65.468475,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CGMeOSInUcXdBaRwfxBsCOZP","com.beeper.exclude_from_timeline":true,"displayname":"+4917674993720 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:33.922808536Z","message":"Request completed"} +{"level":"debug","transaction_id":"2923","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:33.93292909Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2923","time":"2026-03-06T19:24:33.933078622Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6861,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-132040297042065:matrix.theocloud.dev?user_id=%40whatsapp_lid-132040297042065%3Amatrix.theocloud.dev","duration":45.007084,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/CGMeOSInUcXdBaRwfxBsCOZP","com.beeper.exclude_from_timeline":true,"displayname":"+4917674993720 (WA)","membership":"join"},"time":"2026-03-06T19:24:33.968327075Z","message":"Request completed"} +{"level":"debug","transaction_id":"2924","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:33.978096672Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2924","time":"2026-03-06T19:24:33.978355507Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6862,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-171970641588327:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":45.881579,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mODkhRBKBjXICXcogpqdCVEb","com.beeper.exclude_from_timeline":true,"displayname":"Wik Wak (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:34.015131409Z","message":"Request completed"} +{"level":"debug","transaction_id":"2925","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:34.025353374Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2925","time":"2026-03-06T19:24:34.025665778Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6863,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-171970641588327:matrix.theocloud.dev?user_id=%40whatsapp_lid-171970641588327%3Amatrix.theocloud.dev","duration":60.174786,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/mODkhRBKBjXICXcogpqdCVEb","com.beeper.exclude_from_timeline":true,"displayname":"Wik Wak (WA)","membership":"join"},"time":"2026-03-06T19:24:34.076016839Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:34.076863606Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6864,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491783166911%3Amatrix.theocloud.dev","duration":7.3958,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491783166911","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:34.084567341Z","message":"Request completed"} +{"level":"debug","transaction_id":"2926","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:34.08927254Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2926","time":"2026-03-06T19:24:34.08960904Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6865,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783166911:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783166911%3Amatrix.theocloud.dev","duration":6.881832,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:34.091805088Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6866,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783166911:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783166911%3Amatrix.theocloud.dev","duration":6.597993,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491783166911 (WA)"},"time":"2026-03-06T19:24:34.098621338Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:34.099470759Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:34.259099307Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6867,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783166911:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491783166911%3Amatrix.theocloud.dev","duration":2.326584,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:34.261753311Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6868,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-4462622052463:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":73.219773,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fzFzEHxxDDIHweOqMltfFiNC","com.beeper.exclude_from_timeline":true,"displayname":"+4915756437140 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:34.335953948Z","message":"Request completed"} +{"level":"debug","transaction_id":"2927","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:34.349050618Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2927","time":"2026-03-06T19:24:34.349435868Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6869,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-4462622052463:matrix.theocloud.dev?user_id=%40whatsapp_lid-4462622052463%3Amatrix.theocloud.dev","duration":66.517576,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/fzFzEHxxDDIHweOqMltfFiNC","com.beeper.exclude_from_timeline":true,"displayname":"+4915756437140 (WA)","membership":"join"},"time":"2026-03-06T19:24:34.403249076Z","message":"Request completed"} +{"level":"debug","transaction_id":"2928","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:34.418375571Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2928","time":"2026-03-06T19:24:34.418751322Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6870,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38276949905550:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":72.359108,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KEUxPVqyNVnUIADeRCgdyddY","com.beeper.exclude_from_timeline":true,"displayname":"vladislavilcuk8 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:34.476630953Z","message":"Request completed"} +{"level":"debug","transaction_id":"2929","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:34.490175592Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2929","time":"2026-03-06T19:24:34.490529552Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6871,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-38276949905550:matrix.theocloud.dev?user_id=%40whatsapp_lid-38276949905550%3Amatrix.theocloud.dev","duration":71.499909,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KEUxPVqyNVnUIADeRCgdyddY","com.beeper.exclude_from_timeline":true,"displayname":"vladislavilcuk8 (WA)","membership":"join"},"time":"2026-03-06T19:24:34.548892491Z","message":"Request completed"} +{"level":"debug","transaction_id":"2930","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:34.56436219Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2930","time":"2026-03-06T19:24:34.56473843Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6872,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-142237052747971:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.112137,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RUfAjzzmEtZNjyJaBdBobqpK","com.beeper.exclude_from_timeline":true,"displayname":"Nico (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:34.610352793Z","message":"Request completed"} +{"level":"debug","transaction_id":"2931","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:34.619615615Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2931","time":"2026-03-06T19:24:34.619869003Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6873,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-142237052747971:matrix.theocloud.dev?user_id=%40whatsapp_lid-142237052747971%3Amatrix.theocloud.dev","duration":59.356305,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/RUfAjzzmEtZNjyJaBdBobqpK","com.beeper.exclude_from_timeline":true,"displayname":"Nico (WA)","membership":"join"},"time":"2026-03-06T19:24:34.670531839Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:34.671396346Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6874,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915225973389%3Amatrix.theocloud.dev","duration":8.329521,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915225973389","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:34.680079757Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6875,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915225973389:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915225973389%3Amatrix.theocloud.dev","duration":6.798579,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:34.687296971Z","message":"Request completed"} +{"level":"debug","transaction_id":"2932","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:34.690344187Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2932","time":"2026-03-06T19:24:34.690679778Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6876,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915225973389:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915225973389%3Amatrix.theocloud.dev","duration":10.707089,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915225973389 (WA)"},"time":"2026-03-06T19:24:34.698235098Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:34.699078094Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:35.19142226Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6877,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915225973389:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915225973389%3Amatrix.theocloud.dev","duration":2.778393,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:35.194556429Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:35.195388459Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6878,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_380952823600%3Amatrix.theocloud.dev","duration":3.773714,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_380952823600","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:35.199459003Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6879,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380952823600:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380952823600%3Amatrix.theocloud.dev","duration":2.220772,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:35.202015577Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6880,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380952823600:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380952823600%3Amatrix.theocloud.dev","duration":6.769316,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+380952823600 (WA)"},"time":"2026-03-06T19:24:35.208970813Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:35.209754721Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:35.359385358Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6881,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380952823600:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380952823600%3Amatrix.theocloud.dev","duration":2.255274,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:35.361969589Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6882,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-275436907065507:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.745607,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kMNAyBmvwClFmEiXNrbZnBiI","com.beeper.exclude_from_timeline":true,"displayname":"Silvia🌻 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:35.425703185Z","message":"Request completed"} +{"level":"debug","transaction_id":"2933","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:35.434542693Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2933","time":"2026-03-06T19:24:35.434847415Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6883,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-275436907065507:matrix.theocloud.dev?user_id=%40whatsapp_lid-275436907065507%3Amatrix.theocloud.dev","duration":62.295963,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kMNAyBmvwClFmEiXNrbZnBiI","com.beeper.exclude_from_timeline":true,"displayname":"Silvia🌻 (WA)","membership":"join"},"time":"2026-03-06T19:24:35.488822588Z","message":"Request completed"} +{"level":"debug","transaction_id":"2934","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:35.503753733Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2934","time":"2026-03-06T19:24:35.504063553Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6884,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-67585655734448:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":75.730041,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Kadl (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:35.565559824Z","message":"Request completed"} +{"level":"debug","transaction_id":"2935","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:35.579440892Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2935","time":"2026-03-06T19:24:35.57976943Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6885,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-67585655734448:matrix.theocloud.dev?user_id=%40whatsapp_lid-67585655734448%3Amatrix.theocloud.dev","duration":72.42441,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Kadl (WA)","membership":"join"},"time":"2026-03-06T19:24:35.63853906Z","message":"Request completed"} +{"level":"debug","transaction_id":"2936","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:35.65137927Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2936","time":"2026-03-06T19:24:35.651723382Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6886,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-1868377903307:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.107956,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/josalcwOaHhipxOzMyIRmnbn","com.beeper.exclude_from_timeline":true,"displayname":"+4917624327157 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:35.713655608Z","message":"Request completed"} +{"level":"debug","transaction_id":"2937","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:35.722492462Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2937","time":"2026-03-06T19:24:35.722784333Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6887,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-1868377903307:matrix.theocloud.dev?user_id=%40whatsapp_lid-1868377903307%3Amatrix.theocloud.dev","duration":63.70042,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/josalcwOaHhipxOzMyIRmnbn","com.beeper.exclude_from_timeline":true,"displayname":"+4917624327157 (WA)","membership":"join"},"time":"2026-03-06T19:24:35.778082457Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:35.778802809Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6888,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491729913174%3Amatrix.theocloud.dev","duration":6.71009,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491729913174","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:35.785739607Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6889,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729913174:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491729913174%3Amatrix.theocloud.dev","duration":4.814782,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:35.790917428Z","message":"Request completed"} +{"level":"debug","transaction_id":"2938","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:35.794963597Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2938","time":"2026-03-06T19:24:35.795288852Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6890,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729913174:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491729913174%3Amatrix.theocloud.dev","duration":10.822189,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491729913174 (WA)"},"time":"2026-03-06T19:24:35.802001805Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:35.802858839Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:35.968324938Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6891,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491729913174:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491729913174%3Amatrix.theocloud.dev","duration":2.224963,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:35.970862375Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6892,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-201528505827559:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":61.690571,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491739356181 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:36.033470184Z","message":"Request completed"} +{"level":"debug","transaction_id":"2939","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.046557216Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2939","time":"2026-03-06T19:24:36.046860052Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6893,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-201528505827559:matrix.theocloud.dev?user_id=%40whatsapp_lid-201528505827559%3Amatrix.theocloud.dev","duration":68.931391,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491739356181 (WA)","membership":"join"},"time":"2026-03-06T19:24:36.103196659Z","message":"Request completed"} +{"level":"debug","transaction_id":"2940","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.115763227Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2940","time":"2026-03-06T19:24:36.116060266Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6894,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-138035987497154:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":69.943265,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Claire✨ (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:36.174194403Z","message":"Request completed"} +{"level":"debug","transaction_id":"2941","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.189143149Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2941","time":"2026-03-06T19:24:36.189494595Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6895,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-138035987497154:matrix.theocloud.dev?user_id=%40whatsapp_lid-138035987497154%3Amatrix.theocloud.dev","duration":71.020442,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Claire✨ (WA)","membership":"join"},"time":"2026-03-06T19:24:36.246079561Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:36.247007904Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6896,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_380963593256%3Amatrix.theocloud.dev","duration":5.14765,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_380963593256","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:36.25244896Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6897,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380963593256:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380963593256%3Amatrix.theocloud.dev","duration":4.559299,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:36.257387084Z","message":"Request completed"} +{"level":"debug","transaction_id":"2942","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.260577056Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2942","time":"2026-03-06T19:24:36.2608896Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6898,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380963593256:matrix.theocloud.dev/displayname?user_id=%40whatsapp_380963593256%3Amatrix.theocloud.dev","duration":9.300817,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+380963593256 (WA)"},"time":"2026-03-06T19:24:36.266935211Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:36.267723939Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:36.422817842Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6899,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_380963593256:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_380963593256%3Amatrix.theocloud.dev","duration":1.720283,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:36.424789628Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6900,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-114310957285378:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.184915,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qowbxNqvTeLckjJmHZFKWdXe","com.beeper.exclude_from_timeline":true,"displayname":"Taha, (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:36.488606545Z","message":"Request completed"} +{"level":"debug","transaction_id":"2943","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.496936205Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2943","time":"2026-03-06T19:24:36.497268864Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6901,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-114310957285378:matrix.theocloud.dev?user_id=%40whatsapp_lid-114310957285378%3Amatrix.theocloud.dev","duration":66.612351,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/qowbxNqvTeLckjJmHZFKWdXe","com.beeper.exclude_from_timeline":true,"displayname":"Taha, (WA)","membership":"join"},"time":"2026-03-06T19:24:36.555993935Z","message":"Request completed"} +{"level":"debug","transaction_id":"2944","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.572069375Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2944","time":"2026-03-06T19:24:36.572347068Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6902,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-151414944854040:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":68.352749,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jonas (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:36.625609222Z","message":"Request completed"} +{"level":"debug","transaction_id":"2945","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.635565926Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2945","time":"2026-03-06T19:24:36.63582078Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6903,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-151414944854040:matrix.theocloud.dev?user_id=%40whatsapp_lid-151414944854040%3Amatrix.theocloud.dev","duration":49.423417,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jonas (WA)","membership":"join"},"time":"2026-03-06T19:24:36.675570563Z","message":"Request completed"} +{"level":"debug","transaction_id":"2946","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.686228553Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2946","time":"2026-03-06T19:24:36.686602768Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6904,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-168212561981526:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.950244,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Dya (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:36.737686543Z","message":"Request completed"} +{"level":"debug","transaction_id":"2947","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.750602392Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2947","time":"2026-03-06T19:24:36.750930161Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6905,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-168212561981526:matrix.theocloud.dev?user_id=%40whatsapp_lid-168212561981526%3Amatrix.theocloud.dev","duration":63.253779,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Dya (WA)","membership":"join"},"time":"2026-03-06T19:24:36.80167171Z","message":"Request completed"} +{"level":"debug","transaction_id":"2948","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.814346673Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2948","time":"2026-03-06T19:24:36.814646715Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6906,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-32156537630722:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":69.323696,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Aaron (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:36.87185642Z","message":"Request completed"} +{"level":"debug","transaction_id":"2949","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.887106884Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2949","time":"2026-03-06T19:24:36.887436889Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6907,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-32156537630722:matrix.theocloud.dev?user_id=%40whatsapp_lid-32156537630722%3Amatrix.theocloud.dev","duration":75.616269,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Aaron (WA)","membership":"join"},"time":"2026-03-06T19:24:36.948124875Z","message":"Request completed"} +{"level":"debug","transaction_id":"2950","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:36.962908165Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2950","time":"2026-03-06T19:24:36.963239985Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6908,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256693099352121:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":79.478612,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jules (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:37.0286338Z","message":"Request completed"} +{"level":"debug","transaction_id":"2951","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:37.040207002Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2951","time":"2026-03-06T19:24:37.040452497Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6909,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-256693099352121:matrix.theocloud.dev?user_id=%40whatsapp_lid-256693099352121%3Amatrix.theocloud.dev","duration":48.325078,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Jules (WA)","membership":"join"},"time":"2026-03-06T19:24:37.077581381Z","message":"Request completed"} +{"level":"debug","transaction_id":"2952","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:37.087584112Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2952","time":"2026-03-06T19:24:37.087891976Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6910,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242661625704624:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":69.66264,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uqwUMQmMtuKNwqDZtQRUNROn","com.beeper.exclude_from_timeline":true,"displayname":"Chris (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:37.148022761Z","message":"Request completed"} +{"level":"debug","transaction_id":"2953","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:37.163179637Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2953","time":"2026-03-06T19:24:37.163417171Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6911,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-242661625704624:matrix.theocloud.dev?user_id=%40whatsapp_lid-242661625704624%3Amatrix.theocloud.dev","duration":72.311056,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/uqwUMQmMtuKNwqDZtQRUNROn","com.beeper.exclude_from_timeline":true,"displayname":"Chris (WA)","membership":"join"},"time":"2026-03-06T19:24:37.221035592Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:37.221932925Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6912,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491704035395%3Amatrix.theocloud.dev","duration":12.078092,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491704035395","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:37.234313224Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6913,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491704035395:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491704035395%3Amatrix.theocloud.dev","duration":6.191791,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:37.240937896Z","message":"Request completed"} +{"level":"debug","transaction_id":"2954","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:37.243562077Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2954","time":"2026-03-06T19:24:37.243897949Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6914,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491704035395:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491704035395%3Amatrix.theocloud.dev","duration":9.71505,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491704035395 (WA)"},"time":"2026-03-06T19:24:37.250855489Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:37.251714967Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:37.408404276Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6915,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491704035395:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491704035395%3Amatrix.theocloud.dev","duration":2.646531,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:37.411399249Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6916,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-40566117134352:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":75.429301,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mustafa (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:37.487842519Z","message":"Request completed"} +{"level":"debug","transaction_id":"2955","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:37.500928574Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2955","time":"2026-03-06T19:24:37.501270172Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6917,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-40566117134352:matrix.theocloud.dev?user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":74.569055,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Mustafa (WA)","membership":"join"},"time":"2026-03-06T19:24:37.563219928Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:37.564108181Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6918,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915257212017%3Amatrix.theocloud.dev","duration":8.677265,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915257212017","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:37.573062231Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6919,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915257212017:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915257212017%3Amatrix.theocloud.dev","duration":4.142132,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:37.577640038Z","message":"Request completed"} +{"level":"debug","transaction_id":"2956","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:37.580076693Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2956","time":"2026-03-06T19:24:37.580402367Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6920,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915257212017:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915257212017%3Amatrix.theocloud.dev","duration":10.267782,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915257212017 (WA)"},"time":"2026-03-06T19:24:37.588113854Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:37.588951751Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:37.879514387Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6921,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915257212017:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915257212017%3Amatrix.theocloud.dev","duration":2.814501,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:37.882706804Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6922,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-74122562388154:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.429362,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491733430974 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:37.94735163Z","message":"Request completed"} +{"level":"debug","transaction_id":"2957","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:37.963136108Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2957","time":"2026-03-06T19:24:37.963480221Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6923,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-74122562388154:matrix.theocloud.dev?user_id=%40whatsapp_lid-74122562388154%3Amatrix.theocloud.dev","duration":76.311547,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491733430974 (WA)","membership":"join"},"time":"2026-03-06T19:24:38.024448344Z","message":"Request completed"} +{"level":"debug","transaction_id":"2958","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:38.039488025Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2958","time":"2026-03-06T19:24:38.039816143Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6924,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-131026634416177:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":81.800935,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:38.107244391Z","message":"Request completed"} +{"level":"debug","transaction_id":"2959","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:38.119958885Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2959","time":"2026-03-06T19:24:38.120286096Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6925,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-131026634416177:matrix.theocloud.dev?user_id=%40whatsapp_lid-131026634416177%3Amatrix.theocloud.dev","duration":72.098038,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Karl (WA)","membership":"join"},"time":"2026-03-06T19:24:38.180167405Z","message":"Request completed"} +{"level":"debug","transaction_id":"2960","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:38.189970247Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2960","time":"2026-03-06T19:24:38.190256041Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6926,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-40007670730843:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":82.079535,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dbcfiZwQrlEWDstcADbqIcQD","com.beeper.exclude_from_timeline":true,"displayname":"+491771848907 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:38.263263843Z","message":"Request completed"} +{"level":"debug","transaction_id":"2961","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:38.272080374Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2961","time":"2026-03-06T19:24:38.272436778Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6927,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-40007670730843:matrix.theocloud.dev?user_id=%40whatsapp_lid-40007670730843%3Amatrix.theocloud.dev","duration":59.301339,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/dbcfiZwQrlEWDstcADbqIcQD","com.beeper.exclude_from_timeline":true,"displayname":"+491771848907 (WA)","membership":"join"},"time":"2026-03-06T19:24:38.323160657Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:38.324266748Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6928,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4915111021159%3Amatrix.theocloud.dev","duration":6.106932,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4915111021159","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:38.330722053Z","message":"Request completed"} +{"level":"debug","transaction_id":"2962","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:38.334533412Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2962","time":"2026-03-06T19:24:38.334784425Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6929,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111021159:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915111021159%3Amatrix.theocloud.dev","duration":5.307588,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:38.336297207Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6930,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111021159:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4915111021159%3Amatrix.theocloud.dev","duration":4.128583,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4915111021159 (WA)"},"time":"2026-03-06T19:24:38.340563379Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:38.3410719Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:38.499684313Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6931,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4915111021159:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4915111021159%3Amatrix.theocloud.dev","duration":2.289148,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:38.502302208Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6932,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-191890615967944:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":64.646363,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WXFCwGrYJjAqeVGOQlsciqpp","com.beeper.exclude_from_timeline":true,"displayname":"davidevo_ (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:38.568014713Z","message":"Request completed"} +{"level":"debug","transaction_id":"2963","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:38.581344586Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2963","time":"2026-03-06T19:24:38.58163932Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6933,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-191890615967944:matrix.theocloud.dev?user_id=%40whatsapp_lid-191890615967944%3Amatrix.theocloud.dev","duration":65.54621,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/WXFCwGrYJjAqeVGOQlsciqpp","com.beeper.exclude_from_timeline":true,"displayname":"davidevo_ (WA)","membership":"join"},"time":"2026-03-06T19:24:38.634253059Z","message":"Request completed"} +{"level":"debug","transaction_id":"2964","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:38.649318162Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2964","time":"2026-03-06T19:24:38.649689792Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6934,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101455885258766:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":78.017653,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kpIsBtlWKvidTtFuTgqNYJHg","com.beeper.exclude_from_timeline":true,"displayname":"dokkis (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:38.713366885Z","message":"Request completed"} +{"level":"debug","transaction_id":"2965","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:38.722933521Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2965","time":"2026-03-06T19:24:38.723254097Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6935,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-101455885258766:matrix.theocloud.dev?user_id=%40whatsapp_lid-101455885258766%3Amatrix.theocloud.dev","duration":70.718584,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/kpIsBtlWKvidTtFuTgqNYJHg","com.beeper.exclude_from_timeline":true,"displayname":"dokkis (WA)","membership":"join"},"time":"2026-03-06T19:24:38.784728087Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:38.7855502Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6936,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4917632073067%3Amatrix.theocloud.dev","duration":7.931909,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4917632073067","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:38.793748976Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6937,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917632073067:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917632073067%3Amatrix.theocloud.dev","duration":3.77972,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:38.797902283Z","message":"Request completed"} +{"level":"debug","transaction_id":"2966","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:38.80037316Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2966","time":"2026-03-06T19:24:38.800661818Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6938,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917632073067:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4917632073067%3Amatrix.theocloud.dev","duration":9.067893,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+4917632073067 (WA)"},"time":"2026-03-06T19:24:38.807203588Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:38.807966055Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:38.956465667Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6939,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4917632073067:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4917632073067%3Amatrix.theocloud.dev","duration":2.427086,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:38.959266339Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6940,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-208864729415934:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":99.986728,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491624100405 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:39.060251461Z","message":"Request completed"} +{"level":"debug","transaction_id":"2967","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:39.077457857Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2967","time":"2026-03-06T19:24:39.07773513Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6941,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-208864729415934:matrix.theocloud.dev?user_id=%40whatsapp_lid-208864729415934%3Amatrix.theocloud.dev","duration":82.941109,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491624100405 (WA)","membership":"join"},"time":"2026-03-06T19:24:39.143935343Z","message":"Request completed"} +{"level":"debug","transaction_id":"2968","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:39.152526911Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2968","time":"2026-03-06T19:24:39.152818922Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6942,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127023708139556:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":74.11976,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491749442314 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:39.219154628Z","message":"Request completed"} +{"level":"debug","transaction_id":"2969","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:39.233595202Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2969","time":"2026-03-06T19:24:39.233925626Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6943,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-127023708139556:matrix.theocloud.dev?user_id=%40whatsapp_lid-127023708139556%3Amatrix.theocloud.dev","duration":78.641554,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+491749442314 (WA)","membership":"join"},"time":"2026-03-06T19:24:39.29841198Z","message":"Request completed"} +{"level":"debug","transaction_id":"2970","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:39.310399417Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2970","time":"2026-03-06T19:24:39.310675922Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6944,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-183953482854532:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.991392,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tmSasSjAiixhQfdTpmlCdZGi","com.beeper.exclude_from_timeline":true,"displayname":"+491729913174 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:39.376428585Z","message":"Request completed"} +{"level":"debug","transaction_id":"2971","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:39.38715104Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2971","time":"2026-03-06T19:24:39.387466797Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6945,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-183953482854532:matrix.theocloud.dev?user_id=%40whatsapp_lid-183953482854532%3Amatrix.theocloud.dev","duration":59.527488,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/tmSasSjAiixhQfdTpmlCdZGi","com.beeper.exclude_from_timeline":true,"displayname":"+491729913174 (WA)","membership":"join"},"time":"2026-03-06T19:24:39.436634172Z","message":"Request completed"} +{"level":"debug","transaction_id":"2972","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:39.447509371Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2972","time":"2026-03-06T19:24:39.447756612Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6946,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-156203732750524:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":60.823201,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Wally (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:39.498110816Z","message":"Request completed"} +{"level":"debug","transaction_id":"2973","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:39.509380135Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2973","time":"2026-03-06T19:24:39.509666907Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6947,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-156203732750524:matrix.theocloud.dev?user_id=%40whatsapp_lid-156203732750524%3Amatrix.theocloud.dev","duration":55.03,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"Wally (WA)","membership":"join"},"time":"2026-03-06T19:24:39.553676016Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:39.554656391Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6948,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_4916097387534%3Amatrix.theocloud.dev","duration":5.203453,"status_code":200,"response_length":95,"response_mime":"application/json","req_body":{"username":"whatsapp_4916097387534","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:39.560141658Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6949,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916097387534:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4916097387534%3Amatrix.theocloud.dev","duration":4.673491,"status_code":200,"response_length":40,"response_mime":"application/json","time":"2026-03-06T19:24:39.565126297Z","message":"Request completed"} +{"level":"debug","transaction_id":"2974","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:39.568818365Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2974","time":"2026-03-06T19:24:39.569142293Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6950,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916097387534:matrix.theocloud.dev/displayname?user_id=%40whatsapp_4916097387534%3Amatrix.theocloud.dev","duration":10.004127,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"Juan Pablo (WA)"},"time":"2026-03-06T19:24:39.575351475Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:39.575977191Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:39.725898301Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6951,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_4916097387534:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_4916097387534%3Amatrix.theocloud.dev","duration":2.352565,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:39.728576679Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:39.72942163Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6952,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491629094532%3Amatrix.theocloud.dev","duration":3.576619,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491629094532","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:39.733276082Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6953,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491629094532:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491629094532%3Amatrix.theocloud.dev","duration":2.2485,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:39.735855704Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6954,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491629094532:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491629094532%3Amatrix.theocloud.dev","duration":6.752344,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491629094532 (WA)"},"time":"2026-03-06T19:24:39.742767777Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:39.743583185Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:39.92616202Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6955,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491629094532:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491629094532%3Amatrix.theocloud.dev","duration":2.494414,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:39.929085196Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6956,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-270832349786148:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":76.028197,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"MrCarter (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:40.006149503Z","message":"Request completed"} +{"level":"debug","transaction_id":"2975","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.016415259Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2975","time":"2026-03-06T19:24:40.01672913Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6957,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-270832349786148:matrix.theocloud.dev?user_id=%40whatsapp_lid-270832349786148%3Amatrix.theocloud.dev","duration":51.184487,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"MrCarter (WA)","membership":"join"},"time":"2026-03-06T19:24:40.05804673Z","message":"Request completed"} +{"level":"debug","transaction_id":"2976","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.06855875Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2976","time":"2026-03-06T19:24:40.068848805Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6958,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66993117999129:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":51.95366,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gorgSLdztPtQjtXDzzPCYOLG","com.beeper.exclude_from_timeline":true,"displayname":"+4915257212017 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:40.110824668Z","message":"Request completed"} +{"level":"debug","transaction_id":"2977","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.120624926Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2977","time":"2026-03-06T19:24:40.120899127Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6959,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-66993117999129:matrix.theocloud.dev?user_id=%40whatsapp_lid-66993117999129%3Amatrix.theocloud.dev","duration":60.440955,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/gorgSLdztPtQjtXDzzPCYOLG","com.beeper.exclude_from_timeline":true,"displayname":"+4915257212017 (WA)","membership":"join"},"time":"2026-03-06T19:24:40.171948051Z","message":"Request completed"} +{"level":"debug","transaction_id":"2978","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.186219397Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2978","time":"2026-03-06T19:24:40.186593332Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6960,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-261430381154547:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":81.682274,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917672718576 (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:40.254829305Z","message":"Request completed"} +{"level":"debug","transaction_id":"2979","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.268166512Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2979","time":"2026-03-06T19:24:40.26863655Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6961,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-261430381154547:matrix.theocloud.dev?user_id=%40whatsapp_lid-261430381154547%3Amatrix.theocloud.dev","duration":80.425952,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"com.beeper.exclude_from_timeline":true,"displayname":"+4917672718576 (WA)","membership":"join"},"time":"2026-03-06T19:24:40.335954098Z","message":"Request completed"} +{"level":"debug","transaction_id":"2980","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.349219996Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2980","time":"2026-03-06T19:24:40.349595957Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6962,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-62921489018884:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":67.154537,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KaEibHlhaiLVpwVMsqKOOYvc","com.beeper.exclude_from_timeline":true,"displayname":"Nate Jo (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:40.404092641Z","message":"Request completed"} +{"level":"debug","transaction_id":"2981","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.421699931Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2981","time":"2026-03-06T19:24:40.421922308Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6963,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-62921489018884:matrix.theocloud.dev?user_id=%40whatsapp_lid-62921489018884%3Amatrix.theocloud.dev","duration":66.297154,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/KaEibHlhaiLVpwVMsqKOOYvc","com.beeper.exclude_from_timeline":true,"displayname":"Nate Jo (WA)","membership":"join"},"time":"2026-03-06T19:24:40.470908233Z","message":"Request completed"} +{"level":"debug","transaction_id":"2982","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.484537311Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2982","time":"2026-03-06T19:24:40.484846921Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6964,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-224927957410033:matrix.theocloud.dev?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":63.821038,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pRZshXqBfCrhzBxwISlhmuiI","com.beeper.exclude_from_timeline":true,"displayname":"Esther (WA)","fi.mau.will_auto_accept":true,"membership":"invite"},"time":"2026-03-06T19:24:40.535543142Z","message":"Request completed"} +{"level":"debug","transaction_id":"2983","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.546089454Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2983","time":"2026-03-06T19:24:40.546429376Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6965,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.member/@whatsapp_lid-224927957410033:matrix.theocloud.dev?user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":52.572601,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"avatar_url":"mxc://matrix.theocloud.dev/pRZshXqBfCrhzBxwISlhmuiI","com.beeper.exclude_from_timeline":true,"displayname":"Esther (WA)","membership":"join"},"time":"2026-03-06T19:24:40.588851322Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","has_name":false,"name_set":false,"has_avatar":false,"avatar_set":false,"time":"2026-03-06T19:24:40.589893367Z","message":"Updating ghost info in IfNecessary call"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6966,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/register?user_id=%40whatsapp_491783144400%3Amatrix.theocloud.dev","duration":6.311919,"status_code":200,"response_length":94,"response_mime":"application/json","req_body":{"username":"whatsapp_491783144400","inhibit_login":true,"type":"m.login.application_service"},"time":"2026-03-06T19:24:40.596488567Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6967,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783144400:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783144400%3Amatrix.theocloud.dev","duration":4.272806,"status_code":200,"response_length":39,"response_mime":"application/json","time":"2026-03-06T19:24:40.601186642Z","message":"Request completed"} +{"level":"debug","transaction_id":"2984","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.604472438Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2984","time":"2026-03-06T19:24:40.604778277Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6968,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783144400:matrix.theocloud.dev/displayname?user_id=%40whatsapp_491783144400%3Amatrix.theocloud.dev","duration":10.373034,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"displayname":"+491783144400 (WA)"},"time":"2026-03-06T19:24:40.611741056Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:40.612342188Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:40.76843239Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6969,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/profile/@whatsapp_491783144400:matrix.theocloud.dev/avatar_url?user_id=%40whatsapp_491783144400%3Amatrix.theocloud.dev","duration":2.502586,"status_code":200,"response_length":19,"response_mime":"application/json","time":"2026-03-06T19:24:40.771354169Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","req_id":6970,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/state/m.room.power_levels/?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":62.993477,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"users":{"@whatsapp_lid-21079833710744:matrix.theocloud.dev":50,"@whatsapp_lid-239363409617131:matrix.theocloud.dev":50,"@whatsapp_lid-275883097071617:matrix.theocloud.dev":50,"@whatsapp_lid-38504566390811:matrix.theocloud.dev":50,"@whatsapp_lid-44419206123644:matrix.theocloud.dev":75,"@whatsapp_lid-80358888464591:matrix.theocloud.dev":50,"@whatsappbot:matrix.theocloud.dev":9001},"events":{"com.beeper.disappearing_timer":50,"m.room.avatar":50,"m.room.encryption":100,"m.room.name":50,"m.room.server_acl":100,"m.room.tombstone":100,"m.room.topic":50},"state_default":99,"invite":0,"kick":50,"ban":99,"redact":50},"time":"2026-03-06T19:24:40.835171086Z","message":"Request completed"} +{"level":"info","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","latest_message_id":"","time":"2026-03-06T19:24:40.835700071Z","message":"Fetching messages for forward backfill"} +{"level":"debug","transaction_id":"2985","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:40.846705526Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2985","time":"2026-03-06T19:24:40.847006336Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6971,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":24.33945,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<52289 bytes>","time":"2026-03-06T19:24:40.882020189Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6972,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":236.506027,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<324666 bytes>","time":"2026-03-06T19:24:41.137104591Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6973,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":208.740188,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<270400 bytes>","time":"2026-03-06T19:24:41.361089097Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6974,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":22.544435,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2645717 bytes>","time":"2026-03-06T19:24:41.733490452Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6975,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":183.584563,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<207852 bytes>","time":"2026-03-06T19:24:41.932052536Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6976,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":147.900575,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<179095 bytes>","time":"2026-03-06T19:24:42.093609427Z","message":"Request completed"} +{"level":"debug","transaction_id":"2986","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:42.244352231Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2986","time":"2026-03-06T19:24:42.244656184Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","portal_mxid":"!JmVDWCppZlZeFbcgKz:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$w0wPintPGC85thlyQ-5New5_1v8-aKtLyXA_oQ2Cbu8","event_type":"m.room.member","event_id":"$w0wPintPGC85thlyQ-5New5_1v8-aKtLyXA_oQ2Cbu8","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:42.245182794Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"491605556877@s.whatsapp.net","portal_mxid":"!JmVDWCppZlZeFbcgKz:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$w0wPintPGC85thlyQ-5New5_1v8-aKtLyXA_oQ2Cbu8","event_type":"m.room.member","event_id":"$w0wPintPGC85thlyQ-5New5_1v8-aKtLyXA_oQ2Cbu8","sender":"@theo:matrix.theocloud.dev","login_id":"4917641870516","membership":"leave","prev_membership":"join","target_user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:24:42.246402029Z","message":"Dropping leave event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6977,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":191.216361,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<193079 bytes>","time":"2026-03-06T19:24:42.545130964Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6978,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":107.456561,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<189097 bytes>","time":"2026-03-06T19:24:42.66656728Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:24:42.801896957Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:24:42.968217924Z","message":"Failed to download media due to network error: stream error: stream ID 279; INTERNAL_ERROR; received from peer, retrying in 1s..."} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:24:43.994451401Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"warn","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:24:44.127067288Z","message":"Failed to download media due to network error: stream error: stream ID 283; INTERNAL_ERROR; received from peer, retrying in 1s..."} +{"level":"debug","transaction_id":"2987","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:44.373156294Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2987","time":"2026-03-06T19:24:44.373553905Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","portal_mxid":"!fWHCoPezLmCifCgnUg:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$jJKlFJgF3vBI8g9SEROj6QxtGapkTJvzz4HOoAron_I","event_type":"m.room.member","event_id":"$jJKlFJgF3vBI8g9SEROj6QxtGapkTJvzz4HOoAron_I","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:44.374130103Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"2988","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:44.55009558Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2988","time":"2026-03-06T19:24:44.550211239Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","error":"failed to download media: download failed with status code 410","media_type":"video attachment","time":"2026-03-06T19:24:45.154544165Z","message":"Failed to reupload WhatsApp attachment"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6979,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":94.416742,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<64264 bytes>","time":"2026-03-06T19:24:45.263157103Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6980,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=image.jpg&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":218.972909,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<366996 bytes>","time":"2026-03-06T19:24:46.333839974Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_count":100,"mark_read":true,"aggressive_deduplication":false,"time":"2026-03-06T19:24:46.33416488Z","message":"Fetched messages for forward backfill, deduplicating before sending"} +{"level":"info","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_count":100,"batch_send":false,"mark_read":true,"mark_read_past_threshold":false,"time":"2026-03-06T19:24:46.33424869Z","message":"Sending backfill messages"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6981,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086334634080_3?ts=1770495910000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":44.01798,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auch Calisthenics 💪🏽","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:46.378802708Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A851C196767FA16AD27","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-07T20:25:10Z","event_id":"$L6RO7N4UMq_mRECsH1iFT7XvGERNxJfQjLurkNytQI8","part_id":"","time":"2026-03-06T19:24:46.378932754Z","message":"Sent message part to Matrix"} +{"level":"warn","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","reply_to":{"MessageID":"120363163455706585@g.us:84533647044725@lid:3A296F0679AFAEC31066","PartID":null},"time":"2026-03-06T19:24:46.379774632Z","message":"Reply target message not found in database"} +{"level":"debug","transaction_id":"2989","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.387723443Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2989","time":"2026-03-06T19:24:46.387833235Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6982,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086379976407_4?ts=1770495946000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":34.829469,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Gute Besserung 💐","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:46.414929776Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3AEEB3C02FDB47A2AD41","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-07T20:25:46Z","event_id":"$n_lNb-NpAu1KKLzghw4OLCBAkGOzs5VyKhkyAZGBvbw","part_id":"","time":"2026-03-06T19:24:46.415026088Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2990","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.423590768Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2990","time":"2026-03-06T19:24:46.423679467Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6983,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086415910500_1?ts=1770496009000&user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":32.871513,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"In Carl-Sonnenschein-Grundschule?","m.mentions":{"user_ids":["@whatsapp_lid-44419206123644:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$L6RO7N4UMq_mRECsH1iFT7XvGERNxJfQjLurkNytQI8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:46.448910662Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:206734241087531@lid:3ADCA1A0762C7D29A379","sender_id":{"user_id":"lid-206734241087531","sender_login":"4915226357423"},"message_ts":"2026-02-07T20:26:49Z","event_id":"$sFV0hQ-kYYxqhLa44XkKtxTQWbsGbke1uGBQ8KCberM","part_id":"","time":"2026-03-06T19:24:46.449032327Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2991","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.467959494Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2991","time":"2026-03-06T19:24:46.46805881Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2992","content":{"pdu":0,"unstable_edu":5,"unstable_to_device":0},"time":"2026-03-06T19:24:46.487388618Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2992","time":"2026-03-06T19:24:46.487542899Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6984,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825086449653713_5?ts=1770496045395&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":65.660891,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$sFV0hQ-kYYxqhLa44XkKtxTQWbsGbke1uGBQ8KCberM","key":"👍🏽"}},"time":"2026-03-06T19:24:46.515433475Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:206734241087531@lid:3ADCA1A0762C7D29A379","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-02-07T20:27:25.395Z","event_id":"$IaNhG4SV-c_hiFNv9RYZiGNk7haDODUfi5SBMk1QJOA","time":"2026-03-06T19:24:46.515540683Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2993","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.523386826Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2993","time":"2026-03-06T19:24:46.523469798Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6985,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086515986067_2?ts=1770558944000&user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":32.468034,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich bin auf dem Weg","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:46.548543429Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:206734241087531@lid:3AC12B072F69A41A0160","sender_id":{"user_id":"lid-206734241087531","sender_login":"4915226357423"},"message_ts":"2026-02-08T13:55:44Z","event_id":"$fxNMZmtVJi-F786sLNceJnAxjEAwgJlMJPBF7Gdt6H8","part_id":"","time":"2026-03-06T19:24:46.54862724Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2994","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.557357725Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2994","time":"2026-03-06T19:24:46.557435459Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6986,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086549233470_3?ts=1770560301000&user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":32.712691,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sorry Leute, wo ist der Eingang? Ich bin ja draußen an der Schule.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:46.582064823Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:206734241087531@lid:3ADBE9E5B6B470FE1482","sender_id":{"user_id":"lid-206734241087531","sender_login":"4915226357423"},"message_ts":"2026-02-08T14:18:21Z","event_id":"$jeBdvas816XiicDpZ5BpbtHe7r44fJbRL9KvHoq5cl8","part_id":"","time":"2026-03-06T19:24:46.582174895Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2995","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.58783805Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2995","time":"2026-03-06T19:24:46.587913759Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6987,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086583136203_2?ts=1770560917000&user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":31.867601,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":366996,"w":945},"m.mentions":{"user_ids":["@whatsapp_lid-206734241087531:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$jeBdvas816XiicDpZ5BpbtHe7r44fJbRL9KvHoq5cl8"}},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/TJFVIRluylFNZwxgAVUTnHqD"},"time":"2026-03-06T19:24:46.61516919Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:38504566390811@lid:3AB0A600430E5CE7E6E3","sender_id":{"user_id":"lid-38504566390811","sender_login":"4917656979328"},"message_ts":"2026-02-08T14:28:37Z","event_id":"$ZlOh8KUm7_uSBRt5CcFKQKubQz_FJX6i9jrgqG3Edsw","part_id":"","time":"2026-03-06T19:24:46.615245737Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2996","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.625015055Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2996","time":"2026-03-06T19:24:46.625131412Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"2997","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:46.650997193Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2997","time":"2026-03-06T19:24:46.651066476Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6988,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825086616050948_3?ts=1770565035756&user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":58.416717,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$ZlOh8KUm7_uSBRt5CcFKQKubQz_FJX6i9jrgqG3Edsw","key":"❤️"}},"time":"2026-03-06T19:24:46.674594359Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:38504566390811@lid:3AB0A600430E5CE7E6E3","target_part_id":"","reaction_sender_id":{"user_id":"lid-40566117134352","sender_login":"491777059558"},"reaction_ts":"2026-02-08T15:37:15.756Z","event_id":"$ZANvP3yosRU9ZXDLk6d7D0sbzUZ_hp9M12vhJthuqvA","time":"2026-03-06T19:24:46.674733135Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"2998","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.688023059Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2998","time":"2026-03-06T19:24:46.68809353Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6989,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086675454815_6?ts=1770672605000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":48.471397,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Das Outdoor Training findet ab diese Woche wieder regelmäßig statt 💪🏽 Let’s goooo 🥷🏽🐉\n\n1. Dienstag 18-19 Uhr Endurance mit Burak 💪🏽\n\n2. Donnerstag 18-20 Uhr Skills mit Artur\n\n3. Freitag 18-19:30 Uhr Weighted mit Nes\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Dienstag 18-19 Uhr Endurance mit Burak 💪🏽","Donnerstag 18-20 Uhr Skills mit Artur","Freitag 18-19:30 Uhr Weighted mit Nes"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eDas Outdoor Training findet ab diese Woche wieder regelmäßig statt 💪🏽 Let’s goooo 🥷🏽🐉\u003c/p\u003e\u003col\u003e\u003cli\u003eDienstag 18-19 Uhr Endurance mit Burak 💪🏽\u003c/li\u003e\u003cli\u003eDonnerstag 18-20 Uhr Skills mit Artur\u003c/li\u003e\u003cli\u003eFreitag 18-19:30 Uhr Weighted mit Nes\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eDas Outdoor Training findet ab diese Woche wieder regelmäßig statt 💪🏽 Let’s goooo 🥷🏽🐉\u003c/p\u003e\u003col\u003e\u003cli\u003eDienstag 18-19 Uhr Endurance mit Burak 💪🏽\u003c/li\u003e\u003cli\u003eDonnerstag 18-20 Uhr Skills mit Artur\u003c/li\u003e\u003cli\u003eFreitag 18-19:30 Uhr Weighted mit Nes\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Das Outdoor Training findet ab diese Woche wieder regelmäßig statt 💪🏽 Let’s goooo 🥷🏽🐉\n\n1. Dienstag 18-19 Uhr Endurance mit Burak 💪🏽\n\n2. Donnerstag 18-20 Uhr Skills mit Artur\n\n3. Freitag 18-19:30 Uhr Weighted mit Nes\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"b90f39ac74b0d8155e6888196d74f6c3d2c86a19a142bee7f0129bdcd6ee7b00","org.matrix.msc1767.text":"Dienstag 18-19 Uhr Endurance mit Burak 💪🏽"},{"id":"094b1dd3e6c4c8b0eaea3c0691887c22d6f7d1d30a5f2363270b6d2cf0671c06","org.matrix.msc1767.text":"Donnerstag 18-20 Uhr Skills mit Artur"},{"id":"ed6cf397b8d514b64be37118c67d8d3e33d6d13ffcce1db688294f0259ee0499","org.matrix.msc1767.text":"Freitag 18-19:30 Uhr Weighted mit Nes"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":3,"question":{"org.matrix.msc1767.text":"Das Outdoor Training findet ab diese Woche wieder regelmäßig statt 💪🏽 Let’s goooo 🥷🏽🐉"}}},"time":"2026-03-06T19:24:46.72429002Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3AC5F8F82D6BF4E9A8EC","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-09T21:30:05Z","event_id":"$lyH4T2E3HIQgoEs0whkO2FVyB50CIxjVlVznxD8RcEk","part_id":"","time":"2026-03-06T19:24:46.724552348Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"2999","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.736650694Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"2999","time":"2026-03-06T19:24:46.736775152Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6990,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086725484182_7?ts=1770672833000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":34.180355,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"↷ Forwarded\n\nhttps://m.youtube.com/watch?v=bvRcUVjt1Zs\u0026pp=0gcJCTMBo7VqN5tD\u0026fbclid=PAZnRzaAP2rthleHRuA2FlbQIxMQBzcnRjBmFwcF9pZA8xMjQwMjQ1NzQyODc0MTQAAaeMZLSiiQH9KxZgfZytdbBg6T1npNmr0rRt0PdjkklbZPiqFWn12bfgOXepxg_aem_KHFFLn57zDBw5Od6iBLCIg#searching","format":"org.matrix.custom.html","formatted_body":"\u003cp data-mx-forwarded-notice\u003e\u003cem\u003e↷ Forwarded\u003c/em\u003e\u003c/p\u003ehttps://m.youtube.com/watch?v=bvRcUVjt1Zs\u0026amp;pp=0gcJCTMBo7VqN5tD\u0026amp;fbclid=PAZnRzaAP2rthleHRuA2FlbQIxMQBzcnRjBmFwcF9pZA8xMjQwMjQ1NzQyODc0MTQAAaeMZLSiiQH9KxZgfZytdbBg6T1npNmr0rRt0PdjkklbZPiqFWn12bfgOXepxg_aem_KHFFLn57zDBw5Od6iBLCIg#searching","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"Winter League Woche 2 - Rostock / Berlin","og:type":"video.other","og:description":"In der 2. Woche der Winter League 2026 waren wir zu Gast im Straßensport Gym in Rostock und bei den Jungs von Barsover9000 in Berlin.","og:image":"mxc://matrix.theocloud.dev/mzVDRfksoHZRtXcvFERtZVMC","matrix:image:size":64264,"og:image:width":1024,"og:image:height":576,"og:image:type":"image/jpeg","matched_url":"https://m.youtube.com/watch?v=bvRcUVjt1Zs\u0026pp=0gcJCTMBo7VqN5tD\u0026fbclid=PAZnRzaAP2rthleHRuA2FlbQIxMQBzcnRjBmFwcF9pZA8xMjQwMjQ1NzQyODc0MTQAAaeMZLSiiQH9KxZgfZytdbBg6T1npNmr0rRt0PdjkklbZPiqFWn12bfgOXepxg_aem_KHFFLn57zDBw5Od6iBLCIg#searching"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:46.759864775Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A097BF64DBA7B536E2B","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-09T21:33:53Z","event_id":"$pmBmrSTi-g7T_EoSysSGUMw7gGKHeB2Ehpx1IFMHeOw","part_id":"","time":"2026-03-06T19:24:46.760056981Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3000","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.769857449Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3000","time":"2026-03-06T19:24:46.769986308Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6991,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086760991470_22?ts=1770751236000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":33.573706,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hammer Training heute!! Gut durchgezogen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:46.794688727Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3A9E4C52C7E9FB64FFFD","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-10T19:20:36Z","event_id":"$Bg-lGdouTt2TXYcbOtiP0vLwcufD8qjrToe90ik6O8I","part_id":"","time":"2026-03-06T19:24:46.79482443Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3001","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.803630205Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3001","time":"2026-03-06T19:24:46.803714295Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6992,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825086795696899_8?ts=1770754039631&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":37.359503,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$Bg-lGdouTt2TXYcbOtiP0vLwcufD8qjrToe90ik6O8I","key":"❤️"}},"time":"2026-03-06T19:24:46.833189242Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:21079833710744@lid:3A9E4C52C7E9FB64FFFD","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-02-10T20:07:19.631Z","event_id":"$OC1-ONqNkp3zyQoMjJWuQwhsyKX52cLivsaVBUVyyO0","time":"2026-03-06T19:24:46.833360425Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3002","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.84342301Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3002","time":"2026-03-06T19:24:46.84349411Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6993,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825086833918883_2?ts=1770751254400&user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":41.254743,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$Bg-lGdouTt2TXYcbOtiP0vLwcufD8qjrToe90ik6O8I","key":"💪"}},"time":"2026-03-06T19:24:46.875287538Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:21079833710744@lid:3A9E4C52C7E9FB64FFFD","target_part_id":"","reaction_sender_id":{"user_id":"lid-87162133413943","sender_login":"491772982858"},"reaction_ts":"2026-02-10T19:20:54.4Z","event_id":"$hr9PG-F3oQ9vYosOjGcxjeDVLfHKCAYz2D2XJ1B_a-8","time":"2026-03-06T19:24:46.87543728Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3003","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.885296973Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3003","time":"2026-03-06T19:24:46.885385184Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6994,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825086875996995_1?ts=1770751552434&user_id=%40whatsapp_lid-101992705880128%3Amatrix.theocloud.dev","duration":38.479563,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$Bg-lGdouTt2TXYcbOtiP0vLwcufD8qjrToe90ik6O8I","key":"❤️"}},"time":"2026-03-06T19:24:46.914589562Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:21079833710744@lid:3A9E4C52C7E9FB64FFFD","target_part_id":"","reaction_sender_id":{"user_id":"lid-101992705880128","sender_login":"4915770291784"},"reaction_ts":"2026-02-10T19:25:52.434Z","event_id":"$LWgTPA14QmPQF81PBZSp5yXj0NHoSQyGuUMK83xpuLQ","time":"2026-03-06T19:24:46.914742167Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3004","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.924255444Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3004","time":"2026-03-06T19:24:46.924324867Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6995,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825086915254809_2?ts=1770758191749&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":37.605487,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$Bg-lGdouTt2TXYcbOtiP0vLwcufD8qjrToe90ik6O8I","key":"💪"}},"time":"2026-03-06T19:24:46.952984336Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:21079833710744@lid:3A9E4C52C7E9FB64FFFD","target_part_id":"","reaction_sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"reaction_ts":"2026-02-10T21:16:31.749Z","event_id":"$_yE93siBJRPu8X6QwIl0CoiSaRA9pLqIt6j2nYjsIBI","time":"2026-03-06T19:24:46.953122553Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3005","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.963521219Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3005","time":"2026-03-06T19:24:46.963626542Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6996,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086954352544_9?ts=1770895283000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":35.08146,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Heute gibst in der Jugendfreizeiteinrichtung auch MMA Training mit Vlad 💪🏽🥊🥷🏽","m.mentions":{"user_ids":["@whatsapp_lid-44419206123644:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$lyH4T2E3HIQgoEs0whkO2FVyB50CIxjVlVznxD8RcEk"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:46.989574736Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A6C2F9F1CE80E60C396","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-12T11:21:23Z","event_id":"$aHJXL75GMoFs_VWm3-a4ry_zwCpuHhqKjW6NLnM8_1I","part_id":"","time":"2026-03-06T19:24:46.989711068Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3006","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:46.999802079Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3006","time":"2026-03-06T19:24:46.999896715Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6997,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825086990601836_2?ts=1770895752000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":35.286098,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Heute 18 Uhr Boxen/Thaiboxen + calisthencis - mit Coach Vlad \u0026 artur\n\n1. Yes 🙌\n\n2. Nächstes Mal ✌🏼\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Yes 🙌","Nächstes Mal ✌🏼"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eHeute 18 Uhr Boxen/Thaiboxen + calisthencis - mit Coach Vlad \u0026amp; artur\u003c/p\u003e\u003col\u003e\u003cli\u003eYes 🙌\u003c/li\u003e\u003cli\u003eNächstes Mal ✌🏼\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eHeute 18 Uhr Boxen/Thaiboxen + calisthencis - mit Coach Vlad \u0026amp; artur\u003c/p\u003e\u003col\u003e\u003cli\u003eYes 🙌\u003c/li\u003e\u003cli\u003eNächstes Mal ✌🏼\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Heute 18 Uhr Boxen/Thaiboxen + calisthencis - mit Coach Vlad \u0026 artur\n\n1. Yes 🙌\n\n2. Nächstes Mal ✌🏼\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"36c18028550aeb6dda59c9cfeaf141b5170af542d57fffc1fb908ddb02d491f1","org.matrix.msc1767.text":"Yes 🙌"},{"id":"d5095e56f5c7a9c88bc73b6240b567ce58aa1a0bf18a90198ab102f8120d1526","org.matrix.msc1767.text":"Nächstes Mal ✌🏼"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":2,"question":{"org.matrix.msc1767.text":"Heute 18 Uhr Boxen/Thaiboxen + calisthencis - mit Coach Vlad \u0026 artur"}}},"time":"2026-03-06T19:24:47.02620341Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3ACF3C3E876980A68783","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-02-12T11:29:12Z","event_id":"$_E4EU7vW9fgaiCou617FR-k8viFndfWUmaX_BQQHh3Y","part_id":"","time":"2026-03-06T19:24:47.02643794Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3007","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.045165568Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3007","time":"2026-03-06T19:24:47.045296802Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3008","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:47.057825376Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3008","time":"2026-03-06T19:24:47.057907929Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6998,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087027446112_4?ts=1770915114000&user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":60.822223,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"wo macht ihr denn immer dieses box training?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.088443988Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:40566117134352@lid:AC5C50D5057C11368860708D4B8A315E","sender_id":{"user_id":"lid-40566117134352","sender_login":"491777059558"},"message_ts":"2026-02-12T16:51:54Z","event_id":"$bM_9mAqRAzPdc1OS0BTuNrByMZ7YkaijLI_QQ-ktzeU","part_id":"","time":"2026-03-06T19:24:47.088600924Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3009","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.101444975Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3009","time":"2026-03-06T19:24:47.101543732Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3010","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:47.124557925Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3010","time":"2026-03-06T19:24:47.124650536Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":6999,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825087089580391_1?ts=1770917358715&user_id=%40whatsapp_lid-223072531550244%3Amatrix.theocloud.dev","duration":59.300501,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$bM_9mAqRAzPdc1OS0BTuNrByMZ7YkaijLI_QQ-ktzeU","key":"👍️"}},"time":"2026-03-06T19:24:47.149007166Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:40566117134352@lid:AC5C50D5057C11368860708D4B8A315E","target_part_id":"","reaction_sender_id":{"user_id":"lid-223072531550244","sender_login":"4917663273910"},"reaction_ts":"2026-02-12T17:29:18.715Z","event_id":"$s1alKzG6UE5EsrgvLMcqETwqQy1EDBoCLb-LrOz_jv0","time":"2026-03-06T19:24:47.149142521Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3011","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.157006264Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3011","time":"2026-03-06T19:24:47.157135402Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7000,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087149850721_3?ts=1770915148000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":37.913492,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"steht alles in der Gruppen Beschreibung 🙌","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.187909344Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3A32ED8CCAB188116F4D","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-02-12T16:52:28Z","event_id":"$t6C7ebu5Cqhhbrc9y77Sq8nwFEDZnYyTF0miEkrVSAk","part_id":"","time":"2026-03-06T19:24:47.188054127Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3012","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.198425484Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3012","time":"2026-03-06T19:24:47.19853388Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7001,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825087188810727_5?ts=1770922590100&user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":49.555767,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$t6C7ebu5Cqhhbrc9y77Sq8nwFEDZnYyTF0miEkrVSAk","key":"💪"}},"time":"2026-03-06T19:24:47.238476077Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:239363409617131@lid:3A32ED8CCAB188116F4D","target_part_id":"","reaction_sender_id":{"user_id":"lid-40566117134352","sender_login":"491777059558"},"reaction_ts":"2026-02-12T18:56:30.1Z","event_id":"$KqBYzky9aGir7pFvux-RKWy6oijPoQQ-AmsOtb8O-jg","time":"2026-03-06T19:24:47.238614574Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3013","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.250362731Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3013","time":"2026-03-06T19:24:47.250481254Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7002,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087239208652_1?ts=1770988833000&user_id=%40whatsapp_lid-243705789296680%3Amatrix.theocloud.dev","duration":44.769831,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ist morgen die Sporthalle auf ?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.284126199Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:243705789296680@lid:ACD4F99074BD56DD0916C151BAA06008","sender_id":{"user_id":"lid-243705789296680","sender_login":"4915254596937"},"message_ts":"2026-02-13T13:20:33Z","event_id":"$r-EKqNVzjNsqMCIq5ybXJXqEer5WzABxS_acqmUMCqI","part_id":"","time":"2026-03-06T19:24:47.284269445Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3014","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.295915213Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3014","time":"2026-03-06T19:24:47.296015297Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3015","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:47.32166764Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3015","time":"2026-03-06T19:24:47.321771705Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7003,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825087285034497_11?ts=1770990269047&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":58.032237,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$r-EKqNVzjNsqMCIq5ybXJXqEer5WzABxS_acqmUMCqI","key":"👍️"}},"time":"2026-03-06T19:24:47.343201039Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:243705789296680@lid:ACD4F99074BD56DD0916C151BAA06008","target_part_id":"","reaction_sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"reaction_ts":"2026-02-13T13:44:29.047Z","event_id":"$GlaM7OpTJoBLR4Ud75suJxj-vRTm1QsCYs9TzKzObSw","time":"2026-03-06T19:24:47.343354203Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3016","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.353045647Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3016","time":"2026-03-06T19:24:47.353175554Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7004,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087344582518_10?ts=1770996991000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":32.889532,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wer noch Bock auf Weighted Training hat, Let’s gooo 🔥 Heute ist warm, nimmt euch genug Wasser mit 😉","m.mentions":{"user_ids":["@whatsapp_lid-44419206123644:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$lyH4T2E3HIQgoEs0whkO2FVyB50CIxjVlVznxD8RcEk"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.377621652Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A27ADCA6DA83BDD6E6C","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-13T15:36:31Z","event_id":"$IUBl1AeF0uJjulcxZZbEyin2zbKlS4YKW8IP_1hNJqY","part_id":"","time":"2026-03-06T19:24:47.377740873Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3017","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.387036172Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3017","time":"2026-03-06T19:24:47.387149176Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7005,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087378456965_2?ts=1770997091000&user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":41.565051,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Viel Spaß 😉💪🏻","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.420176158Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:83674703904795@lid:3A41175E11C14B6AE520","sender_id":{"user_id":"lid-83674703904795","sender_login":"4915236735839"},"message_ts":"2026-02-13T15:38:11Z","event_id":"$1xwpvDegfdGCwgTWdB0g1icNePGVdo7czVdxAbKBzUg","part_id":"","time":"2026-03-06T19:24:47.420365011Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3018","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.430694743Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3018","time":"2026-03-06T19:24:47.430809144Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3019","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:47.450359444Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3019","time":"2026-03-06T19:24:47.450460505Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7006,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087421878003_11?ts=1770998907000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":50.512326,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Danke mein bester ❤️","m.mentions":{"user_ids":["@whatsapp_lid-83674703904795:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$1xwpvDegfdGCwgTWdB0g1icNePGVdo7czVdxAbKBzUg"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.472561931Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A6E7743EED0EC439896","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-13T16:08:27Z","event_id":"$1NuyWpcE9jj_o-VNwdBqiE2Sq1PeLSvybNveq1F8jkE","part_id":"","time":"2026-03-06T19:24:47.472713489Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3020","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.478398924Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3020","time":"2026-03-06T19:24:47.478510252Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7007,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825087473584072_3?ts=1770998930906&user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":30.207871,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$1NuyWpcE9jj_o-VNwdBqiE2Sq1PeLSvybNveq1F8jkE","key":"❤️"}},"time":"2026-03-06T19:24:47.503929881Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A6E7743EED0EC439896","target_part_id":"","reaction_sender_id":{"user_id":"lid-83674703904795","sender_login":"4915236735839"},"reaction_ts":"2026-02-13T16:08:50.906Z","event_id":"$bMSvOit6EW4Iw04HUi8hVtV55WgGPXz1lty4Z1nQ8ts","time":"2026-03-06T19:24:47.504057133Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3021","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.508233208Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3021","time":"2026-03-06T19:24:47.508306333Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7008,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087504540232_3?ts=1771001897000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":32.523,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Komme bissel später.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.537222332Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:ACC74B37A968673479538C53B8237934","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-13T16:58:17Z","event_id":"$KjYjoGH8h3O93V_x7vzvfRA8Jw6nU54YK8wVMOu3he4","part_id":"","time":"2026-03-06T19:24:47.537384576Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3022","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.553495356Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3022","time":"2026-03-06T19:24:47.553581262Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3023","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:47.576153215Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3023","time":"2026-03-06T19:24:47.576219984Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7009,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087538223590_3?ts=1771004068000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":60.68603,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":480,"h":848,"duration":9000,"size":1517653},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"WKiCDK+HJVyWCSnwzHVs9UJhWcB8mjsXqd9EqZEKnww=","length":1517653,"type":"WhatsApp Video Keys","sha256":"i2PGNaElr/k+uoC6UOxjf5HY8ePEKAueNo48PI5K5A8=","enc_sha256":"EwNPRKuqRi2u4Pgy9RwvVG2535ptokFPAZMHNTweGCg=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:24:47.599176348Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","sender_id":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"message_ts":"2026-02-13T17:34:28Z","event_id":"$pkop882vFFfa8_q4Z2T-T8eW2tIc7ssmQChsK85ejtA","part_id":"","time":"2026-03-06T19:24:47.599426244Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3024","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.609548055Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3024","time":"2026-03-06T19:24:47.609642971Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7010,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825087600412555_6?ts=1771004081588&user_id=%40whatsapp_lid-40566117134352%3Amatrix.theocloud.dev","duration":36.174909,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$pkop882vFFfa8_q4Z2T-T8eW2tIc7ssmQChsK85ejtA","key":"💪"}},"time":"2026-03-06T19:24:47.636714856Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","target_part_id":"","reaction_sender_id":{"user_id":"lid-40566117134352","sender_login":"491777059558"},"reaction_ts":"2026-02-13T17:34:41.588Z","event_id":"$Z6zohwTLafCx2p20ItCNj3M_hoCBtA3Fayhd3hQP5cA","time":"2026-03-06T19:24:47.63681969Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3025","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.647833107Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3025","time":"2026-03-06T19:24:47.647954772Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7011,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087637299645_4?ts=1771004469000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":33.888136,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"","info":{"mimetype":"video/mp4","w":480,"h":848,"duration":8000,"size":1356811},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"xMDVFgWhzqT6BcrJ5jLp5mw8G3FlZT8SbQk74vAp4u0=","length":1356811,"type":"WhatsApp Video Keys","sha256":"gvRngia0n29HB7dg1At3BprIcSWEphdwDqW+kgDLZQQ=","enc_sha256":"ebmGnqsUg6LJbN7sEx4Lzb6alfrrAM6G7+pgb99DLsM=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:24:47.671449759Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","sender_id":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"message_ts":"2026-02-13T17:41:09Z","event_id":"$-SiDi6reIysRbH59GBLeqvlbnzSKqInkmIfGAKpY4jY","part_id":"","time":"2026-03-06T19:24:47.671618009Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3026","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.686685626Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3026","time":"2026-03-06T19:24:47.686768948Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7012,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087672603482_2?ts=1771005905000&user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":50.484808,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Where are you?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.723224972Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:266502737506505@lid:3A8A7A07CA88CE329983","sender_id":{"user_id":"lid-266502737506505","sender_login":"491624232636"},"message_ts":"2026-02-13T18:05:05Z","event_id":"$co7iZPbHWzfd0YY7hR5AwPuTb10vK81DMZWDi8ItEKw","part_id":"","time":"2026-03-06T19:24:47.723399997Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3027","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.740697047Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3027","time":"2026-03-06T19:24:47.740799994Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3028","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:47.764828716Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3028","time":"2026-03-06T19:24:47.764894018Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7013,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087724253329_12?ts=1771006285000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":60.274799,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Spanien 😍","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.784678848Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A2D1AEB63FC52A37DD9","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-13T18:11:25Z","event_id":"$DSsjr0qmrk0txAnM3urNrYmA1vaTia3MApt5cSWsEvY","part_id":"","time":"2026-03-06T19:24:47.784826843Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3029","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.79335311Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3029","time":"2026-03-06T19:24:47.793472889Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7014,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087785815669_5?ts=1771007499000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":38.635381,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Spanien 🇪🇸","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.824588499Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:280664972746828@lid:3AA7D1285C208DCF0547","sender_id":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"message_ts":"2026-02-13T18:31:39Z","event_id":"$unvTgbJSJxEQZR_JF9EFdysLPwMoQDRQYUbZ_7m3-OI","part_id":"","time":"2026-03-06T19:24:47.824690608Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3030","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.834590461Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3030","time":"2026-03-06T19:24:47.834656043Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7015,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087825274908_6?ts=1771007553000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":47.046337,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich bin auf dem Berg gelaufen","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.872457298Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:280664972746828@lid:3AF1A2A07E87615C73DC","sender_id":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"message_ts":"2026-02-13T18:32:33Z","event_id":"$3_iF51r14FEByL0WBgnnhLkJo_T3Ie8GbO6gImxdtQM","part_id":"","time":"2026-03-06T19:24:47.872606062Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3031","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.88240632Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3031","time":"2026-03-06T19:24:47.882508988Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7016,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087873490543_3?ts=1771007654000&user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":35.696141,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Macher","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.909314146Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:266502737506505@lid:3A8BDFDC986FCA373EE0","sender_id":{"user_id":"lid-266502737506505","sender_login":"491624232636"},"message_ts":"2026-02-13T18:34:14Z","event_id":"$hE6YbVyDOCnz-pqN1j2qmuCX4f-2aa0Uu9Q4YUFQjZs","part_id":"","time":"2026-03-06T19:24:47.909443564Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3032","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.913163848Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3032","time":"2026-03-06T19:24:47.913245773Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7017,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087913461097_4?ts=1771007941000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":26.016849,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Nes The One (WA) danke dir noch mal für das Training bei diesem hervorragenden Wetter.","format":"org.matrix.custom.html","formatted_body":"\u003ca href=\"https://matrix.to/#/@whatsapp_lid-44419206123644:matrix.theocloud.dev\"\u003eNes The One (WA)\u003c/a\u003e danke dir noch mal für das Training bei diesem hervorragenden Wetter.","m.mentions":{"user_ids":["@whatsapp_lid-44419206123644:matrix.theocloud.dev"]},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:47.939617142Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:AC7B7AB983828AB657964A91D4953DC7","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-13T18:39:01Z","event_id":"$hjLlGfmFLzjmfEVJ7VHonNo0lYA00Z8OrFlKXwpDho4","part_id":"","time":"2026-03-06T19:24:47.939712616Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3033","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.947951342Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3033","time":"2026-03-06T19:24:47.948080131Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7018,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825087941243138_13?ts=1771010898549&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":28.084947,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$hjLlGfmFLzjmfEVJ7VHonNo0lYA00Z8OrFlKXwpDho4","key":"❤️"}},"time":"2026-03-06T19:24:47.969456595Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC7B7AB983828AB657964A91D4953DC7","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-02-13T19:28:18.549Z","event_id":"$oESD8e2I-pRf8ER_Tr8Jqt-dN-GvCrugv47oIicTLSw","time":"2026-03-06T19:24:47.969596419Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3034","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:47.976885431Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3034","time":"2026-03-06T19:24:47.976973641Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7019,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825087970743507_14?ts=1771011005000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":34.74496,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich finde es bewundernswert wie du und dein Sohn bei jedem Wetter durchzieht. Ihr seit ein großes Vorbild 💪🏽🥷🏽","m.mentions":{"user_ids":["@whatsapp_lid-213099231596676:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$hjLlGfmFLzjmfEVJ7VHonNo0lYA00Z8OrFlKXwpDho4"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:48.00565958Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A1D897A793E13107DC7","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-13T19:30:05Z","event_id":"$lyXS2-3--LkzeJ77M7tV5pr1uqOSzjm-itC_gU9q91U","part_id":"","time":"2026-03-06T19:24:48.005822383Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3035","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.014201352Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3035","time":"2026-03-06T19:24:48.014352141Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7020,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088006729773_5?ts=1771072785125&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":35.467827,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$lyXS2-3--LkzeJ77M7tV5pr1uqOSzjm-itC_gU9q91U","key":"❤️"}},"time":"2026-03-06T19:24:48.042363405Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A1D897A793E13107DC7","target_part_id":"","reaction_sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"reaction_ts":"2026-02-14T12:39:45.125Z","event_id":"$9AwyQRBDJmc5cSEdwZozMj7Y-41I2EE1rXhdZgf48-Y","time":"2026-03-06T19:24:48.042492822Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3036","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.051427246Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3036","time":"2026-03-06T19:24:48.051511267Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7021,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088043164425_15?ts=1771011149000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":32.071121,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Old video attachment. Media will be requested from your phone automatically soon.\n\n😅💪🏽","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.failed_media":{"type":"m.room.message","content":{"msgtype":"m.video","body":"😅💪🏽","info":{"mimetype":"video/mp4","w":464,"h":832,"duration":12000,"size":2390521},"filename":"video.mp4"},"extra":{"info":{}},"whatsapp_media":{"key":"IBHpv3CedO+VIIFRF4vDONF4TaI0No8EITDXaAc1R5I=","length":2390521,"type":"WhatsApp Video Keys","sha256":"dskOMzXHBLYLlnoAzrJPPIqwoKEh97Yht69jPa0DXqk=","enc_sha256":"6T1OLez5/4BJJ74AEh8ci4R7TvCfxXMr7lUj92biwD0=","mime_type":"video/mp4"},"type_description":"video attachment"},"m.mentions":{},"msgtype":"m.notice"},"time":"2026-03-06T19:24:48.075484463Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-13T19:32:29Z","event_id":"$A2orisfC8odry7u2GnQrgOTNa-kQ417GMf85Iez1fqg","part_id":"","time":"2026-03-06T19:24:48.075650269Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3037","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.083861058Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3037","time":"2026-03-06T19:24:48.083974971Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7022,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088076499550_6?ts=1771072788113&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":31.033685,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$A2orisfC8odry7u2GnQrgOTNa-kQ417GMf85Iez1fqg","key":"💪"}},"time":"2026-03-06T19:24:48.107662233Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","target_part_id":"","reaction_sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"reaction_ts":"2026-02-14T12:39:48.113Z","event_id":"$I-45ddIiVvj4DQk8ygnCjqJCwTUJDJK2UMGxZnZx1cg","time":"2026-03-06T19:24:48.107800591Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3038","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.117414929Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3038","time":"2026-03-06T19:24:48.117534149Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7023,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088108370294_3?ts=1771011192696&user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":36.379128,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$A2orisfC8odry7u2GnQrgOTNa-kQ417GMf85Iez1fqg","key":"💪"}},"time":"2026-03-06T19:24:48.144893785Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","target_part_id":"","reaction_sender_id":{"user_id":"lid-87162133413943","sender_login":"491772982858"},"reaction_ts":"2026-02-13T19:33:12.696Z","event_id":"$kTGIAfDkeYOrZQj11TDVELjUwzSdE8G0MUAZjBn2Qmo","time":"2026-03-06T19:24:48.145096956Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3039","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.155883665Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3039","time":"2026-03-06T19:24:48.1560142Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7024,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088145868363_16?ts=1771014538000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":36.517904,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wochenende Over 9000 🐉\n\n1. Samstag Grinding ab 14:30 Uhr 🥷🏽\n\n2. Sonntag 15-16 Uhr Yoga 🧘🏼‍♀️ ab 16 Uhr Grinding 🌪️\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Samstag Grinding ab 14:30 Uhr 🥷🏽","Sonntag 15-16 Uhr Yoga 🧘🏼‍♀️ ab 16 Uhr Grinding 🌪️"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWochenende Over 9000 🐉\u003c/p\u003e\u003col\u003e\u003cli\u003eSamstag Grinding ab 14:30 Uhr 🥷🏽\u003c/li\u003e\u003cli\u003eSonntag 15-16 Uhr Yoga 🧘🏼‍♀️ ab 16 Uhr Grinding 🌪️\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eWochenende Over 9000 🐉\u003c/p\u003e\u003col\u003e\u003cli\u003eSamstag Grinding ab 14:30 Uhr 🥷🏽\u003c/li\u003e\u003cli\u003eSonntag 15-16 Uhr Yoga 🧘🏼‍♀️ ab 16 Uhr Grinding 🌪️\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Wochenende Over 9000 🐉\n\n1. Samstag Grinding ab 14:30 Uhr 🥷🏽\n\n2. Sonntag 15-16 Uhr Yoga 🧘🏼‍♀️ ab 16 Uhr Grinding 🌪️\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"2153abddb551bfc9e2f3eccf81ed1dda073b6ade9a25d8019dae7af37a2d73f7","org.matrix.msc1767.text":"Samstag Grinding ab 14:30 Uhr 🥷🏽"},{"id":"1ccf0abffc328eb28e04d363ae70cdd875748abcbf910a8c12cec0fa9f174528","org.matrix.msc1767.text":"Sonntag 15-16 Uhr Yoga 🧘🏼‍♀️ ab 16 Uhr Grinding 🌪️"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":2,"question":{"org.matrix.msc1767.text":"Wochenende Over 9000 🐉"}}},"time":"2026-03-06T19:24:48.182700767Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A698B51A3B39F62F972","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-13T20:28:58Z","event_id":"$CIqgfofehLEQvARtih4J7GdQ18-h3s3ZTnkdw-L1GK4","part_id":"","time":"2026-03-06T19:24:48.182830324Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3040","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.192078968Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3040","time":"2026-03-06T19:24:48.192176817Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7025,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088183737714_7?ts=1771073205000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":30.273802,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Die 150 Burpees haben wir auch noch durchgezogen. Es fällt halt auch einfach leicht in dieser ultra geilen Community sich jedes mal neu zu pushen. Und am Ende ist es mir wichtig, meinem Sohn beizubringen, dass es im Leben wichtig ist auch seine Projekte voranzubringen, auch wenn die Umstände mal schwerer sind. Und ich finde diesen Wert vermittelt diese Community und dieser Sport so ungemein. Und für diesen Spirit bin ich euch, Coaches und allen Athleten, extrem dankbar. \nHalt Together We Go Over 9000!!! 🔥💪","format":"org.matrix.custom.html","formatted_body":"Die 150 Burpees haben wir auch noch durchgezogen. Es fällt halt auch einfach leicht in dieser ultra geilen Community sich jedes mal neu zu pushen. Und am Ende ist es mir wichtig, meinem Sohn beizubringen, dass es im Leben wichtig ist auch seine Projekte voranzubringen, auch wenn die Umstände mal schwerer sind. Und ich finde diesen Wert vermittelt diese Community und dieser Sport so ungemein. Und für diesen Spirit bin ich euch, Coaches und allen Athleten, extrem dankbar. \u003cbr\u003eHalt Together We Go Over 9000!!! 🔥💪","m.mentions":{"user_ids":["@whatsapp_lid-44419206123644:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$lyXS2-3--LkzeJ77M7tV5pr1uqOSzjm-itC_gU9q91U"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:48.214149803Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:AC0DFD040F1BF97205CFEAB8CADCCA71","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-14T12:46:45Z","event_id":"$W1mFGANXqV7ueb8T-RS1WlEXZ9ODEeE9YX3ae5UotTI","part_id":"","time":"2026-03-06T19:24:48.214269233Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3041","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.223632978Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3041","time":"2026-03-06T19:24:48.223745144Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7026,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088215101892_4?ts=1771153098089&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":37.736791,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$W1mFGANXqV7ueb8T-RS1WlEXZ9ODEeE9YX3ae5UotTI","key":"❤️"}},"time":"2026-03-06T19:24:48.25299492Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC0DFD040F1BF97205CFEAB8CADCCA71","target_part_id":"","reaction_sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"reaction_ts":"2026-02-15T10:58:18.089Z","event_id":"$KJmKNedXQ-VDoGT31S5SeVLabQoKiQ36H8x7inK0_hE","time":"2026-03-06T19:24:48.25314941Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3042","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.261551707Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3042","time":"2026-03-06T19:24:48.261670439Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7027,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088253781063_4?ts=1771098326001&user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":34.141593,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$W1mFGANXqV7ueb8T-RS1WlEXZ9ODEeE9YX3ae5UotTI","key":"💪"}},"time":"2026-03-06T19:24:48.28806269Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC0DFD040F1BF97205CFEAB8CADCCA71","target_part_id":"","reaction_sender_id":{"user_id":"lid-87162133413943","sender_login":"491772982858"},"reaction_ts":"2026-02-14T19:45:26.001Z","event_id":"$470Oe9XseWi3EwrOPh4CW0VIjYDNc7t-8IcIz1b6Ypk","time":"2026-03-06T19:24:48.288197765Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3043","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.296553686Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3043","time":"2026-03-06T19:24:48.29667165Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7028,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088288815030_12?ts=1771085112341&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":41.824305,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$W1mFGANXqV7ueb8T-RS1WlEXZ9ODEeE9YX3ae5UotTI","key":"🙏"}},"time":"2026-03-06T19:24:48.330782722Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC0DFD040F1BF97205CFEAB8CADCCA71","target_part_id":"","reaction_sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"reaction_ts":"2026-02-14T16:05:12.341Z","event_id":"$wvrO_4rGdM2vIr7KUbjrxAzZ3tUqWiA4jPzpucrZegI","time":"2026-03-06T19:24:48.330980724Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3044","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.343240196Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3044","time":"2026-03-06T19:24:48.343377646Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7029,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088331703312_17?ts=1771146105886&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":35.444639,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$W1mFGANXqV7ueb8T-RS1WlEXZ9ODEeE9YX3ae5UotTI","key":"❤️"}},"time":"2026-03-06T19:24:48.367290988Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC0DFD040F1BF97205CFEAB8CADCCA71","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-02-15T09:01:45.886Z","event_id":"$a-luJpyUgEGMgfDA7BtkQWzyJ98JYZAP3hGp3XxhyeY","time":"2026-03-06T19:24:48.367483752Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3045","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.376051575Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3045","time":"2026-03-06T19:24:48.376155151Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7030,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088368145437_1?ts=1771074211205&user_id=%40whatsapp_lid-226147862347841%3Amatrix.theocloud.dev","duration":30.715414,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$W1mFGANXqV7ueb8T-RS1WlEXZ9ODEeE9YX3ae5UotTI","key":"❤️"}},"time":"2026-03-06T19:24:48.398984192Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC0DFD040F1BF97205CFEAB8CADCCA71","target_part_id":"","reaction_sender_id":{"user_id":"lid-226147862347841","sender_login":"4915757977499"},"reaction_ts":"2026-02-14T13:03:31.205Z","event_id":"$XEJEVXct570ho_fIA76yPtluUa_QrvPlgJZdzjoNd6w","time":"2026-03-06T19:24:48.399121153Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3046","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.411806732Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3046","time":"2026-03-06T19:24:48.411884885Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7031,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088399782838_23?ts=1771073556000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":43.292807,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$W1mFGANXqV7ueb8T-RS1WlEXZ9ODEeE9YX3ae5UotTI","key":"❤️"}},"time":"2026-03-06T19:24:48.443239495Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC0DFD040F1BF97205CFEAB8CADCCA71","target_part_id":"","reaction_sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"reaction_ts":"2026-02-14T12:52:36Z","event_id":"$xyb54EG8xCNcHtAIQHLYiRhxUvFafwOwP2k8uzXSkdU","time":"2026-03-06T19:24:48.44345859Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3047","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.452780359Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3047","time":"2026-03-06T19:24:48.452896996Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7032,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088444117412_24?ts=1771073623000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":36.479212,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Danke! für solch ein Feedback bin ich sehr dankbar und es zeigt mir, dass wir auf dem richtgen weg sind o9k!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:48.480757819Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3EB08FF81DCF6CFB45A6DB","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-14T12:53:43Z","event_id":"$zPC3EXhmToferAmRSXebJc8-gB56_Xo62JCSz0JKHkk","part_id":"","time":"2026-03-06T19:24:48.480904208Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3048","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.48925538Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3048","time":"2026-03-06T19:24:48.489376277Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7033,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088481874317_25?ts=1771073713000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":34.033198,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Sonntag 9uhr Eisbaden Krumme Lanke\n\n1. Ja, wird nämlich bald warm\n\n2. neee du\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Ja, wird nämlich bald warm","neee du"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eSonntag 9uhr Eisbaden Krumme Lanke\u003c/p\u003e\u003col\u003e\u003cli\u003eJa, wird nämlich bald warm\u003c/li\u003e\u003cli\u003eneee du\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eSonntag 9uhr Eisbaden Krumme Lanke\u003c/p\u003e\u003col\u003e\u003cli\u003eJa, wird nämlich bald warm\u003c/li\u003e\u003cli\u003eneee du\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Sonntag 9uhr Eisbaden Krumme Lanke\n\n1. Ja, wird nämlich bald warm\n\n2. neee du\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"d890f70d1d4813aaf37e28f685c9de2575ff24e9dca8176fb539243a548e3033","org.matrix.msc1767.text":"Ja, wird nämlich bald warm"},{"id":"3aa654a5991febf53700d64c1c3c252e53b7d619f31e0561294b9ecce9f0100b","org.matrix.msc1767.text":"neee du"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":2,"question":{"org.matrix.msc1767.text":"Sonntag 9uhr Eisbaden Krumme Lanke"}}},"time":"2026-03-06T19:24:48.516227951Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3EB078CBF09C8FB5CD31","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-14T12:55:13Z","event_id":"$X19BVp2QBljMN3VubMb3335ub4kvhBIc7MBXcEM9bTo","part_id":"","time":"2026-03-06T19:24:48.516435103Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3049","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.525995941Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3049","time":"2026-03-06T19:24:48.526123823Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7034,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088517240732_1?ts=1771106419089&user_id=%40whatsapp_lid-260580380246145%3Amatrix.theocloud.dev","duration":33.255016,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$X19BVp2QBljMN3VubMb3335ub4kvhBIc7MBXcEM9bTo","key":"👏"}},"time":"2026-03-06T19:24:48.550603515Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:21079833710744@lid:3EB078CBF09C8FB5CD31","target_part_id":"","reaction_sender_id":{"user_id":"lid-260580380246145","sender_login":"4917681278118"},"reaction_ts":"2026-02-14T22:00:19.089Z","event_id":"$6tp8e79obTpeMgd7F3wbmeUg0XP4RP83AX1cYCYV2FM","time":"2026-03-06T19:24:48.550719942Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3050","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.560480041Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3050","time":"2026-03-06T19:24:48.560606246Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7035,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088551231117_26?ts=1771096460000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":39.033341,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"https://maps.app.goo.gl/ZmgtTzbqaiF117EM8?g_st=ic","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"Badestelle Krumme Lanke · 4.4★(814) · Badesee","og:description":"14163 Berlin","og:image":"mxc://matrix.theocloud.dev/RRJsIsMgrGbnkwmBCibVyNNJ","matrix:image:size":189097,"og:image:width":900,"og:image:height":900,"og:image:type":"image/jpeg","matched_url":"https://maps.app.goo.gl/ZmgtTzbqaiF117EM8?g_st=ic"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:48.590443254Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3A0696A08A718A81F027","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-14T19:14:20Z","event_id":"$TJBJj6b4iZ6eNdW74-SnbgS5OCcTTmpzVri8ubEVOkA","part_id":"","time":"2026-03-06T19:24:48.5905909Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3051","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.601108019Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3051","time":"2026-03-06T19:24:48.601219627Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7036,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088591502062_8?ts=1771141562000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":41.361461,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Auf dem Weg","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:48.633008376Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:AC6F79EEFD934AB7FC6D729EC78EA5C5","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-15T07:46:02Z","event_id":"$31HID3C3plXC4-cpKIZ0KBCa-Moa8-PGEI5Y4jeJQpo","part_id":"","time":"2026-03-06T19:24:48.633163425Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3052","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.645613077Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3052","time":"2026-03-06T19:24:48.645749759Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7037,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088633998878_27?ts=1771142700703&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":39.193628,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$31HID3C3plXC4-cpKIZ0KBCa-Moa8-PGEI5Y4jeJQpo","key":"👍️"}},"time":"2026-03-06T19:24:48.673368579Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC6F79EEFD934AB7FC6D729EC78EA5C5","target_part_id":"","reaction_sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"reaction_ts":"2026-02-15T08:05:00.703Z","event_id":"$rzTlkaYRehwqX_7UyqsuDWGK7h6eCxIcdeDFwCGdCW0","time":"2026-03-06T19:24:48.67352747Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3053","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.6828843Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3053","time":"2026-03-06T19:24:48.682981869Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7038,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088674189574_1?ts=1771146371000&user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":36.398474,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Stark!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:48.710732132Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:73950780473356@lid:AC47F2F80C03C87985FCDB2A52DC79D5","sender_id":{"user_id":"lid-73950780473356","sender_login":"491792104071"},"message_ts":"2026-02-15T09:06:11Z","event_id":"$WfF_2uqckneWzHP7I9rucSKsBtJMKBqtxLm9fEg4Uic","part_id":"","time":"2026-03-06T19:24:48.710870071Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3054","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.723141905Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3054","time":"2026-03-06T19:24:48.723293253Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3055","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:48.744283768Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3055","time":"2026-03-06T19:24:48.744406341Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7039,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088712114938_18?ts=1771147935000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":50.083705,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Danke für deine Worte Rene, genau dafür stehen wir.💪🏽 \nBei uns trainieren Eltern und Kinder miteinander. Wir lernen und wir wachsen gemeinsam. Wahre Stärke entsteht im Miteinander.\nUnsere Gemeinschaft basiert auf Vertrauen, Respekt und echtem Zusammenhalt. Hier geht es darum, füreinander da zu sein, sich zu unterstützen und sich Mut zu machen. Wir leben vor, was wir unseren Kindern weitergeben möchten: Disziplin, Durchhaltevermögen, gegenseitige Unterstützung und Freude an Bewegung.\n\nGemeinsam ist alles einfacher und schöner. ❤️‍🔥🙏🏽","format":"org.matrix.custom.html","formatted_body":"Danke für deine Worte Rene, genau dafür stehen wir.💪🏽 \u003cbr\u003eBei uns trainieren Eltern und Kinder miteinander. Wir lernen und wir wachsen gemeinsam. Wahre Stärke entsteht im Miteinander.\u003cbr\u003eUnsere Gemeinschaft basiert auf Vertrauen, Respekt und echtem Zusammenhalt. Hier geht es darum, füreinander da zu sein, sich zu unterstützen und sich Mut zu machen. Wir leben vor, was wir unseren Kindern weitergeben möchten: Disziplin, Durchhaltevermögen, gegenseitige Unterstützung und Freude an Bewegung.\u003cbr\u003e\u003cbr\u003eGemeinsam ist alles einfacher und schöner. ❤️‍🔥🙏🏽","m.mentions":{"user_ids":["@whatsapp_lid-213099231596676:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$W1mFGANXqV7ueb8T-RS1WlEXZ9ODEeE9YX3ae5UotTI"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:48.762396366Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A4ABB5F5F33B95EBA4C","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-15T09:32:15Z","event_id":"$De4UVWQWWXk9F_GaV7J7ko-KA5hLVKf63xmqQhcPzTo","part_id":"","time":"2026-03-06T19:24:48.762573556Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3056","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.775413835Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3056","time":"2026-03-06T19:24:48.775514268Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7040,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088763393713_9?ts=1771160264441&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":42.098296,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$De4UVWQWWXk9F_GaV7J7ko-KA5hLVKf63xmqQhcPzTo","key":"❤️‍🔥"}},"time":"2026-03-06T19:24:48.805611299Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A4ABB5F5F33B95EBA4C","target_part_id":"","reaction_sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"reaction_ts":"2026-02-15T12:57:44.441Z","event_id":"$J1dAfGJ-n8YnLE_n3xgwFV03QKDX390BweBeRFRchW0","time":"2026-03-06T19:24:48.805722977Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3057","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.81740206Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3057","time":"2026-03-06T19:24:48.817475953Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7041,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088806526582_19?ts=1771154145000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":52.285131,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Heute Training day 💪🏽","m.mentions":{"user_ids":["@whatsapp_lid-44419206123644:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$CIqgfofehLEQvARtih4J7GdQ18-h3s3ZTnkdw-L1GK4"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:48.858984991Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3AE7BC7DA54EDC9E54E8","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-15T11:15:45Z","event_id":"$JkgQsW_8uzyvczPUx0xnYgHA9lzMl4yMUZuw3MrlyNg","part_id":"","time":"2026-03-06T19:24:48.859160016Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3058","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.86922295Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3058","time":"2026-03-06T19:24:48.869393784Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7042,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825088860134873_10?ts=1771160352000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":38.236302,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Mega geiles Gefühl danach. Hammer Sonne.","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":899,"mimetype":"image/jpeg","size":193079,"w":1599},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ErwzDfvKkWXkgWJMjMLVtdGu"},"time":"2026-03-06T19:24:48.898608219Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:AC125FEFF7ED0259ECB1E4C6BA58B0A1","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-15T12:59:12Z","event_id":"$JUxuNZIVORpABnTB0yQMKp6Ldzo5NQGkTeKjMg3QpNM","part_id":"","time":"2026-03-06T19:24:48.898746646Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3059","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.906500877Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3059","time":"2026-03-06T19:24:48.906624917Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7043,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088899392896_1?ts=1771183653651&user_id=%40whatsapp_lid-21273073692847%3Amatrix.theocloud.dev","duration":32.959723,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$JUxuNZIVORpABnTB0yQMKp6Ldzo5NQGkTeKjMg3QpNM","key":"✌️"}},"time":"2026-03-06T19:24:48.932475682Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC125FEFF7ED0259ECB1E4C6BA58B0A1","target_part_id":"","reaction_sender_id":{"user_id":"lid-21273073692847","sender_login":"4915780931514"},"reaction_ts":"2026-02-15T19:27:33.651Z","event_id":"$rAaDGXAAyrC6XVPRVxMHzbJJ9oNq8_k1cc12TsWILnk","time":"2026-03-06T19:24:48.932581493Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3060","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.943036242Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3060","time":"2026-03-06T19:24:48.943111043Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7044,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825088932998450_1?ts=1771243499663&user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":38.202428,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$JUxuNZIVORpABnTB0yQMKp6Ldzo5NQGkTeKjMg3QpNM","key":"❤️"}},"time":"2026-03-06T19:24:48.971352995Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC125FEFF7ED0259ECB1E4C6BA58B0A1","target_part_id":"","reaction_sender_id":{"user_id":"lid-245517661540533","sender_login":"919150986374"},"reaction_ts":"2026-02-16T12:04:59.663Z","event_id":"$53bEOtVOqs5_Y3F3AIwur56ALABOn2kw1RBthBVDH8w","time":"2026-03-06T19:24:48.971533747Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3061","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:48.981677559Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3061","time":"2026-03-06T19:24:48.981790633Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7045,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/join?user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":25.97229,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:24:48.998246644Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7046,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/invite?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":58.026858,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@whatsapp_lid-184331557449759:matrix.theocloud.dev"},"time":"2026-03-06T19:24:49.056537785Z","message":"Request completed"} +{"level":"debug","transaction_id":"3062","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.081228191Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3062","time":"2026-03-06T19:24:49.081586342Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3063","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.147138977Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3063","time":"2026-03-06T19:24:49.147470309Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","portal_mxid":"!fWHCoPezLmCifCgnUg:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$YJu9TJrt2MpCUi-s1I4XlPQMhzU1yrLIqb_IdkF65S0","event_type":"m.room.member","event_id":"$YJu9TJrt2MpCUi-s1I4XlPQMhzU1yrLIqb_IdkF65S0","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:49.14785046Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"4917680834617@s.whatsapp.net","portal_mxid":"!fWHCoPezLmCifCgnUg:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$YJu9TJrt2MpCUi-s1I4XlPQMhzU1yrLIqb_IdkF65S0","event_type":"m.room.member","event_id":"$YJu9TJrt2MpCUi-s1I4XlPQMhzU1yrLIqb_IdkF65S0","sender":"@theo:matrix.theocloud.dev","login_id":"4917641870516","membership":"leave","prev_membership":"join","target_user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:24:49.14875331Z","message":"Dropping leave event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7047,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/join?user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":124.696899,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:24:49.18174544Z","message":"Request completed"} +{"level":"debug","transaction_id":"3064","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.206756422Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3064","time":"2026-03-06T19:24:49.207125049Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7048,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089182264996_1?ts=1771161818077&user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":67.567862,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$JUxuNZIVORpABnTB0yQMKp6Ldzo5NQGkTeKjMg3QpNM","key":"💪"}},"time":"2026-03-06T19:24:49.24996947Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC125FEFF7ED0259ECB1E4C6BA58B0A1","target_part_id":"","reaction_sender_id":{"user_id":"lid-184331557449759","sender_login":"4915209459043"},"reaction_ts":"2026-02-15T13:23:38.077Z","event_id":"$egN1hZo1ZaAhRqMigqJJ7RyqrCt5QpgUAGoF25ceEKk","time":"2026-03-06T19:24:49.250117396Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3065","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.263993365Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3065","time":"2026-03-06T19:24:49.264123132Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7049,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089250679276_2?ts=1771173591707&user_id=%40whatsapp_lid-260580380246145%3Amatrix.theocloud.dev","duration":46.826195,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$JUxuNZIVORpABnTB0yQMKp6Ldzo5NQGkTeKjMg3QpNM","key":"👏"}},"time":"2026-03-06T19:24:49.297646482Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC125FEFF7ED0259ECB1E4C6BA58B0A1","target_part_id":"","reaction_sender_id":{"user_id":"lid-260580380246145","sender_login":"4917681278118"},"reaction_ts":"2026-02-15T16:39:51.707Z","event_id":"$bgzw3At7qd67rtjUHyTnu_xtrv4rqWgBOSILQYCAZX0","time":"2026-03-06T19:24:49.297823113Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3066","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.30576054Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3066","time":"2026-03-06T19:24:49.305858808Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7050,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089298460912_13?ts=1771160511791&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":41.727015,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$JUxuNZIVORpABnTB0yQMKp6Ldzo5NQGkTeKjMg3QpNM","key":"👍️"}},"time":"2026-03-06T19:24:49.340298417Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC125FEFF7ED0259ECB1E4C6BA58B0A1","target_part_id":"","reaction_sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"reaction_ts":"2026-02-15T13:01:51.791Z","event_id":"$_rmuXUsUOa_YVmlWEzWYsr4S5CvNViQnLzzYKr1EEjA","time":"2026-03-06T19:24:49.340430908Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3067","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.351737942Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3067","time":"2026-03-06T19:24:49.351821403Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7051,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825089341226481_20?ts=1771161344000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":39.559462,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wow 😍 stabil Jungs 💪🏽🥷🏽","m.mentions":{"user_ids":["@whatsapp_lid-213099231596676:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$JUxuNZIVORpABnTB0yQMKp6Ldzo5NQGkTeKjMg3QpNM"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:49.380942459Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3AC5EC73AA70D0F0F149","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-15T13:15:44Z","event_id":"$HOa9esaZCFbz7eHo-z-2jP781TRjxMZSgUphh6rSWns","part_id":"","time":"2026-03-06T19:24:49.381127262Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3068","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.394830302Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3068","time":"2026-03-06T19:24:49.394958253Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7052,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825089382017540_28?ts=1771324781000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":46.96057,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Heute Training 18-19uhr Cheruskerpark. Sets und Reps\n\n1. Ja\n\n2. Nein\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Ja","Nein"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eHeute Training 18-19uhr Cheruskerpark. Sets und Reps\u003c/p\u003e\u003col\u003e\u003cli\u003eJa\u003c/li\u003e\u003cli\u003eNein\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eHeute Training 18-19uhr Cheruskerpark. Sets und Reps\u003c/p\u003e\u003col\u003e\u003cli\u003eJa\u003c/li\u003e\u003cli\u003eNein\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Heute Training 18-19uhr Cheruskerpark. Sets und Reps\n\n1. Ja\n\n2. Nein\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"cde9e58a9a4e1f369839d800aebbe5e4c19e2efa9f5791ecda15e9e87eb652e3","org.matrix.msc1767.text":"Ja"},{"id":"90ebc1bde6f3b1ffd73c3d7db7a421b21d5a4494ef1ce86aee56013edde0a8f7","org.matrix.msc1767.text":"Nein"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":2,"question":{"org.matrix.msc1767.text":"Heute Training 18-19uhr Cheruskerpark. Sets und Reps"}}},"time":"2026-03-06T19:24:49.429304973Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3A7F9FEC37F1D3B57663","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-17T10:39:41Z","event_id":"$4gfTFg4I0I9Um0NwgsAvfJEqNfcUDJpvYv-p8yVnneo","part_id":"","time":"2026-03-06T19:24:49.429521483Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3069","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.43344906Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3069","time":"2026-03-06T19:24:49.433577779Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7053,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825089430407921_11?ts=1771342779000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":48.404628,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich habe heute leider ein Termin, der sich überschneidet.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:49.478968227Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:AC836E2E563F04572DB3C77024D9E75D","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-17T15:39:39Z","event_id":"$Qj_gU4uxos1UfrLdto8os2hp8zTZt1yYo9bIjvkQwpk","part_id":"","time":"2026-03-06T19:24:49.479098762Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3070","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.493871645Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3070","time":"2026-03-06T19:24:49.493983603Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7054,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089479616642_29?ts=1771342813000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":40.861182,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$Qj_gU4uxos1UfrLdto8os2hp8zTZt1yYo9bIjvkQwpk","key":"👍️"}},"time":"2026-03-06T19:24:49.520603819Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC836E2E563F04572DB3C77024D9E75D","target_part_id":"","reaction_sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"reaction_ts":"2026-02-17T15:40:13Z","event_id":"$LcGP7cBNZIcbEapRcFCkqC0uAzupC0HZ7w-r3ugbjKA","time":"2026-03-06T19:24:49.52070502Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3071","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.530499272Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3071","time":"2026-03-06T19:24:49.530599425Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7055,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825089521136366_1?ts=1771346222000&user_id=%40whatsapp_lid-131026634416177%3Amatrix.theocloud.dev","duration":44.82745,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Komme heute doch nicht","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:49.566119424Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:131026634416177@lid:AC7C5BA1E362F8A9FB8EC2EB11EA7462","sender_id":{"user_id":"lid-131026634416177","sender_login":"4917695159069"},"message_ts":"2026-02-17T16:37:02Z","event_id":"$QKavkt7ODoTgOXixkE0RHFf7Y14r3PK1unvWMDeHGvA","part_id":"","time":"2026-03-06T19:24:49.566304925Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3072","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.574268263Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3072","time":"2026-03-06T19:24:49.574392443Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3073","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:49.598622449Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3073","time":"2026-03-06T19:24:49.59873706Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7056,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825089567270144_30?ts=1771346765000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":50.799937,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ok","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:49.618209206Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3A600E18C5A1F488339B","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-17T16:46:05Z","event_id":"$3UKQseRl5G81MVwnUVd3L3WHemYRFmFBVeWFOFgJ__0","part_id":"","time":"2026-03-06T19:24:49.618370751Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3074","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.627828084Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3074","time":"2026-03-06T19:24:49.627937317Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7057,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825089619277652_31?ts=1771346769000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":36.490177,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich bin da","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:49.65592672Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3AAD10B06DF76436A6D0","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-17T16:46:09Z","event_id":"$ZodIogY4cMeGy_7K_Cq3go4e53xN3zBbXPTo2K8lJN8","part_id":"","time":"2026-03-06T19:24:49.656043776Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3075","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.671173413Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3075","time":"2026-03-06T19:24:49.671245351Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7058,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825089656647073_5?ts=1771503638000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":50.944859,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Das Training in der Naunynstraße heute fällt aus. ‼️⚠️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:49.707723375Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3A7B16555D44B0ED9076","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-02-19T12:20:38Z","event_id":"$-wKZB4djGXcnsh_H6vdCMESi0XNyq9zC44BoOWs4J6E","part_id":"","time":"2026-03-06T19:24:49.707851884Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3076","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.719105908Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3076","time":"2026-03-06T19:24:49.719209065Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7059,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089708686988_1?ts=1771508114208&user_id=%40whatsapp_lid-206699780640847%3Amatrix.theocloud.dev","duration":40.609889,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$-wKZB4djGXcnsh_H6vdCMESi0XNyq9zC44BoOWs4J6E","key":"😢"}},"time":"2026-03-06T19:24:49.749446968Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:239363409617131@lid:3A7B16555D44B0ED9076","target_part_id":"","reaction_sender_id":{"user_id":"lid-206699780640847","sender_login":"4917621763296"},"reaction_ts":"2026-02-19T13:35:14.208Z","event_id":"$qD02tMchMkOzrvxqxtlU7OdmFQ-HxqikZkRrF8pE_ow","time":"2026-03-06T19:24:49.749588608Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3077","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.760615434Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3077","time":"2026-03-06T19:24:49.760716566Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7060,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825089750172069_21?ts=1771532272000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":40.533342,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"An alle Athletinnen und Athleten, die heute mit dem Ramadan begonnen haben:\n\nWir wünschen euch für diesen besonderen Monat viel Kraft, Ausdauer und innere Stärke. Möge euch die Fastenzeit nicht nur spirituell bereichern, sondern euch auch im Sport zusätzliche Disziplin, Fokus und mentale Widerstandskraft schenken.\n\nEs verdient großen Respekt, Training, Alltag und Fasten miteinander zu verbinden. Bleibt konzentriert, hört auf euren Körper und geht euren Weg mit Entschlossenheit weiter. Mit Struktur, Geduld und starkem Willen ist es möglich, auch in dieser Zeit sportlich dranzubleiben und eure Ziele weiterzuverfolgen.\n\nWir wünschen euch viel Energie für jede Einheit, Durchhaltevermögen für jede Herausforderung und Gottes Segen für diesen Monat.\n\nBleibt stabil. 🐉✨ \n\nEuer BO9k Team ❤️","format":"org.matrix.custom.html","formatted_body":"An alle Athletinnen und Athleten, die heute mit dem Ramadan begonnen haben:\u003cbr\u003e\u003cbr\u003eWir wünschen euch für diesen besonderen Monat viel Kraft, Ausdauer und innere Stärke. Möge euch die Fastenzeit nicht nur spirituell bereichern, sondern euch auch im Sport zusätzliche Disziplin, Fokus und mentale Widerstandskraft schenken.\u003cbr\u003e\u003cbr\u003eEs verdient großen Respekt, Training, Alltag und Fasten miteinander zu verbinden. Bleibt konzentriert, hört auf euren Körper und geht euren Weg mit Entschlossenheit weiter. Mit Struktur, Geduld und starkem Willen ist es möglich, auch in dieser Zeit sportlich dranzubleiben und eure Ziele weiterzuverfolgen.\u003cbr\u003e\u003cbr\u003eWir wünschen euch viel Energie für jede Einheit, Durchhaltevermögen für jede Herausforderung und Gottes Segen für diesen Monat.\u003cbr\u003e\u003cbr\u003eBleibt stabil. 🐉✨ \u003cbr\u003e\u003cbr\u003eEuer BO9k Team ❤️","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:49.790954119Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-19T20:17:52Z","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","part_id":"","time":"2026-03-06T19:24:49.791154497Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3078","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.800664281Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3078","time":"2026-03-06T19:24:49.800783502Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7061,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089792078719_1?ts=1771534533270&user_id=%40whatsapp_lid-57879650386021%3Amatrix.theocloud.dev","duration":47.529994,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:49.8397382Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-57879650386021","sender_login":"491639512527"},"reaction_ts":"2026-02-19T20:55:33.27Z","event_id":"$W8xkezB3RsSj5guGT8kRgl7usiPmLO0oaMTMWwGk1WQ","time":"2026-03-06T19:24:49.839846037Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3079","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.849696441Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3079","time":"2026-03-06T19:24:49.849817408Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7062,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089840242182_1?ts=1771534047744&user_id=%40whatsapp_lid-12786134462711%3Amatrix.theocloud.dev","duration":34.950226,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:49.875327133Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-12786134462711","sender_login":"393201550470"},"reaction_ts":"2026-02-19T20:47:27.744Z","event_id":"$b20cZkjRzouO6BRzYQ4vAgs9QCfhmOo1S6pCXqkNQW8","time":"2026-03-06T19:24:49.875494336Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3080","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.8837691Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3080","time":"2026-03-06T19:24:49.883907039Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7063,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089876096306_1?ts=1771533009532&user_id=%40whatsapp_lid-11373224415308%3Amatrix.theocloud.dev","duration":32.097591,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:49.908353067Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-11373224415308","sender_login":"4917657902857"},"reaction_ts":"2026-02-19T20:30:09.532Z","event_id":"$RAX5iJiuUWuyG8PTP1ifF0E6t_KmVnx-xvn0B33lD4k","time":"2026-03-06T19:24:49.908496034Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3081","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.918802299Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3081","time":"2026-03-06T19:24:49.918906643Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7064,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089909044365_2?ts=1771587041000&user_id=%40whatsapp_lid-223072531550244%3Amatrix.theocloud.dev","duration":35.219188,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"💪"}},"time":"2026-03-06T19:24:49.944425797Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-223072531550244","sender_login":"4917663273910"},"reaction_ts":"2026-02-20T11:30:41Z","event_id":"$1VCvE9Je5nFETz-r06MATsL0zE4AdNtEB1jiluaApbg","time":"2026-03-06T19:24:49.944560383Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3082","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.956349537Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3082","time":"2026-03-06T19:24:49.956430065Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7065,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089945203560_5?ts=1771532340960&user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":42.343652,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:49.987670832Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-87162133413943","sender_login":"491772982858"},"reaction_ts":"2026-02-19T20:19:00.96Z","event_id":"$eBpDcnx-s8z4DiFMkDC1DB6qglL4V-o15mzIOeyBKFg","time":"2026-03-06T19:24:49.987839222Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3083","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:49.996109447Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3083","time":"2026-03-06T19:24:49.996228598Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7066,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825089988471154_4?ts=1771598762684&user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":39.013017,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.027645157Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-266502737506505","sender_login":"491624232636"},"reaction_ts":"2026-02-20T14:46:02.684Z","event_id":"$jesbSmppKyL0WrE2j7ekqwFuKORDhBls3n_L09xXav4","time":"2026-03-06T19:24:50.027796994Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3084","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.038509601Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3084","time":"2026-03-06T19:24:50.038632384Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7067,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090028501493_1?ts=1771533720657&user_id=%40whatsapp_lid-92655430197386%3Amatrix.theocloud.dev","duration":42.144881,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.070782007Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-92655430197386","sender_login":"4917634360138"},"reaction_ts":"2026-02-19T20:42:00.657Z","event_id":"$yC44py1fdd-6M4-h_j4c5qZ4ekgqDFfpF41bsfTdZDM","time":"2026-03-06T19:24:50.070927069Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3085","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.086125431Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3085","time":"2026-03-06T19:24:50.086197788Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7068,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090071499077_32?ts=1771533712894&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":44.194401,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.115810533Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"reaction_ts":"2026-02-19T20:41:52.894Z","event_id":"$k88SyMYbjIxT_j8AfOWiTiVF8X5roPzPrlJGJVNLzKk","time":"2026-03-06T19:24:50.115932547Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3086","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.125577895Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3086","time":"2026-03-06T19:24:50.125674697Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7069,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090116489260_1?ts=1771573003230&user_id=%40whatsapp_lid-35472185270487%3Amatrix.theocloud.dev","duration":42.152354,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.158744631Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-35472185270487","sender_login":"491778756866"},"reaction_ts":"2026-02-20T07:36:43.23Z","event_id":"$07ndvfCzB-EQsKB2YCka1GmEUAjkNWepQKwSgTCJXh8","time":"2026-03-06T19:24:50.158832912Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3087","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.168441592Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3087","time":"2026-03-06T19:24:50.168559416Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7070,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090159494317_2?ts=1771538809411&user_id=%40whatsapp_lid-245517661540533%3Amatrix.theocloud.dev","duration":40.614219,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"💯"}},"time":"2026-03-06T19:24:50.20024878Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-245517661540533","sender_login":"919150986374"},"reaction_ts":"2026-02-19T22:06:49.411Z","event_id":"$eDtnRET50szGxoZC1OFREZsDG4xCguprlsYQoOVLDdg","time":"2026-03-06T19:24:50.200476605Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3088","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.208422063Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3088","time":"2026-03-06T19:24:50.208541424Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7071,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090201059508_1?ts=1771542661111&user_id=%40whatsapp_lid-256676053647524%3Amatrix.theocloud.dev","duration":36.346931,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"💯"}},"time":"2026-03-06T19:24:50.237529989Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-256676053647524","sender_login":"491749085513"},"reaction_ts":"2026-02-19T23:11:01.111Z","event_id":"$16s7APKHjMTwhPGVi3P4rhHid96av6PAPSSJaQoaMs8","time":"2026-03-06T19:24:50.237673236Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3089","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.246477823Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3089","time":"2026-03-06T19:24:50.246567431Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7072,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090238104232_1?ts=1771532410113&user_id=%40whatsapp_lid-12730350215211%3Amatrix.theocloud.dev","duration":47.731419,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.285956478Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-12730350215211","sender_login":"4917627697253"},"reaction_ts":"2026-02-19T20:20:10.113Z","event_id":"$KpTTMd3fPruwX24IKtNz6N5ruGMp4lOBhlSPvackZyE","time":"2026-03-06T19:24:50.286101051Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3090","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.296690596Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3090","time":"2026-03-06T19:24:50.296790051Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7073,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090286634436_4?ts=1771532309166&user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":40.772132,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.327534729Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-83674703904795","sender_login":"4915236735839"},"reaction_ts":"2026-02-19T20:18:29.166Z","event_id":"$vTI1-Vs7g90lJKawN0Ad-3PqqG2U9TxS3PMaGIcjgp4","time":"2026-03-06T19:24:50.327675461Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3091","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.340416705Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3091","time":"2026-03-06T19:24:50.340522865Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7074,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090328311584_2?ts=1771536841891&user_id=%40whatsapp_lid-226147862347841%3Amatrix.theocloud.dev","duration":46.351896,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.374845908Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-226147862347841","sender_login":"4915757977499"},"reaction_ts":"2026-02-19T21:34:01.891Z","event_id":"$m7_WQ8VQL8hEtMPGIf-cAQtK86VvpbnDwB5V0vCjMlk","time":"2026-03-06T19:24:50.375016602Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3092","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.384036234Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3092","time":"2026-03-06T19:24:50.384155385Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7075,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090375577156_1?ts=1771532870203&user_id=%40whatsapp_lid-141378109608075%3Amatrix.theocloud.dev","duration":36.82947,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.412543796Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-141378109608075","sender_login":"491622835744"},"reaction_ts":"2026-02-19T20:27:50.203Z","event_id":"$ZApmST2mS-YP1dumOyq-ss0UWvzJQwq1BOImWAv12W8","time":"2026-03-06T19:24:50.412708693Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3093","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.421879254Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3093","time":"2026-03-06T19:24:50.421989745Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7076,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090413433027_1?ts=1771585292639&user_id=%40whatsapp_lid-30653349408787%3Amatrix.theocloud.dev","duration":38.597246,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.452176313Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-30653349408787","sender_login":"4915733181520"},"reaction_ts":"2026-02-20T11:01:32.639Z","event_id":"$RozPqZduJnegLC6GCzMZVDNLS1lLcm2a0KqwNmfmcP8","time":"2026-03-06T19:24:50.452386119Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3094","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.4652125Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3094","time":"2026-03-06T19:24:50.465351207Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7077,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090452946603_1?ts=1771532374315&user_id=%40whatsapp_lid-54975749202069%3Amatrix.theocloud.dev","duration":44.930398,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.498040501Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-54975749202069","sender_login":"4917636343979"},"reaction_ts":"2026-02-19T20:19:34.315Z","event_id":"$akpi8pwII8u88d8BxFWIIKcvO8ruDX7LWi3POzpDI8o","time":"2026-03-06T19:24:50.498205399Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3095","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.509304163Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3095","time":"2026-03-06T19:24:50.509404666Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7078,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090498756803_1?ts=1771532294162&user_id=%40whatsapp_lid-1876967866385%3Amatrix.theocloud.dev","duration":43.267036,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.542151161Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-1876967866385","sender_login":"4916094954618"},"reaction_ts":"2026-02-19T20:18:14.162Z","event_id":"$bMQWx5zPoxKjAjC96SSnqV7RztMoXk0GU9cTVBAQoAY","time":"2026-03-06T19:24:50.542276248Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3096","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.55335853Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3096","time":"2026-03-06T19:24:50.553495001Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7079,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090542724705_1?ts=1771535272495&user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":40.209693,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.583084768Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-80358888464591","sender_login":"4915157563910"},"reaction_ts":"2026-02-19T21:07:52.495Z","event_id":"$RzUlapYBjWRZlg3iP6_wC5duSZiweRKatWZkMrkic1E","time":"2026-03-06T19:24:50.583223754Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3097","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.592165303Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3097","time":"2026-03-06T19:24:50.592272161Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7080,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090583734929_1?ts=1771533057210&user_id=%40whatsapp_lid-146720914698447%3Amatrix.theocloud.dev","duration":31.89896,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.615751992Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-146720914698447","sender_login":"491712144182"},"reaction_ts":"2026-02-19T20:30:57.21Z","event_id":"$iMDu_Oz6w6OhzaqmkKc27RzSUNobt27lMT_y7lDvJZo","time":"2026-03-06T19:24:50.615852705Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3098","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.624607286Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3098","time":"2026-03-06T19:24:50.62468921Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7081,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825090616271618_1?ts=1771564909514&user_id=%40whatsapp_lid-115070881280105%3Amatrix.theocloud.dev","duration":33.663663,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$P3-2rvIrSJJ4JyP4EKgxCLG6thVMTIqDqRYbHYsBsdA","key":"❤️"}},"time":"2026-03-06T19:24:50.650044026Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A45BAFA2400128F5F61","target_part_id":"","reaction_sender_id":{"user_id":"lid-115070881280105","sender_login":"491728367505"},"reaction_ts":"2026-02-20T05:21:49.514Z","event_id":"$kVhcG4Nvj4bqQmRYobovAldYiossF_OnwcaW-mOzQaA","time":"2026-03-06T19:24:50.650172326Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3099","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.658400645Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3099","time":"2026-03-06T19:24:50.658488367Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7082,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825090650658637_22?ts=1771597074000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":36.373051,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Heute wird das Training leider ausfallen. Am Wochenende geben wir dann wieder Gas 💪🏽","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:50.687168509Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3AA1DACCDF13AD95D377","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-20T14:17:54Z","event_id":"$-5IqkXkyn85QzON6uzcNLoMvIU_BaGA7p6YxclpCbPA","part_id":"","time":"2026-03-06T19:24:50.687350728Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3100","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.695492233Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3100","time":"2026-03-06T19:24:50.695593784Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7083,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825090688269222_23?ts=1771597160000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":36.583137,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Wochenende Training 🐉\n\n1. Samstag 14:30-18 Uhr 🌪️🥷🏽\n\n2. Sonntag 14:30-18 Uhr 🔥🥷🏽\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Samstag 14:30-18 Uhr 🌪️🥷🏽","Sonntag 14:30-18 Uhr 🔥🥷🏽"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eWochenende Training 🐉\u003c/p\u003e\u003col\u003e\u003cli\u003eSamstag 14:30-18 Uhr 🌪️🥷🏽\u003c/li\u003e\u003cli\u003eSonntag 14:30-18 Uhr 🔥🥷🏽\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eWochenende Training 🐉\u003c/p\u003e\u003col\u003e\u003cli\u003eSamstag 14:30-18 Uhr 🌪️🥷🏽\u003c/li\u003e\u003cli\u003eSonntag 14:30-18 Uhr 🔥🥷🏽\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Wochenende Training 🐉\n\n1. Samstag 14:30-18 Uhr 🌪️🥷🏽\n\n2. Sonntag 14:30-18 Uhr 🔥🥷🏽\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"be7c837c2baa1aef894d4f4cacea3a954cf69f3bddc5194fe83b32fe02fc97d5","org.matrix.msc1767.text":"Samstag 14:30-18 Uhr 🌪️🥷🏽"},{"id":"b5041b16ca204bc2b1a2876fad705d352647575c8b42fdcf072c7ebc91b9c455","org.matrix.msc1767.text":"Sonntag 14:30-18 Uhr 🔥🥷🏽"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":2,"question":{"org.matrix.msc1767.text":"Wochenende Training 🐉"}}},"time":"2026-03-06T19:24:50.725250809Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3AD008C8EFFCE553DAB2","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-20T14:19:20Z","event_id":"$d9VWkb4lrFZY3OzYHYyXRqMZYb0EuB6mPpdRoht0U2A","part_id":"","time":"2026-03-06T19:24:50.725937288Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3101","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.735374087Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3101","time":"2026-03-06T19:24:50.735495822Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7084,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/join?user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":18.391548,"status_code":403,"response_length":69,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:24:50.7463185Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7085,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/invite?user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":40.905182,"status_code":200,"response_length":2,"response_mime":"application/json","req_body":{"user_id":"@whatsapp_lid-253395034206287:matrix.theocloud.dev"},"time":"2026-03-06T19:24:50.787443755Z","message":"Request completed"} +{"level":"debug","transaction_id":"3102","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.801476101Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3102","time":"2026-03-06T19:24:50.801842912Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7086,"method":"POST","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/join?user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":65.597823,"status_code":200,"response_length":54,"response_mime":"application/json","req_body":{},"time":"2026-03-06T19:24:50.853540391Z","message":"Request completed"} +{"level":"debug","transaction_id":"3103","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.870157458Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3103","time":"2026-03-06T19:24:50.870506669Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7087,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825090854053522_1?ts=1771602948000&user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":64.692669,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hi guys i hava a question .Do you know where this gym/hall is located, if it’s possible to train there, and how much it costs?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:50.918905011Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:253395034206287@lid:AC902381FF3E8C1AA10FFAB28E933CF6","sender_id":{"user_id":"lid-253395034206287","sender_login":"48538383907"},"message_ts":"2026-02-20T15:55:48Z","event_id":"$0w6WCVJ9BySa-8Q-meCau47N14GPC1Uf9STLO7eZV50","part_id":"","time":"2026-03-06T19:24:50.919044346Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3104","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:50.937770997Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3104","time":"2026-03-06T19:24:50.93787597Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3105","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:50.970923903Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3105","time":"2026-03-06T19:24:50.971017492Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7088,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825090920287468_3?ts=1771604533000&user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":87.045665,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hi Wilktor, the address and time are listed under the group description.","m.mentions":{"user_ids":["@whatsapp_lid-253395034206287:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$0w6WCVJ9BySa-8Q-meCau47N14GPC1Uf9STLO7eZV50"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:51.007522825Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:38504566390811@lid:3A20D775E722F650D60E","sender_id":{"user_id":"lid-38504566390811","sender_login":"4917656979328"},"message_ts":"2026-02-20T16:22:13Z","event_id":"$uG-N5Fsx_3svl1CuO9O26pY7awNzpUrhoj94jIJdOH4","part_id":"","time":"2026-03-06T19:24:51.007708954Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3106","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.03177113Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3106","time":"2026-03-06T19:24:51.03188169Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3107","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.040849359Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3107","time":"2026-03-06T19:24:51.041194589Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491783743461@s.whatsapp.net","portal_mxid":"!mAIrbXgdvoZqGtLMoJ:matrix.theocloud.dev","event_loop_index":11,"action":"handle matrix event","event_id":"$K3ZdC_96RaIAnKE3Nw8-CokMuhboxc5Wk5mch924YUs","event_type":"m.room.member","event_id":"$K3ZdC_96RaIAnKE3Nw8-CokMuhboxc5Wk5mch924YUs","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:51.041684532Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7089,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825091008553556_2?ts=1771604577393&user_id=%40whatsapp_lid-253395034206287%3Amatrix.theocloud.dev","duration":81.325869,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$uG-N5Fsx_3svl1CuO9O26pY7awNzpUrhoj94jIJdOH4","key":"❤️"}},"time":"2026-03-06T19:24:51.090015058Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:38504566390811@lid:3A20D775E722F650D60E","target_part_id":"","reaction_sender_id":{"user_id":"lid-253395034206287","sender_login":"48538383907"},"reaction_ts":"2026-02-20T16:22:57.393Z","event_id":"$xc0TFgyABxjxqrP0FjqPzp9dHVulNsHCHAk4HsCys3Q","time":"2026-03-06T19:24:51.090178139Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3108","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.10030016Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3108","time":"2026-03-06T19:24:51.100409184Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7090,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091090796033_4?ts=1771604551000&user_id=%40whatsapp_lid-38504566390811%3Amatrix.theocloud.dev","duration":39.546053,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"4. Samstags Halle, offenes Training für alle \nOrt: Am Hellespont 4, 12109 \nCarl-Sonnenschein-Grundschule \nZeit 14:30 Uhr\n\n5. Sonntags Halle, Freestyle Kurs \nOrt: Am Hellespont 4, 12109 \nCarl-Sonnenschein-Grundschule \nZeit 14:30 Uhr","format":"org.matrix.custom.html","formatted_body":"\u003col start=\"4\"\u003e\u003cli\u003eSamstags Halle, offenes Training für alle \u003c/li\u003e\u003c/ol\u003eOrt: Am Hellespont 4, 12109 \u003cbr\u003eCarl-Sonnenschein-Grundschule \u003cbr\u003eZeit 14:30 Uhr\u003cbr\u003e\u003cbr\u003e\u003col start=\"5\"\u003e\u003cli\u003eSonntags Halle, Freestyle Kurs \u003c/li\u003e\u003c/ol\u003eOrt: Am Hellespont 4, 12109 \u003cbr\u003eCarl-Sonnenschein-Grundschule \u003cbr\u003eZeit 14:30 Uhr","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:51.13053953Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:38504566390811@lid:3A2DF1B977F54B8C0AD5","sender_id":{"user_id":"lid-38504566390811","sender_login":"4917656979328"},"message_ts":"2026-02-20T16:22:31Z","event_id":"$vsxKnW4-F7ZnZtmmmrxfC1Y-yFY9PKTT58Z43kKlPFI","part_id":"","time":"2026-03-06T19:24:51.130723075Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3109","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.141537931Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3109","time":"2026-03-06T19:24:51.141661971Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7091,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091131561251_12?ts=1771706075000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":46.103118,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Morgen wieder Eisbaden?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:51.17781446Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:ACC04072ADDA31BACEBF821C15B72596","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-21T20:34:35Z","event_id":"$sDE2xtAe_n_DYDZiEzJfoAgLb_SVQP7QXKUZHxwnebc","part_id":"","time":"2026-03-06T19:24:51.178023917Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3110","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.188893948Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3110","time":"2026-03-06T19:24:51.189024902Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7092,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091178911053_33?ts=1771707422000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":39.801326,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bin erkältet bin leider raus","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:51.218863796Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3EB017C9573EAFF089DC9C","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-02-21T20:57:02Z","event_id":"$rM4y9I2_XxlCTzu0GMuVmBJ7xN1bzpGSrERKSAbm310","part_id":"","time":"2026-03-06T19:24:51.219034351Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3111","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.229688221Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3111","time":"2026-03-06T19:24:51.229792984Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7093,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091220014936_13?ts=1771707557000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":37.474043,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Oh no! Dann dir gute Besserung!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:51.257651991Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:ACA5EFF3D32446482DD9F63B7F9BB258","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-21T20:59:17Z","event_id":"$9nPKkGM5d1ue9-sc7WIQzX8MTxMs3M0REKpqtScM4b8","part_id":"","time":"2026-03-06T19:24:51.257834419Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3112","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.275010293Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3112","time":"2026-03-06T19:24:51.275097805Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7094,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825091258540244_34?ts=1771708165000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":51.583147,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$9nPKkGM5d1ue9-sc7WIQzX8MTxMs3M0REKpqtScM4b8","key":"🙏"}},"time":"2026-03-06T19:24:51.310273622Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:ACA5EFF3D32446482DD9F63B7F9BB258","target_part_id":"","reaction_sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"reaction_ts":"2026-02-21T21:09:25Z","event_id":"$h3kISGKPQfeJVlkXaqJbKsIPJa21R-U6VvoXjQZ46Yk","time":"2026-03-06T19:24:51.31048252Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3113","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.321984693Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3113","time":"2026-03-06T19:24:51.322102866Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7095,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091311149862_14?ts=1771751447000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":51.619815,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1599,"mimetype":"image/jpeg","size":179095,"w":899},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/iQIsegsRhJfXSlCWjVNEGDbx"},"time":"2026-03-06T19:24:51.363023203Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:AC4F37B3DE2BC6F90B94D3609A41368C","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-22T09:10:47Z","event_id":"$iVgmdG14mTs_LV37h9mVMDaM2qSeIUKn4vOca_Irthw","part_id":"","time":"2026-03-06T19:24:51.363186285Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3114","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.36805729Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3114","time":"2026-03-06T19:24:51.368206612Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7096,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825091364014963_35?ts=1771755649685&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":39.748805,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$iVgmdG14mTs_LV37h9mVMDaM2qSeIUKn4vOca_Irthw","key":"👍️"}},"time":"2026-03-06T19:24:51.403885293Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC4F37B3DE2BC6F90B94D3609A41368C","target_part_id":"","reaction_sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"reaction_ts":"2026-02-22T10:20:49.685Z","event_id":"$kPKfcfvDjoWXqgYqRMQ2OoMCb3dEXc4SJc2ubd3N5Ow","time":"2026-03-06T19:24:51.40398377Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3115","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.411289474Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3115","time":"2026-03-06T19:24:51.411419241Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7097,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825091404385223_6?ts=1771751625435&user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":46.863839,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$iVgmdG14mTs_LV37h9mVMDaM2qSeIUKn4vOca_Irthw","key":"🔥"}},"time":"2026-03-06T19:24:51.451391401Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC4F37B3DE2BC6F90B94D3609A41368C","target_part_id":"","reaction_sender_id":{"user_id":"lid-87162133413943","sender_login":"491772982858"},"reaction_ts":"2026-02-22T09:13:45.435Z","event_id":"$orDamzqB7NxoeLgg3rNqkapnIf5FywQn1w99YXbYdrU","time":"2026-03-06T19:24:51.451588356Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3116","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.461652687Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3116","time":"2026-03-06T19:24:51.461753679Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7098,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825091452298581_2?ts=1771760631861&user_id=%40whatsapp_lid-21273073692847%3Amatrix.theocloud.dev","duration":35.106533,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$iVgmdG14mTs_LV37h9mVMDaM2qSeIUKn4vOca_Irthw","key":"🔥"}},"time":"2026-03-06T19:24:51.487569104Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC4F37B3DE2BC6F90B94D3609A41368C","target_part_id":"","reaction_sender_id":{"user_id":"lid-21273073692847","sender_login":"4915780931514"},"reaction_ts":"2026-02-22T11:43:51.861Z","event_id":"$P2LmYvby9NBq7ivLS-Ero2GsSHRz5eqyChVZPoGMX_k","time":"2026-03-06T19:24:51.487727296Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3117","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.50032222Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3117","time":"2026-03-06T19:24:51.50045485Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7099,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825091488305939_1?ts=1771752661630&user_id=%40whatsapp_lid-223690570625160%3Amatrix.theocloud.dev","duration":39.66688,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$iVgmdG14mTs_LV37h9mVMDaM2qSeIUKn4vOca_Irthw","key":"💪🏼"}},"time":"2026-03-06T19:24:51.528134433Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC4F37B3DE2BC6F90B94D3609A41368C","target_part_id":"","reaction_sender_id":{"user_id":"lid-223690570625160","sender_login":"491727724601"},"reaction_ts":"2026-02-22T09:31:01.63Z","event_id":"$qUeAFqdCgy4VONA7fFwBXLQ1Eagwo0k29vkDregNMtk","time":"2026-03-06T19:24:51.528279216Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3118","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.538947473Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3118","time":"2026-03-06T19:24:51.539020807Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7100,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825091528950190_2?ts=1771752661843&user_id=%40whatsapp_lid-184331557449759%3Amatrix.theocloud.dev","duration":41.915659,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$iVgmdG14mTs_LV37h9mVMDaM2qSeIUKn4vOca_Irthw","key":"💪"}},"time":"2026-03-06T19:24:51.571003298Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC4F37B3DE2BC6F90B94D3609A41368C","target_part_id":"","reaction_sender_id":{"user_id":"lid-184331557449759","sender_login":"4915209459043"},"reaction_ts":"2026-02-22T09:31:01.843Z","event_id":"$sGatM9EH9J_YKNy10TiC1l1OLWaWSgaoI7PZeA90qOE","time":"2026-03-06T19:24:51.571155205Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3119","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.58391796Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3119","time":"2026-03-06T19:24:51.5840288Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7101,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825091571793004_6?ts=1771752604744&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":47.667444,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$iVgmdG14mTs_LV37h9mVMDaM2qSeIUKn4vOca_Irthw","key":"❤️"}},"time":"2026-03-06T19:24:51.619585256Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC4F37B3DE2BC6F90B94D3609A41368C","target_part_id":"","reaction_sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"reaction_ts":"2026-02-22T09:30:04.744Z","event_id":"$I7kct2t9Zy6ok0LfNFTQWMye4Gh-iMeMw1ZkIe_9PqU","time":"2026-03-06T19:24:51.619709505Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3120","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.631635271Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3120","time":"2026-03-06T19:24:51.631765317Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7102,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091620208528_15?ts=1771751491000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":43.280934,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Angenehme Temperaturen heute 🥶","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:51.663600511Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:AC71803A73EA19F79815AFDE8ABCACCF","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-22T09:11:31Z","event_id":"$dnYgqhapMmJugT3dbUlmOJG9qiJrHm09DFHSAR9Gv18","part_id":"","time":"2026-03-06T19:24:51.663695776Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3121","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.675103662Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3121","time":"2026-03-06T19:24:51.675243346Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7103,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825091664285384_1?ts=1771751682513&user_id=%40whatsapp_lid-25529302425761%3Amatrix.theocloud.dev","duration":40.607026,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$dnYgqhapMmJugT3dbUlmOJG9qiJrHm09DFHSAR9Gv18","key":"🤫"}},"time":"2026-03-06T19:24:51.705009255Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:213099231596676@lid:AC71803A73EA19F79815AFDE8ABCACCF","target_part_id":"","reaction_sender_id":{"user_id":"lid-25529302425761","sender_login":"491735440250"},"reaction_ts":"2026-02-22T09:14:42.513Z","event_id":"$E4P5ePGywuNqQm4lfNiX2gxjEHj_nCiwIehxZNwJ88A","time":"2026-03-06T19:24:51.705111295Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3122","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.715529447Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3122","time":"2026-03-06T19:24:51.715632394Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3123","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:51.742409965Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3123","time":"2026-03-06T19:24:51.742499642Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7104,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091705588177_7?ts=1771752612000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":53.883819,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Du Maschine 🫡🔥","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:51.759603858Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3AF2614B06E3000480B2","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-02-22T09:30:12Z","event_id":"$GI4Ht00VCL5O1SwbGlL6NpRTC96iSFHu6pJY0HLZPsM","part_id":"","time":"2026-03-06T19:24:51.7597184Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3124","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.768378693Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3124","time":"2026-03-06T19:24:51.76847312Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7105,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091760387907_8?ts=1771757658000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":43.015604,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Heute 14:30 - 16:30 Uhr Open gym ☀️🔥\n\n1. Bin am Start😎\n\n2. Nächstes Mal🥲\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Bin am Start😎","Nächstes Mal🥲"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eHeute 14:30 - 16:30 Uhr Open gym ☀️🔥\u003c/p\u003e\u003col\u003e\u003cli\u003eBin am Start😎\u003c/li\u003e\u003cli\u003eNächstes Mal🥲\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eHeute 14:30 - 16:30 Uhr Open gym ☀️🔥\u003c/p\u003e\u003col\u003e\u003cli\u003eBin am Start😎\u003c/li\u003e\u003cli\u003eNächstes Mal🥲\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Heute 14:30 - 16:30 Uhr Open gym ☀️🔥\n\n1. Bin am Start😎\n\n2. Nächstes Mal🥲\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"adce4a83692696f449e7b059e1184ad7ca21971e19e41c9eb261f93a6e59d665","org.matrix.msc1767.text":"Bin am Start😎"},{"id":"3e13b38e5e8f7276d645a19f91dde4f010dcdeca29984c84e729388b8483f514","org.matrix.msc1767.text":"Nächstes Mal🥲"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":2,"question":{"org.matrix.msc1767.text":"Heute 14:30 - 16:30 Uhr Open gym ☀️🔥"}}},"time":"2026-03-06T19:24:51.803667305Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3ADC5541FB6FD59B61AC","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-02-22T10:54:18Z","event_id":"$SHm5Pb7U6AYkdEG_02Gg5I6DwIWecCiyDoCgUQPm6ms","part_id":"","time":"2026-03-06T19:24:51.803878228Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3125","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.818985446Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3125","time":"2026-03-06T19:24:51.819139029Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7106,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091805421671_9?ts=1771768874000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":70.499838,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"17:00 Uhr *","m.mentions":{"user_ids":["@whatsapp_lid-239363409617131:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$SHm5Pb7U6AYkdEG_02Gg5I6DwIWecCiyDoCgUQPm6ms"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:51.876109315Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3A53FD38223048E72544","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-02-22T14:01:14Z","event_id":"$3NQNfzCNuFsQzu9w-IPBrHnkQMjC4F7V1yOIuq1QWUY","part_id":"","time":"2026-03-06T19:24:51.876288041Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3126","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.881657719Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3126","time":"2026-03-06T19:24:51.881803829Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7107,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091877211075_14?ts=1771934495000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":41.714653,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Heute Training im Cheruskerpark 18-19 Uhr\n\n1. Bin dabei\n\n2. Heut setze ich aus\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Bin dabei","Heut setze ich aus"],"selectable_options_count":1},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eHeute Training im Cheruskerpark 18-19 Uhr\u003c/p\u003e\u003col\u003e\u003cli\u003eBin dabei\u003c/li\u003e\u003cli\u003eHeut setze ich aus\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eHeute Training im Cheruskerpark 18-19 Uhr\u003c/p\u003e\u003col\u003e\u003cli\u003eBin dabei\u003c/li\u003e\u003cli\u003eHeut setze ich aus\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Heute Training im Cheruskerpark 18-19 Uhr\n\n1. Bin dabei\n\n2. Heut setze ich aus\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"e41273d0b5fa1205bdfa152f9cce1378dfb87c87dc20023e92cc3c1de04a69c3","org.matrix.msc1767.text":"Bin dabei"},{"id":"c2c83c21c9eb9fb82d9c02382fa2e3ecea3b2c3d3c1958b9e596c7c5ae36b070","org.matrix.msc1767.text":"Heut setze ich aus"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":1,"question":{"org.matrix.msc1767.text":"Heute Training im Cheruskerpark 18-19 Uhr"}}},"time":"2026-03-06T19:24:51.919265441Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:236846508454136@lid:3A4A2BB704FE085E3C8A","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-24T12:01:35Z","event_id":"$VQwJpVGC78zw5rI3Wdf68fE4nL5D12Oxy0CmJMXRg5Y","part_id":"","time":"2026-03-06T19:24:51.919487469Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3127","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:51.939815392Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3127","time":"2026-03-06T19:24:51.93998427Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3128","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:51.960315615Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3128","time":"2026-03-06T19:24:51.960411019Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7108,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091920306299_16?ts=1771951059000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":68.551799,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Komme voraussichtlich etwas später","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:51.989022646Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:ACA042D464881EAF38FE7CDB73D60D1C","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-24T16:37:39Z","event_id":"$0NIQEn7ch6HFkoA4oRTtjQSD4Cq9aWeAQxAQM9X_4aM","part_id":"","time":"2026-03-06T19:24:51.98915388Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3129","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.003203198Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3129","time":"2026-03-06T19:24:52.003387931Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7109,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825091989960488_1?ts=1772112808000&user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":44.454283,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hallo Leute. Welches Training/welcher Trainingstag mit euch ist für Anfänger geeignet?","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:52.034539649Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:256783310393511@lid:AC77A05F94569049795690351914D998","sender_id":{"user_id":"lid-256783310393511","sender_login":"4917631673140"},"message_ts":"2026-02-26T13:33:28Z","event_id":"$mqaxlZnxoH456YVG9yDZuG2ePnBchIDAMxBpRiBs8ys","part_id":"","time":"2026-03-06T19:24:52.034673536Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3130","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.044807361Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3130","time":"2026-03-06T19:24:52.044885444Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3131","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:52.066692136Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3131","time":"2026-03-06T19:24:52.066795712Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7110,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825092035587561_15?ts=1772114820000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":53.727512,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wir gestalten jedes Training so, dass alle Leistungsklassen bedient werden, von Anfänger bis ‚Profi‘.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:52.089419487Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:236846508454136@lid:3A45EB2C642EC7070045","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-26T14:07:00Z","event_id":"$HpN8qOk2ifUG_Fsx_a9-_0ZjzOOXbX08shjrtrWq1l4","part_id":"","time":"2026-03-06T19:24:52.089532911Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3132","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.099030263Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3132","time":"2026-03-06T19:24:52.099117077Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7111,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092090221206_2?ts=1772114857941&user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":35.35978,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$HpN8qOk2ifUG_Fsx_a9-_0ZjzOOXbX08shjrtrWq1l4","key":"🎉"}},"time":"2026-03-06T19:24:52.125702303Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:236846508454136@lid:3A45EB2C642EC7070045","target_part_id":"","reaction_sender_id":{"user_id":"lid-256783310393511","sender_login":"4917631673140"},"reaction_ts":"2026-02-26T14:07:37.941Z","event_id":"$Xh4e2IUI_IkO31Cc6II9gMTTMoP9uHdL1TDAbyrsDW0","time":"2026-03-06T19:24:52.125839892Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3133","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.137753226Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3133","time":"2026-03-06T19:24:52.137870351Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7112,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092126380470_24?ts=1772118228116&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":76.334385,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$HpN8qOk2ifUG_Fsx_a9-_0ZjzOOXbX08shjrtrWq1l4","key":"❤️"}},"time":"2026-03-06T19:24:52.202854052Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:236846508454136@lid:3A45EB2C642EC7070045","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-02-26T15:03:48.116Z","event_id":"$gxNs9doTU7kC1hkb60dh60Kukrmtz0ZsC4e5z5bwxjc","time":"2026-03-06T19:24:52.203015806Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3134","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.208222263Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3134","time":"2026-03-06T19:24:52.208388348Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7113,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825092203740140_5?ts=1772126309000&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":67.626459,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Trainiert heute jemand in der Naunynritze? 😊","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:52.271531706Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:59622887026730@lid:3A3E1B76522E55B22E4A","sender_id":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"message_ts":"2026-02-26T17:18:29Z","event_id":"$XHK2jJjywYKR7ywWYw_KQkp2nPdOf9NVOuRxmI10DNI","part_id":"","time":"2026-03-06T19:24:52.271668038Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3135","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.275672301Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3135","time":"2026-03-06T19:24:52.275784398Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7114,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825092272607137_6?ts=1772131586000&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":36.047517,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Für alle Couch-Potatoes heute 🥔😘 🤸🏼🐉😉","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":1365,"mimetype":"image/jpeg","size":207852,"w":1054},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/lxzQedMNDWebInMtCQiwGHzq"},"time":"2026-03-06T19:24:52.308898054Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","sender_id":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"message_ts":"2026-02-26T18:46:26Z","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","part_id":"","time":"2026-03-06T19:24:52.309061275Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3136","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.317275626Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3136","time":"2026-03-06T19:24:52.3173799Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7115,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092309953579_2?ts=1772142611323&user_id=%40whatsapp_lid-80358888464591%3Amatrix.theocloud.dev","duration":36.104159,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","key":"😍"}},"time":"2026-03-06T19:24:52.346177517Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","target_part_id":"","reaction_sender_id":{"user_id":"lid-80358888464591","sender_login":"4915157563910"},"reaction_ts":"2026-02-26T21:50:11.323Z","event_id":"$QbDQhcHQrE2lo5qwdUulAIYZQREmWlwILBtzzBzZb00","time":"2026-03-06T19:24:52.346302954Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3137","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.356316161Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3137","time":"2026-03-06T19:24:52.356416314Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7116,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092346697842_25?ts=1772136605883&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":33.490943,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","key":"💪🏽"}},"time":"2026-03-06T19:24:52.38029683Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-02-26T20:10:05.883Z","event_id":"$Sscpean2jWupIPT8vsfV9q2XyepoJZIoJWmmKJAK8Vk","time":"2026-03-06T19:24:52.380421778Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3138","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.390888959Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3138","time":"2026-03-06T19:24:52.390952376Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7117,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092380781116_3?ts=1772136599009&user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":36.823953,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","key":"👍️"}},"time":"2026-03-06T19:24:52.417729109Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","target_part_id":"","reaction_sender_id":{"user_id":"lid-256783310393511","sender_login":"4917631673140"},"reaction_ts":"2026-02-26T20:09:59.009Z","event_id":"$2cpqNCeIIGiic5DarIVsjE8aH3mCWmT0VH83EP3D7zQ","time":"2026-03-06T19:24:52.417913143Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3139","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.42597454Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3139","time":"2026-03-06T19:24:52.42602315Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7118,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092418503449_4?ts=1772136696997&user_id=%40whatsapp_lid-206734241087531%3Amatrix.theocloud.dev","duration":36.644109,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","key":"👍️"}},"time":"2026-03-06T19:24:52.45526615Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","target_part_id":"","reaction_sender_id":{"user_id":"lid-206734241087531","sender_login":"4915226357423"},"reaction_ts":"2026-02-26T20:11:36.997Z","event_id":"$RyKJzpIjw6rvrtWGJeiRcWswGUPncBYJD7UbAGjJo_Y","time":"2026-03-06T19:24:52.455417289Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3140","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.46241457Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3140","time":"2026-03-06T19:24:52.462510463Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7119,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092455931118_36?ts=1772132346238&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":34.121478,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","key":"💪"}},"time":"2026-03-06T19:24:52.490161899Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","target_part_id":"","reaction_sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"reaction_ts":"2026-02-26T18:59:06.238Z","event_id":"$uJRZnUc0i2_lCxCc8fwN5KHvQnt-ylHd-YcR7UAzt0c","time":"2026-03-06T19:24:52.490292574Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3141","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.500257031Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3141","time":"2026-03-06T19:24:52.500357534Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7120,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092490793063_3?ts=1772142083000&user_id=%40whatsapp_lid-223072531550244%3Amatrix.theocloud.dev","duration":35.648998,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","key":"😂"}},"time":"2026-03-06T19:24:52.526549199Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","target_part_id":"","reaction_sender_id":{"user_id":"lid-223072531550244","sender_login":"4917663273910"},"reaction_ts":"2026-02-26T21:41:23Z","event_id":"$ZVEClcIhABg9oGut-lNQICZ5aOV65Ald_WUQI3nZIUk","time":"2026-03-06T19:24:52.526683575Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3142","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.538306435Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3142","time":"2026-03-06T19:24:52.538413224Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7121,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092527205296_5?ts=1772132191018&user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":36.782537,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","key":"💪"}},"time":"2026-03-06T19:24:52.564106285Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","target_part_id":"","reaction_sender_id":{"user_id":"lid-83674703904795","sender_login":"4915236735839"},"reaction_ts":"2026-02-26T18:56:31.018Z","event_id":"$VWCII2zKlzKDceTP_3ftk9hPNE6R_sHzjWLbdGCsVBA","time":"2026-03-06T19:24:52.564235842Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3143","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.573178228Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3143","time":"2026-03-06T19:24:52.573270699Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7122,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092564829291_1?ts=1772138379796&user_id=%40whatsapp_lid-171970641588327%3Amatrix.theocloud.dev","duration":37.227152,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","key":"👍️"}},"time":"2026-03-06T19:24:52.602171753Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","target_part_id":"","reaction_sender_id":{"user_id":"lid-171970641588327","sender_login":"4917664201620"},"reaction_ts":"2026-02-26T20:39:39.796Z","event_id":"$LCI-K4Qy83TwAo1uifspDMomTkMbsk-5XmH9WanzOa4","time":"2026-03-06T19:24:52.602291253Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3144","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.611149619Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3144","time":"2026-03-06T19:24:52.611243836Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7123,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092602742922_7?ts=1772135160708&user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":52.114436,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA","key":"💪"}},"time":"2026-03-06T19:24:52.654975881Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:59622887026730@lid:4AE494F3857E2C96A122","target_part_id":"","reaction_sender_id":{"user_id":"lid-87162133413943","sender_login":"491772982858"},"reaction_ts":"2026-02-26T19:46:00.708Z","event_id":"$tWdRAkj_KI4ModqFF4qUPV_-VeaLL13nW_rxmIRt2M4","time":"2026-03-06T19:24:52.655125832Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3145","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.664449976Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3145","time":"2026-03-06T19:24:52.664516256Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7124,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825092655747078_6?ts=1772132234000&user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":33.232737,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Mashalah Diggi 💪🏻 Du bist eine Rakete 🚀 mach weiter so 👏","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:52.689106928Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:83674703904795@lid:3A3093E13BD9A5711951","sender_id":{"user_id":"lid-83674703904795","sender_login":"4915236735839"},"message_ts":"2026-02-26T18:57:14Z","event_id":"$1vvc6q_GRWiEjOM4Na5-gJ4arjXqoyMp1ONOqIvlvIQ","part_id":"","time":"2026-03-06T19:24:52.689239279Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3146","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.697465503Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3146","time":"2026-03-06T19:24:52.697567193Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7125,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092689960330_7?ts=1772135827439&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":30.07573,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$1vvc6q_GRWiEjOM4Na5-gJ4arjXqoyMp1ONOqIvlvIQ","key":"❤️"}},"time":"2026-03-06T19:24:52.720137749Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:83674703904795@lid:3A3093E13BD9A5711951","target_part_id":"","reaction_sender_id":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"reaction_ts":"2026-02-26T19:57:07.439Z","event_id":"$gGkcMO2kBdS8iAMKPPWK6y_9b87rV70iUx_hhqaAgGo","time":"2026-03-06T19:24:52.720250474Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3147","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.727812709Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3147","time":"2026-03-06T19:24:52.727914608Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7126,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825092720826323_26?ts=1772136488000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":32.773105,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Entschuldigt Leute, es gab etwas Missverständnisse mit der Koordination heute 🙏🏽","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:52.75373143Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A6BB280324777C57A96","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-26T20:08:08Z","event_id":"$MUrWBisuFURaXMQHsdsVB2V3JhjhiJIyN7PwFvv2Q0w","part_id":"","time":"2026-03-06T19:24:52.75387279Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3148","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.760447107Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3148","time":"2026-03-06T19:24:52.760545794Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7127,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092754675487_7?ts=1772136689450&user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":30.453227,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$MUrWBisuFURaXMQHsdsVB2V3JhjhiJIyN7PwFvv2Q0w","key":"🙏"}},"time":"2026-03-06T19:24:52.785246886Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A6BB280324777C57A96","target_part_id":"","reaction_sender_id":{"user_id":"lid-83674703904795","sender_login":"4915236735839"},"reaction_ts":"2026-02-26T20:11:29.45Z","event_id":"$zruu210avXnWMUMPUl9bRklibqQ8fyhPtQMgXMMAtCA","time":"2026-03-06T19:24:52.785378958Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3149","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.795755693Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3149","time":"2026-03-06T19:24:52.795842298Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7128,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092785849624_8?ts=1772152337880&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":39.722125,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$MUrWBisuFURaXMQHsdsVB2V3JhjhiJIyN7PwFvv2Q0w","key":"🙏"}},"time":"2026-03-06T19:24:52.825685312Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A6BB280324777C57A96","target_part_id":"","reaction_sender_id":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"reaction_ts":"2026-02-27T00:32:17.88Z","event_id":"$HlWNPFjlNLkFPCIIIR4VElGypY_8FSusEX2A9NXYOKQ","time":"2026-03-06T19:24:52.825820597Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3150","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.836216399Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3150","time":"2026-03-06T19:24:52.836299791Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7129,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825092826930250_27?ts=1772136576000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":39.650746,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Sehr stark Felix 💪🏽 und so extreme Fortschritte hast du gemacht 🚀 weiter so 🥷🏽","m.mentions":{"user_ids":["@whatsapp_lid-59622887026730:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$opNPfADS7nL0EgStQKSlMFzGv9v-af08UmPfAMqUoUA"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:52.866725429Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A98457D847F04D14317","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-26T20:09:36Z","event_id":"$uhASza7OYHUEAGIQXzcJuYt-vywX1kkV6pOHGwYJw2A","part_id":"","time":"2026-03-06T19:24:52.866868676Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3151","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.874804426Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3151","time":"2026-03-06T19:24:52.874910587Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7130,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825092867706154_9?ts=1772152324587&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":42.290642,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$uhASza7OYHUEAGIQXzcJuYt-vywX1kkV6pOHGwYJw2A","key":"❤️"}},"time":"2026-03-06T19:24:52.910127261Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A98457D847F04D14317","target_part_id":"","reaction_sender_id":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"reaction_ts":"2026-02-27T00:32:04.587Z","event_id":"$wMmmZTMdXg0LiqRsxrNSNCuOAq14NTBvPDglguwyhgA","time":"2026-03-06T19:24:52.910351524Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3152","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.91763879Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3152","time":"2026-03-06T19:24:52.917712403Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7131,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825092911002244_16?ts=1772189546000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":34.520417,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Heute Training im Cheruskerpark 17:30 Uhr bis Open End\n\n1. Bin dabei\n\n2. Wird heute nix\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Bin dabei","Wird heute nix"],"selectable_options_count":1},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eHeute Training im Cheruskerpark 17:30 Uhr bis Open End\u003c/p\u003e\u003col\u003e\u003cli\u003eBin dabei\u003c/li\u003e\u003cli\u003eWird heute nix\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eHeute Training im Cheruskerpark 17:30 Uhr bis Open End\u003c/p\u003e\u003col\u003e\u003cli\u003eBin dabei\u003c/li\u003e\u003cli\u003eWird heute nix\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Heute Training im Cheruskerpark 17:30 Uhr bis Open End\n\n1. Bin dabei\n\n2. Wird heute nix\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"e41273d0b5fa1205bdfa152f9cce1378dfb87c87dc20023e92cc3c1de04a69c3","org.matrix.msc1767.text":"Bin dabei"},{"id":"9962d8d4a8aaf051d519c9cf49ce4db100cca9f4555c3c95570001f3f42f5ac0","org.matrix.msc1767.text":"Wird heute nix"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":1,"question":{"org.matrix.msc1767.text":"Heute Training im Cheruskerpark 17:30 Uhr bis Open End"}}},"time":"2026-03-06T19:24:52.945761032Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:236846508454136@lid:3ADC80935B9807BA01EC","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-02-27T10:52:26Z","event_id":"$y_N7nyiBEar-YkGGsnCr9LaEYB7bTECUpHyyAux__3I","part_id":"","time":"2026-03-06T19:24:52.945886888Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3153","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.95454334Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3153","time":"2026-03-06T19:24:52.954658161Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7132,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825092947106822_1?ts=1772208951000&user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":38.25502,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Verspäte mich bisschen","m.mentions":{"user_ids":["@whatsapp_lid-236846508454136:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$y_N7nyiBEar-YkGGsnCr9LaEYB7bTECUpHyyAux__3I"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:52.985510675Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:224927957410033@lid:3A00B22A4376391EC6C5","sender_id":{"user_id":"lid-224927957410033","sender_login":"4915226672180"},"message_ts":"2026-02-27T16:15:51Z","event_id":"$KhXznFv9H6Duv9L729jXlKs6sTyzsPW26vxKNMrVx68","part_id":"","time":"2026-03-06T19:24:52.985675293Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3154","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:52.997739695Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3154","time":"2026-03-06T19:24:52.997841875Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3155","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:53.023680487Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3155","time":"2026-03-06T19:24:53.023751446Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7133,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825092986626264_2?ts=1772209355000&user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":61.322712,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Bisschen viel 🫠","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.048079861Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:224927957410033@lid:3A88DAEA26AA193E9C50","sender_id":{"user_id":"lid-224927957410033","sender_login":"4915226672180"},"message_ts":"2026-02-27T16:22:35Z","event_id":"$dEL9V-xELJVBufkHFvd8LWyOKBD-3DdZ2y0czwmqX6g","part_id":"","time":"2026-03-06T19:24:53.048206275Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3156","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.060457645Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3156","time":"2026-03-06T19:24:53.060545786Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7134,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093049125817_17?ts=1772209775000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":43.622742,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Schaffe such erst zu 6","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.092871552Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:AC216A11D2737432F83FBEFADFDC4A61","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-02-27T16:29:35Z","event_id":"$EScU3bnAcGBQqH3pnIJu4h7zKvihRtvMcjNJdkr60bE","part_id":"","time":"2026-03-06T19:24:53.093010258Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3157","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.102651974Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3157","time":"2026-03-06T19:24:53.102753944Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7135,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093094396207_2?ts=1772210102000&user_id=%40whatsapp_lid-131026634416177%3Amatrix.theocloud.dev","duration":42.926834,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich auch","m.mentions":{"user_ids":["@whatsapp_lid-213099231596676:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$EScU3bnAcGBQqH3pnIJu4h7zKvihRtvMcjNJdkr60bE"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.137449805Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:131026634416177@lid:ACDF471D0E74E8927E74D2D8048C1B07","sender_id":{"user_id":"lid-131026634416177","sender_login":"4917695159069"},"message_ts":"2026-02-27T16:35:02Z","event_id":"$01uCHTVucys9bRRssWZ52l2tpqseWFZY8fg0FXJv3js","part_id":"","time":"2026-03-06T19:24:53.137592073Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3158","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.145537392Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3158","time":"2026-03-06T19:24:53.145637476Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7136,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093138493108_28?ts=1772224793000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":35.413909,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Train Hard never stop 🥷🏽🚀🐉\n\n1. Samstag 14:30-18 Uhr\n\n2. Sonntag 14:30-18 Uhr\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Samstag 14:30-18 Uhr","Sonntag 14:30-18 Uhr"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eTrain Hard never stop 🥷🏽🚀🐉\u003c/p\u003e\u003col\u003e\u003cli\u003eSamstag 14:30-18 Uhr\u003c/li\u003e\u003cli\u003eSonntag 14:30-18 Uhr\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eTrain Hard never stop 🥷🏽🚀🐉\u003c/p\u003e\u003col\u003e\u003cli\u003eSamstag 14:30-18 Uhr\u003c/li\u003e\u003cli\u003eSonntag 14:30-18 Uhr\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Train Hard never stop 🥷🏽🚀🐉\n\n1. Samstag 14:30-18 Uhr\n\n2. Sonntag 14:30-18 Uhr\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"8d5757a2839000079cf6513cd86571499b8df87f0bcd26e84a13e833c718de05","org.matrix.msc1767.text":"Samstag 14:30-18 Uhr"},{"id":"7c854c26312809459b625fc79fae128861859a094b21c8eec35ace0d22771d0d","org.matrix.msc1767.text":"Sonntag 14:30-18 Uhr"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":2,"question":{"org.matrix.msc1767.text":"Train Hard never stop 🥷🏽🚀🐉"}}},"time":"2026-03-06T19:24:53.174213833Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A8575560B10DDB82D29","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-27T20:39:53Z","event_id":"$dSwYImuqTSJ-LJfbF6T0qAek9G1JAm1sBrACgVPnTMQ","part_id":"","time":"2026-03-06T19:24:53.174451436Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3159","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.185294368Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3159","time":"2026-03-06T19:24:53.185449977Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7137,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093175233110_2?ts=1772260916000&user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":41.978307,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"..oh no. bvg streikt und wir würden aus pankow kommen. da es keine busverbindung für uns gibt zur schule, wir aber mit der sbahn kommen könnten, würden wir gerne höflich fragen, ob es nicht für jemanden möglich wäre uns vom sbhf einzusacken? südkreuz, attilastrasse, marienfelde...wäre für uns machbar hinzukommen. leibe grüße und hoffentlich bis nachher, Anton und Lio","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.217352149Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:73950780473356@lid:3EB0D0EF999BE994ED3777","sender_id":{"user_id":"lid-73950780473356","sender_login":"491792104071"},"message_ts":"2026-02-28T06:41:56Z","event_id":"$XoRly1kXVTgqoEEDRjhRScmrfMCkCYXBnR0awvAbfAo","part_id":"","time":"2026-03-06T19:24:53.217505593Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3160","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.234179231Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3160","time":"2026-03-06T19:24:53.234321221Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7138,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093218743406_29?ts=1772278569000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":44.852105,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Kann euch gerne von S Bahn Marienfelde abholen.","m.mentions":{"user_ids":["@whatsapp_lid-73950780473356:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$XoRly1kXVTgqoEEDRjhRScmrfMCkCYXBnR0awvAbfAo"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.263747627Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A239DE1F329D4DC5D61","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-28T11:36:09Z","event_id":"$WfFPEoEPWhpOqvLExrxEimeivLvd61YcsJSugLPASh8","part_id":"","time":"2026-03-06T19:24:53.263895343Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3161","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.279008707Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3161","time":"2026-03-06T19:24:53.279139312Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7139,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825093264737361_3?ts=1772281519722&user_id=%40whatsapp_lid-73950780473356%3Amatrix.theocloud.dev","duration":51.220875,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$WfFPEoEPWhpOqvLExrxEimeivLvd61YcsJSugLPASh8","key":"❤️"}},"time":"2026-03-06T19:24:53.316091844Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A239DE1F329D4DC5D61","target_part_id":"","reaction_sender_id":{"user_id":"lid-73950780473356","sender_login":"491792104071"},"reaction_ts":"2026-02-28T12:25:19.722Z","event_id":"$4hT1I2cM10RaRyBpilYFGiCbOVtNIYAj_oiabZV6kPg","time":"2026-03-06T19:24:53.316225382Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3162","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.328457197Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3162","time":"2026-03-06T19:24:53.328552182Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7140,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093316850610_2?ts=1772280682000&user_id=%40whatsapp_lid-276334119006314%3Amatrix.theocloud.dev","duration":38.915587,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Grüße aus Köpenick!!!","com.beeper.disappearing_timer":{},"filename":"video.mp4","info":{"duration":11000,"h":850,"mimetype":"video/mp4","size":2645717,"w":478},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/tsfKetrnVzRTDzdbzCWLtySy"},"time":"2026-03-06T19:24:53.356019514Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:276334119006314@lid:ACFEF62E94EF8FB8EA0D69B11B29EB4B","sender_id":{"user_id":"lid-276334119006314","sender_login":"491759232609"},"message_ts":"2026-02-28T12:11:22Z","event_id":"$LiMpLNvTqD11gutdsB5yF9Sbudrh4bPkPN6MHXght3E","part_id":"","time":"2026-03-06T19:24:53.356170234Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3163","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.367984811Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3163","time":"2026-03-06T19:24:53.368118279Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3164","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:53.395867076Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3164","time":"2026-03-06T19:24:53.395946696Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7141,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825093356970975_30?ts=1772285018009&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":59.912598,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$LiMpLNvTqD11gutdsB5yF9Sbudrh4bPkPN6MHXght3E","key":"💪🏽"}},"time":"2026-03-06T19:24:53.416995599Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:276334119006314@lid:ACFEF62E94EF8FB8EA0D69B11B29EB4B","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-02-28T13:23:38.009Z","event_id":"$RsfZcfJILwAUUW3O3N8b1H3c2Qz9amgoKRRNaQ9k1ow","time":"2026-03-06T19:24:53.41713277Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3165","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.4279544Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3165","time":"2026-03-06T19:24:53.42804296Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7142,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825093417721609_8?ts=1772289225134&user_id=%40whatsapp_lid-83674703904795%3Amatrix.theocloud.dev","duration":36.32493,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$LiMpLNvTqD11gutdsB5yF9Sbudrh4bPkPN6MHXght3E","key":"💪"}},"time":"2026-03-06T19:24:53.454163665Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:276334119006314@lid:ACFEF62E94EF8FB8EA0D69B11B29EB4B","target_part_id":"","reaction_sender_id":{"user_id":"lid-83674703904795","sender_login":"4915236735839"},"reaction_ts":"2026-02-28T14:33:45.134Z","event_id":"$tEEmEExWBQ_2XM8GNTX1BNv78335LoJjfrm8yuZxJa4","time":"2026-03-06T19:24:53.454300416Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3166","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.46358461Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3166","time":"2026-03-06T19:24:53.463660738Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7143,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825093454889535_4?ts=1772282093606&user_id=%40whatsapp_lid-256783310393511%3Amatrix.theocloud.dev","duration":41.668976,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$LiMpLNvTqD11gutdsB5yF9Sbudrh4bPkPN6MHXght3E","key":"👍️"}},"time":"2026-03-06T19:24:53.496689046Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:276334119006314@lid:ACFEF62E94EF8FB8EA0D69B11B29EB4B","target_part_id":"","reaction_sender_id":{"user_id":"lid-256783310393511","sender_login":"4917631673140"},"reaction_ts":"2026-02-28T12:34:53.606Z","event_id":"$eJE13bBCOuT7GT0rs3_DQ89CUNZ47pmVZFEU7OPZ46E","time":"2026-03-06T19:24:53.496834318Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3167","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.506009348Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3167","time":"2026-03-06T19:24:53.506102308Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7144,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093497451583_5?ts=1772288768000&user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":34.425991,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Darf ich den bei mir in Neukölln an einen Cali Park kleben","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":270400,"w":1152},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/ibysJmVfAJpukFvSDYzRzVVU"},"time":"2026-03-06T19:24:53.532116224Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:266502737506505@lid:3A935D2CD78CD5F6BB23","sender_id":{"user_id":"lid-266502737506505","sender_login":"491624232636"},"message_ts":"2026-02-28T14:26:08Z","event_id":"$fEAJ8-ddcWSC0rjwj_Hvbft_HgolwYB7F4WEtd31xFU","part_id":"","time":"2026-03-06T19:24:53.532248925Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3168","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.541924305Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3168","time":"2026-03-06T19:24:53.542050649Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7145,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825093533016071_8?ts=1772288802531&user_id=%40whatsapp_lid-87162133413943%3Amatrix.theocloud.dev","duration":45.147607,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$fEAJ8-ddcWSC0rjwj_Hvbft_HgolwYB7F4WEtd31xFU","key":"👍️"}},"time":"2026-03-06T19:24:53.578288137Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:266502737506505@lid:3A935D2CD78CD5F6BB23","target_part_id":"","reaction_sender_id":{"user_id":"lid-87162133413943","sender_login":"491772982858"},"reaction_ts":"2026-02-28T14:26:42.531Z","event_id":"$CM1X2VtY-IJecQ68WdBA_MybVHNnYGn6QL_7B_P_5Uk","time":"2026-03-06T19:24:53.578516661Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3169","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.591673395Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3169","time":"2026-03-06T19:24:53.591759231Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7146,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093579740506_31?ts=1772289571000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":36.806911,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Liebend gern 🙏🏽🫶🏽","m.mentions":{"user_ids":["@whatsapp_lid-266502737506505:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$fEAJ8-ddcWSC0rjwj_Hvbft_HgolwYB7F4WEtd31xFU"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.616681793Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A728B4BE5762B40E36A","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-28T14:39:31Z","event_id":"$-jDkuGQzUrlSkevY9bNILK1HUf8uFJDris069aBL4Vc","part_id":"","time":"2026-03-06T19:24:53.6168293Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3170","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.627011734Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3170","time":"2026-03-06T19:24:53.627117476Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7147,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825093617547627_6?ts=1772289610320&user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":40.412236,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$-jDkuGQzUrlSkevY9bNILK1HUf8uFJDris069aBL4Vc","key":"❤️"}},"time":"2026-03-06T19:24:53.658070073Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:44419206123644@lid:3A728B4BE5762B40E36A","target_part_id":"","reaction_sender_id":{"user_id":"lid-266502737506505","sender_login":"491624232636"},"reaction_ts":"2026-02-28T14:40:10.32Z","event_id":"$XIsSScmz8Z33sG1tyEvN_-PPdCU0a6EaYzMmxSXJdPg","time":"2026-03-06T19:24:53.658227428Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3171","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.670476493Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3171","time":"2026-03-06T19:24:53.670567568Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7148,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093658863202_7?ts=1772291103000&user_id=%40whatsapp_lid-266502737506505%3Amatrix.theocloud.dev","duration":39.713325,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","com.beeper.disappearing_timer":{},"filename":"image.jpg","info":{"h":2048,"mimetype":"image/jpeg","size":324666,"w":1152},"m.mentions":{},"msgtype":"m.image","url":"mxc://matrix.theocloud.dev/WCiHnopKdElVZiVauNsSmKsB"},"time":"2026-03-06T19:24:53.698785005Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:266502737506505@lid:3ACF2B2725F64170870D","sender_id":{"user_id":"lid-266502737506505","sender_login":"491624232636"},"message_ts":"2026-02-28T15:05:03Z","event_id":"$p5HpevUiUNjmnIQ0sOXg4S6u4FtUHwEe45AV1YyR0qo","part_id":"","time":"2026-03-06T19:24:53.698905692Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3172","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.706914917Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3172","time":"2026-03-06T19:24:53.707016398Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7149,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825093699761748_32?ts=1772309933326&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":34.446524,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$p5HpevUiUNjmnIQ0sOXg4S6u4FtUHwEe45AV1YyR0qo","key":"❤️"}},"time":"2026-03-06T19:24:53.734324909Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:266502737506505@lid:3ACF2B2725F64170870D","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-02-28T20:18:53.326Z","event_id":"$yzP07pZ9r7lwe1en7jizJaTLuL5AyTnZBcEqAaH5rnw","time":"2026-03-06T19:24:53.734484219Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3173","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.737526825Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3173","time":"2026-03-06T19:24:53.737600857Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7150,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093735617339_33?ts=1772309938000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":29.843294,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"😍🫶🏽","m.mentions":{"user_ids":["@whatsapp_lid-266502737506505:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$p5HpevUiUNjmnIQ0sOXg4S6u4FtUHwEe45AV1YyR0qo"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.765593892Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:44419206123644@lid:3A70C6F842EB1D505E54","sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"message_ts":"2026-02-28T20:18:58Z","event_id":"$3xSwgeJxdRtPNIs_BUj1RVmInwoib0YP0hcFeAojkXI","part_id":"","time":"2026-03-06T19:24:53.765744402Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3174","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.769770037Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3174","time":"2026-03-06T19:24:53.769885975Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7151,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093766516508_37?ts=1772379453000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":35.695652,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hey Leute!\nWir basteln gerade an neuen Ideen rund um Powerbanks \u0026 Energiespeicher, und brauchen eure unendliche Reddit‑Weisheit.\nUnsere Umfrage dauert weniger als 60 Sekunden – also ungefähr so lange, wie euer Smartphone ohne Powerbank durchhält. 😅🔋\n👉 Hilf uns kurz aus und gib uns ein bisschen „Energie“!\nDanke, ihr seid elektrisch großartig ⚡❤️\nIst natürlich völlig anonym 🙏🏼\n\nAnbei einmal der Link zur Umfrage: \n\nhttps://survey.lamapoll.de/Nie-wieder-unter-20-","format":"org.matrix.custom.html","formatted_body":"Hey Leute!\u003cbr\u003eWir basteln gerade an neuen Ideen rund um Powerbanks \u0026amp; Energiespeicher, und brauchen eure unendliche Reddit‑Weisheit.\u003cbr\u003eUnsere Umfrage dauert weniger als 60 Sekunden – also ungefähr so lange, wie euer Smartphone ohne Powerbank durchhält. 😅🔋\u003cbr\u003e👉 Hilf uns kurz aus und gib uns ein bisschen „Energie“!\u003cbr\u003eDanke, ihr seid elektrisch großartig ⚡❤️\u003cbr\u003eIst natürlich völlig anonym 🙏🏼\u003cbr\u003e\u003cbr\u003eAnbei einmal der Link zur Umfrage: \u003cbr\u003e\u003cbr\u003ehttps://survey.lamapoll.de/Nie-wieder-unter-20-","m.mentions":{},"com.beeper.linkpreviews":[{"og:title":"Nie-wieder-unter-20- (LamaPoll - Online Umfragen)","og:image":"mxc://matrix.theocloud.dev/mgfIMhRcZiAMbPHmbSaNeDkR","matrix:image:size":52289,"og:image:width":300,"og:image:height":300,"og:image:type":"image/jpeg","matched_url":"https://survey.lamapoll.de/Nie-wieder-unter-20-"}],"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.802419172Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3EB0D4E0D5F8ECAD3D33B7","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-03-01T15:37:33Z","event_id":"$E_NA5tC3Yis5PMiaUByYCvBLzx0iAyJF0UPiiKDPZ5w","part_id":"","time":"2026-03-06T19:24:53.802591403Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3175","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.812669004Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3175","time":"2026-03-06T19:24:53.812794371Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7152,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093803300790_38?ts=1772379463000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":41.675821,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"bischen unterstützung von der Fam!!","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.845126701Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:21079833710744@lid:3EB0FE5650FC29F5C670E5","sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"message_ts":"2026-03-01T15:37:43Z","event_id":"$sec72B1_jNDpMxl-svyYL1lEABUfO-qUHcGpBJTdYw0","part_id":"","time":"2026-03-06T19:24:53.845252278Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3176","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.854934991Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3176","time":"2026-03-06T19:24:53.855020688Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7153,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093846143255_3?ts=1772379563000&user_id=%40whatsapp_lid-226147862347841%3Amatrix.theocloud.dev","duration":39.428997,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Man kann den link nicht anklicken","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.885698107Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:226147862347841@lid:3ABF9AF6BE7C79C3BAEE","sender_id":{"user_id":"lid-226147862347841","sender_login":"4915757977499"},"message_ts":"2026-03-01T15:39:23Z","event_id":"$KikGNmS75eiKmh58U-PomLrCGETegrFIpyNi-Zhw7eU","part_id":"","time":"2026-03-06T19:24:53.885870478Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3177","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.899257762Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3177","time":"2026-03-06T19:24:53.8993737Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3178","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:53.922380909Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3178","time":"2026-03-06T19:24:53.92245138Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7154,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093886694965_4?ts=1772379568000&user_id=%40whatsapp_lid-226147862347841%3Amatrix.theocloud.dev","duration":57.909383,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ah doch jetzt","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:53.944743754Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:226147862347841@lid:3ABAD75C2067244CAC20","sender_id":{"user_id":"lid-226147862347841","sender_login":"4915757977499"},"message_ts":"2026-03-01T15:39:28Z","event_id":"$afzhBw4RjTi0IbJmuGxO-K1ZhWhC45Z3wb1ky3S6blo","part_id":"","time":"2026-03-06T19:24:53.944884835Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3179","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.954672103Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3179","time":"2026-03-06T19:24:53.954774701Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7155,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825093945616502_39?ts=1772379721000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":39.795948,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$afzhBw4RjTi0IbJmuGxO-K1ZhWhC45Z3wb1ky3S6blo","key":"🙏"}},"time":"2026-03-06T19:24:53.98550988Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:226147862347841@lid:3ABAD75C2067244CAC20","target_part_id":"","reaction_sender_id":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"reaction_ts":"2026-03-01T15:42:01Z","event_id":"$G5V88E7beJgTwin97z88z3p-2HtWK63K7mE0ChVN0Ak","time":"2026-03-06T19:24:53.985639367Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3180","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:53.99648656Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3180","time":"2026-03-06T19:24:53.996567996Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7156,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825093986118136_17?ts=1772530773000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":40.594314,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Heute Training im Cheruskerpark ab 18 Uhr.\n\n1. Bin dabei💪\n\n2. Heute keine Zeit\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Bin dabei💪","Heute keine Zeit"],"selectable_options_count":1},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eHeute Training im Cheruskerpark ab 18 Uhr.\u003c/p\u003e\u003col\u003e\u003cli\u003eBin dabei💪\u003c/li\u003e\u003cli\u003eHeute keine Zeit\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eHeute Training im Cheruskerpark ab 18 Uhr.\u003c/p\u003e\u003col\u003e\u003cli\u003eBin dabei💪\u003c/li\u003e\u003cli\u003eHeute keine Zeit\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Heute Training im Cheruskerpark ab 18 Uhr.\n\n1. Bin dabei💪\n\n2. Heute keine Zeit\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"02bbb7f75ac5f25827d32f49aced37b991bd3c8abdd7ba47ec173ae7995fdef2","org.matrix.msc1767.text":"Bin dabei💪"},{"id":"67a9ee6ba74bbb825d5089a571a2e33faa63657ad7d9456a94f6850f8b2f2659","org.matrix.msc1767.text":"Heute keine Zeit"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":1,"question":{"org.matrix.msc1767.text":"Heute Training im Cheruskerpark ab 18 Uhr."}}},"time":"2026-03-06T19:24:54.027018289Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:236846508454136@lid:3AFCBAF556AA88898C94","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-03-03T09:39:33Z","event_id":"$iQcf5TR6wTfZlqnSurKfrH8UdbYBVRrV4TqTjGxQi_Y","part_id":"","time":"2026-03-06T19:24:54.027191917Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3181","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.039770637Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3181","time":"2026-03-06T19:24:54.039877566Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7157,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825094027956898_34?ts=1772546883438&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":46.560515,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$iQcf5TR6wTfZlqnSurKfrH8UdbYBVRrV4TqTjGxQi_Y","key":"☀️"}},"time":"2026-03-06T19:24:54.074610582Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:236846508454136@lid:3AFCBAF556AA88898C94","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-03-03T14:08:03.438Z","event_id":"$nz96BpHwlF87vdD7h2nFVpca77i9vo3Sm0Nw1m3Fe7A","time":"2026-03-06T19:24:54.074725124Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3182","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.085814389Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3182","time":"2026-03-06T19:24:54.085887514Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7158,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094075269194_1?ts=1772561126000&user_id=%40whatsapp_lid-165566878843022%3Amatrix.theocloud.dev","duration":33.903222,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Danke fürs Training, Milanko! 🙏🏼🫶🏻","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.109316919Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:165566878843022@lid:3AF58256CC407975ABD0","sender_id":{"user_id":"lid-165566878843022","sender_login":"4915157953288"},"message_ts":"2026-03-03T18:05:26Z","event_id":"$BsFlVGmvfUGJrOVK6_24Cla0EqL9UvfwZON4011IagE","part_id":"","time":"2026-03-06T19:24:54.10943628Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3183","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.124483224Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3183","time":"2026-03-06T19:24:54.124576952Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3184","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:54.148523609Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3184","time":"2026-03-06T19:24:54.148622156Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7159,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825094109987405_18?ts=1772565256488&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":66.352748,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$BsFlVGmvfUGJrOVK6_24Cla0EqL9UvfwZON4011IagE","key":"🫶"}},"time":"2026-03-06T19:24:54.176459862Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:165566878843022@lid:3AF58256CC407975ABD0","target_part_id":"","reaction_sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"reaction_ts":"2026-03-03T19:14:16.488Z","event_id":"$nfc5v4isYfzUEdB2_mjEvCi7H8xU-D1BlvPgJJbM8LQ","time":"2026-03-06T19:24:54.176598708Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3185","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.189635523Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3185","time":"2026-03-06T19:24:54.189730439Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7160,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825094177152207_2?ts=1772563450909&user_id=%40whatsapp_lid-223690570625160%3Amatrix.theocloud.dev","duration":44.391565,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$BsFlVGmvfUGJrOVK6_24Cla0EqL9UvfwZON4011IagE","key":"🙏"}},"time":"2026-03-06T19:24:54.221669628Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:165566878843022@lid:3AF58256CC407975ABD0","target_part_id":"","reaction_sender_id":{"user_id":"lid-223690570625160","sender_login":"491727724601"},"reaction_ts":"2026-03-03T18:44:10.909Z","event_id":"$ZLIAtpUjbAjh-BQ_pFhFQFQ_xUihTAw9bFpHgJgnICE","time":"2026-03-06T19:24:54.221817903Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3186","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.233763364Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3186","time":"2026-03-06T19:24:54.233856394Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7161,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825094222478890_35?ts=1772615229617&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":43.951419,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$BsFlVGmvfUGJrOVK6_24Cla0EqL9UvfwZON4011IagE","key":"💪🏽"}},"time":"2026-03-06T19:24:54.266581378Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:165566878843022@lid:3AF58256CC407975ABD0","target_part_id":"","reaction_sender_id":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"reaction_ts":"2026-03-04T09:07:09.617Z","event_id":"$7w5drrkP15SkhOITgBcM0cuZKkKelWQPFTC7elxdVM0","time":"2026-03-06T19:24:54.26674872Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3187","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.28025683Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3187","time":"2026-03-06T19:24:54.280380521Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7162,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825094267313533_1?ts=1772563856965&user_id=%40whatsapp_lid-101816561881152%3Amatrix.theocloud.dev","duration":43.778979,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$BsFlVGmvfUGJrOVK6_24Cla0EqL9UvfwZON4011IagE","key":"❤️"}},"time":"2026-03-06T19:24:54.311258737Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:165566878843022@lid:3AF58256CC407975ABD0","target_part_id":"","reaction_sender_id":{"user_id":"lid-101816561881152","sender_login":"4915782942616"},"reaction_ts":"2026-03-03T18:50:56.965Z","event_id":"$VuvbFWrpArF-V16UR3zpeuIn6pVt8UigHlYNnx0cxBQ","time":"2026-03-06T19:24:54.311428942Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3188","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.31852051Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3188","time":"2026-03-06T19:24:54.318652791Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7163,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094312033846_10?ts=1772708365000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":33.301181,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Heute Training day \"17\" Uhr in der Naunynritze - Boxen + Calisthenics\n\n1. Yes 🙌\n\n2. Nope 👎🏼\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Yes 🙌","Nope 👎🏼"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eHeute Training day \u0026#34;17\u0026#34; Uhr in der Naunynritze - Boxen + Calisthenics\u003c/p\u003e\u003col\u003e\u003cli\u003eYes 🙌\u003c/li\u003e\u003cli\u003eNope 👎🏼\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eHeute Training day \u0026#34;17\u0026#34; Uhr in der Naunynritze - Boxen + Calisthenics\u003c/p\u003e\u003col\u003e\u003cli\u003eYes 🙌\u003c/li\u003e\u003cli\u003eNope 👎🏼\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Heute Training day \"17\" Uhr in der Naunynritze - Boxen + Calisthenics\n\n1. Yes 🙌\n\n2. Nope 👎🏼\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"36c18028550aeb6dda59c9cfeaf141b5170af542d57fffc1fb908ddb02d491f1","org.matrix.msc1767.text":"Yes 🙌"},{"id":"d77affc3db53700005af98b168eb37f25740be9266c58f9f8006e70981fa2f2c","org.matrix.msc1767.text":"Nope 👎🏼"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":2,"question":{"org.matrix.msc1767.text":"Heute Training day \"17\" Uhr in der Naunynritze - Boxen + Calisthenics"}}},"time":"2026-03-06T19:24:54.345668943Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3ADF1A3298291EA44DBF","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-03-05T10:59:25Z","event_id":"$21l1bp8A0mZvfP4WFy9KIlWDZIV4kbUbvnQM664ks9I","part_id":"","time":"2026-03-06T19:24:54.34588252Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3189","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.359720286Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3189","time":"2026-03-06T19:24:54.35986451Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7164,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094346778596_2?ts=1772724883000&user_id=%40whatsapp_lid-165566878843022%3Amatrix.theocloud.dev","duration":50.329409,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ich dachte 18h 🙈 ich fahre jetzt los","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.397263334Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:165566878843022@lid:3A15B41BD2B4D1EECBC4","sender_id":{"user_id":"lid-165566878843022","sender_login":"4915157953288"},"message_ts":"2026-03-05T15:34:43Z","event_id":"$xpj7d-sN8Shp9HHS4Uj5quUndcFPTQFwJnD7yn02zAI","part_id":"","time":"2026-03-06T19:24:54.397496118Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3190","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.409227234Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3190","time":"2026-03-06T19:24:54.409344289Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7165,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094398546475_11?ts=1772725164000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":40.918242,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja wir schauen heute von der Zeit ob das 17 Uhr mehr Sinn macht in Zukunft","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.43963164Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3A67A434A35B71A7E5BC","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-03-05T15:39:24Z","event_id":"$hs9FCMrgqemfcPjx4hSOdMPZfhY2HYnWQSqECoMHGOE","part_id":"","time":"2026-03-06T19:24:54.439808202Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3191","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.447596795Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3191","time":"2026-03-06T19:24:54.447701977Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7166,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094440747370_12?ts=1772726492000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":42.930117,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Wir treffen uns im Hof unten","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.483818288Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3A4791A9CC38F7AE8225","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-03-05T16:01:32Z","event_id":"$u-uP4U2NMrMft8OW5aNS3_H_tSzBxyXAHIRGYKzuWxE","part_id":"","time":"2026-03-06T19:24:54.48397669Z","message":"Sent message part to Matrix"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":6695,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4417_1059_10_433_486_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30011.001088,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:24:54.487930108Z","message":"Request completed"} +{"level":"debug","transaction_id":"3192","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.497170651Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3192","time":"2026-03-06T19:24:54.49728163Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7167,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094484722535_3?ts=1772726950000&user_id=%40whatsapp_lid-165566878843022%3Amatrix.theocloud.dev","duration":38.658707,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Erste","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.523494806Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:165566878843022@lid:3AF133A2BA84712ACBFA","sender_id":{"user_id":"lid-165566878843022","sender_login":"4915157953288"},"message_ts":"2026-03-05T16:09:10Z","event_id":"$MluSF4Oc30ZEXgvcO5iavvkFqJRm20D1Q4FN3dH4Nbc","part_id":"","time":"2026-03-06T19:24:54.523585811Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3193","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.533297788Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3193","time":"2026-03-06T19:24:54.533423015Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7169,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094524184219_13?ts=1772727072000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":40.588936,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"sind oben","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.564899988Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3A84626A0A4773EFC2D4","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-03-05T16:11:12Z","event_id":"$gWUvYPbF4ibph-0PEVqV1WcptM_CWhrbbzUI5LOYIx4","part_id":"","time":"2026-03-06T19:24:54.565070752Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3194","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.568318904Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3194","time":"2026-03-06T19:24:54.568450556Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7170,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094566038975_14?ts=1772727082000&user_id=%40whatsapp_lid-239363409617131%3Amatrix.theocloud.dev","duration":27.057219,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Moment komme zu dir","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.593255713Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:239363409617131@lid:3AED2173C1634C2F8A52","sender_id":{"user_id":"lid-239363409617131","sender_login":"4917641523941"},"message_ts":"2026-03-05T16:11:22Z","event_id":"$9okE8vHNTC5gNj6JY59rglszJTtN6t3p-yYNw4VHAYU","part_id":"","time":"2026-03-06T19:24:54.593472853Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3195","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.596916772Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3195","time":"2026-03-06T19:24:54.597034107Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7171,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094594398821_19?ts=1772785411000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":26.1052,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Trainingday 17:30 bis Open End, Cheruskerpark\n\n1. Bin dabei💪\n\n2. Heute keine Zeit\n\n\n(This message is a poll. Please open WhatsApp to vote.)","com.beeper.disappearing_timer":{},"fi.mau.whatsapp.poll":{"option_names":["Bin dabei💪","Heute keine Zeit"],"selectable_options_count":0},"format":"org.matrix.custom.html","formatted_body":"\u003cp\u003eTrainingday 17:30 bis Open End, Cheruskerpark\u003c/p\u003e\u003col\u003e\u003cli\u003eBin dabei💪\u003c/li\u003e\u003cli\u003eHeute keine Zeit\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","m.mentions":{},"msgtype":"m.text","org.matrix.msc1767.message":[{"body":"\u003cp\u003eTrainingday 17:30 bis Open End, Cheruskerpark\u003c/p\u003e\u003col\u003e\u003cli\u003eBin dabei💪\u003c/li\u003e\u003cli\u003eHeute keine Zeit\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e(This message is a poll. Please open WhatsApp to vote.)\u003c/p\u003e","mimetype":"text/html"},{"body":"Trainingday 17:30 bis Open End, Cheruskerpark\n\n1. Bin dabei💪\n\n2. Heute keine Zeit\n\n\n(This message is a poll. Please open WhatsApp to vote.)","mimetype":"text/plain"}],"org.matrix.msc3381.poll.start":{"answers":[{"id":"02bbb7f75ac5f25827d32f49aced37b991bd3c8abdd7ba47ec173ae7995fdef2","org.matrix.msc1767.text":"Bin dabei💪"},{"id":"67a9ee6ba74bbb825d5089a571a2e33faa63657ad7d9456a94f6850f8b2f2659","org.matrix.msc1767.text":"Heute keine Zeit"}],"kind":"org.matrix.msc3381.poll.disclosed","max_selections":2,"question":{"org.matrix.msc1767.text":"Trainingday 17:30 bis Open End, Cheruskerpark"}}},"time":"2026-03-06T19:24:54.620804552Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:236846508454136@lid:3A14C65D586DA8B03811","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-03-06T08:23:31Z","event_id":"$fTniXG7FN5Dub8sL3JVJboBeecQAo3fbGcbjya7XL1U","part_id":"","time":"2026-03-06T19:24:54.621000948Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3196","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.628574636Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3196","time":"2026-03-06T19:24:54.628682124Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7172,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094622427126_18?ts=1772787359000&user_id=%40whatsapp_lid-213099231596676%3Amatrix.theocloud.dev","duration":32.109673,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Erst ab 18:00 Uhr bei uns. Ist es jetzt immer 17:30?","m.mentions":{"user_ids":["@whatsapp_lid-236846508454136:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$fTniXG7FN5Dub8sL3JVJboBeecQAo3fbGcbjya7XL1U"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.654696529Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:213099231596676@lid:ACB1737EF86227F3C34164D44E95D44F","sender_id":{"user_id":"lid-213099231596676","sender_login":"491608358183"},"message_ts":"2026-03-06T08:55:59Z","event_id":"$BvGQEJZyQLfstF_-OXhF7mIbFf8E2dbLNxPNwwlTwig","part_id":"","time":"2026-03-06T19:24:54.654862753Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3197","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.660933088Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3197","time":"2026-03-06T19:24:54.661024372Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7173,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094655838309_1?ts=1772790173000&user_id=%40whatsapp_lid-256693099352121%3Amatrix.theocloud.dev","duration":36.533479,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Hallo, hier Jule, ich bin neu in der Gruppe und habe etwas Calisthenic-Erfahrung vom Zuhause trainieren. Ist das Training heute Abend Beginner-friendly? Würde sehr gerne ein paar Übungen lernen, die ich mir „mitnehmen“ kann.","m.mentions":{},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.692509447Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:256693099352121@lid:3BA726153B15D595DD43","sender_id":{"user_id":"lid-256693099352121","sender_login":"491624867340"},"message_ts":"2026-03-06T09:42:53Z","event_id":"$VmBgHpqw1v0QFA9fK-nIj5rLTzObR8ZGHU2zf4rOdA8","part_id":"","time":"2026-03-06T19:24:54.692626363Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3198","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.703062464Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3198","time":"2026-03-06T19:24:54.703160173Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3199","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:54.719996335Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3199","time":"2026-03-06T19:24:54.720098724Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7174,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094693856703_20?ts=1772790682000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":45.686788,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Generell ja ab 17:30 Uhr. Ihr steigt dann einfach mit ein.","m.mentions":{"user_ids":["@whatsapp_lid-213099231596676:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$BvGQEJZyQLfstF_-OXhF7mIbFf8E2dbLNxPNwwlTwig"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.739670046Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:236846508454136@lid:3AF29657D929F85F4673","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-03-06T09:51:22Z","event_id":"$pTGsaRCfYm1Y7MK5hW4bJktRT73S8OlTqN_wQcQWSJw","part_id":"","time":"2026-03-06T19:24:54.739781584Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3200","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.744184576Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3200","time":"2026-03-06T19:24:54.744269015Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7175,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094740991181_21?ts=1772790726000&user_id=%40whatsapp_lid-236846508454136%3Amatrix.theocloud.dev","duration":33.316826,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"Ja das Training ist für alle Leistungsniveaus.","m.mentions":{"user_ids":["@whatsapp_lid-256693099352121:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$VmBgHpqw1v0QFA9fK-nIj5rLTzObR8ZGHU2zf4rOdA8"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.774444968Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:236846508454136@lid:3A5CCA717858641B3F7C","sender_id":{"user_id":"lid-236846508454136","sender_login":"4915141630205"},"message_ts":"2026-03-06T09:52:06Z","event_id":"$XxZAUUX1-Tif1HSpJnbRB-URSgFBC29LNB8Cpwt5eaQ","part_id":"","time":"2026-03-06T19:24:54.774529826Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3201","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.783067616Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3201","time":"2026-03-06T19:24:54.783158202Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7176,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825094775064049_2?ts=1772793981533&user_id=%40whatsapp_lid-256693099352121%3Amatrix.theocloud.dev","duration":36.422918,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$XxZAUUX1-Tif1HSpJnbRB-URSgFBC29LNB8Cpwt5eaQ","key":"👍️"}},"time":"2026-03-06T19:24:54.811577623Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:236846508454136@lid:3A5CCA717858641B3F7C","target_part_id":"","reaction_sender_id":{"user_id":"lid-256693099352121","sender_login":"491624867340"},"reaction_ts":"2026-03-06T10:46:21.533Z","event_id":"$jeLrDHE1khlulK0EGrSMpRLpgYhbRMLXqxzz-f34FHU","time":"2026-03-06T19:24:54.811695307Z","message":"Sent reaction to Matrix"} +{"level":"debug","transaction_id":"3202","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.816509879Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3202","time":"2026-03-06T19:24:54.816651729Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7177,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825094817936197_5?ts=1772811891000&user_id=%40whatsapp_lid-80522080477241%3Amatrix.theocloud.dev","duration":23.77282,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"msgtype":"m.text","body":"ich bin eher gegen 18:15 da","m.mentions":{"user_ids":["@whatsapp_lid-236846508454136:matrix.theocloud.dev"]},"m.relates_to":{"m.in_reply_to":{"event_id":"$fTniXG7FN5Dub8sL3JVJboBeecQAo3fbGcbjya7XL1U"}},"com.beeper.disappearing_timer":{}},"time":"2026-03-06T19:24:54.841841018Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","message_id":"120363163455706585@g.us:80522080477241@lid:3A175973998F4A928EC3","sender_id":{"user_id":"lid-80522080477241","sender_login":"4917673282928"},"message_ts":"2026-03-06T15:44:51Z","event_id":"$ZHES-B-v4epbC53e8EdKjWf407A7-4Pdb1GeQlUc8xc","part_id":"","time":"2026-03-06T19:24:54.841971134Z","message":"Sent message part to Matrix"} +{"level":"debug","transaction_id":"3203","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.852070666Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3203","time":"2026-03-06T19:24:54.852158667Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3204","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:54.863113906Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3204","time":"2026-03-06T19:24:54.863181443Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","req_id":7178,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.reaction/mautrix-go_1772825094843481402_3?ts=1772812363158&user_id=%40whatsapp_lid-224927957410033%3Amatrix.theocloud.dev","duration":43.17212,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"m.relates_to":{"rel_type":"m.annotation","event_id":"$ZHES-B-v4epbC53e8EdKjWf407A7-4Pdb1GeQlUc8xc","key":"🔥"}},"time":"2026-03-06T19:24:54.886762685Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","target_message_id":"120363163455706585@g.us:80522080477241@lid:3A175973998F4A928EC3","target_part_id":"","reaction_sender_id":{"user_id":"lid-224927957410033","sender_login":"4915226672180"},"reaction_ts":"2026-03-06T15:52:43.158Z","event_id":"$yEbSJTQ56j0cFbvHVF5NJ3hC1ewJv9l6u2dUK-jSN40","time":"2026-03-06T19:24:54.886883792Z","message":"Sent reaction to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","time":"2026-03-06T19:24:54.888474797Z","message":"Backfill finished"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","time":"2026-03-06T19:24:54.888565173Z","message":"Not handling chat resync event further as portal was created by it"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:54.889382536Z","message":"6123d7c713c3e521a75a31273a9d5c9aceab464212456abbb53e806555d71c8bae06d563d2fee666c08edef41472081c6a0f"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","time":"2026-03-06T19:24:54.889595345Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:54.890316955Z","message":"1c65622193efea81fd6924dbd63795839f292d74703c8b6377a1d7604e595a159118c4a799c331ad485e360af9b4ce36aecc"} +{"level":"debug","transaction_id":"3205","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:54.8905005Z","message":"Starting handling of transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","time":"2026-03-06T19:24:54.890502945Z","message":"Sent media retry request"} +{"level":"debug","transaction_id":"3205","time":"2026-03-06T19:24:54.890581168Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","started_at":"2026-03-06T19:22:00.030663244Z","duration":"2m54.860158391s","time":"2026-03-06T19:24:54.890836441Z","message":"Event that took long finished handling"} +{"level":"info","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","action":"create portals from history sync","time":"2026-03-06T19:24:54.891212891Z","message":"Finished processing all history sync chat resync events"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:54.893130269Z","message":"c690d913f28ca7f457a3e2c66f8e832757655224d6f2fb4ccdab515b0a5dd12837a04bbf84d5e74a4ef38391305d01093193"} +{"level":"debug","portal_id":"120363163455706585@g.us","event_loop_index":0,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventChatResync","chat_jid":"120363163455706585@g.us","latest_message_ts":"2026-03-06T15:44:51Z","action":"create matrix room","action":"forward backfill","action":"send media request","message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","time":"2026-03-06T19:24:54.893320379Z","message":"Sent media retry request"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:54.934439278Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:54.936666616Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:54.938174369Z","message":""} +{"level":"debug","transaction_id":"3206","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:55.655666889Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3206","time":"2026-03-06T19:24:55.656035027Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363422109419332@g.us","portal_mxid":"!tBlZXyMrGKIRODvGsg:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$3W-bSn7MqxrApg97nYwfh6xaAA66iDtdvVH9NRdd-_E","event_type":"m.room.member","event_id":"$3W-bSn7MqxrApg97nYwfh6xaAA66iDtdvVH9NRdd-_E","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:24:55.656506113Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"3207","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:24:55.796034702Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3207","time":"2026-03-06T19:24:55.79611097Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:56.461018247Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:56.504257625Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:57.123834518Z","message":"4e0190f19deeb69da67df950"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:57.124605855Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A0BE7B55D1CDF3B1AA4","sender_id":"44419206123644@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"remote_target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","time":"2026-03-06T19:24:57.124727869Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A0BE7B55D1CDF3B1AA4","sender_id":"44419206123644@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"remote_target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","req_id":7179,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":21.927448,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2390521 bytes>","time":"2026-03-06T19:24:57.226899051Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A0BE7B55D1CDF3B1AA4","sender_id":"44419206123644@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"remote_target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","req_id":7180,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825097227301691_36?ts=1772825097000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":46.043053,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"😅💪🏽","filename":"video.mp4","info":{"duration":12000,"h":832,"mimetype":"video/mp4","size":2390521,"w":464},"m.mentions":{},"m.new_content":{"body":"😅💪🏽","filename":"video.mp4","info":{"duration":12000,"h":832,"mimetype":"video/mp4","size":2390521,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/KxlEmKXPTqpwwOujJvGpGlre"},"m.relates_to":{"event_id":"$A2orisfC8odry7u2GnQrgOTNa-kQ417GMf85Iez1fqg","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/KxlEmKXPTqpwwOujJvGpGlre"},"time":"2026-03-06T19:24:57.273659663Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":1,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A0BE7B55D1CDF3B1AA4","sender_id":"44419206123644@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"remote_target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","event_id":"$DMHhI8PBLQedhp7rGclRdIUEhMuSfSGFdZlaTWQ-jGg","part_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","time":"2026-03-06T19:24:57.27383811Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"3208","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:57.280963971Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3208","time":"2026-03-06T19:24:57.281119439Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:58.353120368Z","message":"44f75ef372d2b4de7d4bc376"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:58.353975446Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A90C4AA038FED222D83","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","time":"2026-03-06T19:24:58.354100463Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A90C4AA038FED222D83","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","req_id":7181,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":14.080677,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1356811 bytes>","time":"2026-03-06T19:24:58.414866672Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A90C4AA038FED222D83","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","req_id":7182,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825098415359339_7?ts=1772825098000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":36.642293,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1356811,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1356811,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/ZdVUkePxnZcSZmCBBNhacXMG"},"m.relates_to":{"event_id":"$-SiDi6reIysRbH59GBLeqvlbnzSKqInkmIfGAKpY4jY","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/ZdVUkePxnZcSZmCBBNhacXMG"},"time":"2026-03-06T19:24:58.452351821Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":2,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A90C4AA038FED222D83","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","event_id":"$9IFUlp6SoFbAGhxhzn2LwrZ49EFEYCH0D3mKS4QpaqE","part_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","time":"2026-03-06T19:24:58.452558624Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"3209","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:58.460071131Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3209","time":"2026-03-06T19:24:58.460238612Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:24:59.169796149Z","message":"9ca352e9d0ac4a3c5f454312"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:24:59.170692364Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA37A57C47ECB2920B4","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","time":"2026-03-06T19:24:59.17080488Z","message":"Handling remote event"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA37A57C47ECB2920B4","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","req_id":7183,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":17.246135,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1517653 bytes>","time":"2026-03-06T19:24:59.242313379Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA37A57C47ECB2920B4","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","req_id":7184,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825099242806604_8?ts=1772825099000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":39.539418,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":848,"mimetype":"video/mp4","size":1517653,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":848,"mimetype":"video/mp4","size":1517653,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/ypkYiooQmyxiNzmkdZLFgRCk"},"m.relates_to":{"event_id":"$pkop882vFFfa8_q4Z2T-T8eW2tIc7ssmQChsK85ejtA","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/ypkYiooQmyxiNzmkdZLFgRCk"},"time":"2026-03-06T19:24:59.282647461Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":3,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA37A57C47ECB2920B4","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","event_id":"$GtsjrGucrt8rjbrEsUhtfN9Lsmy_9hQ0p2yyd0mR72Q","part_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","time":"2026-03-06T19:24:59.282848048Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"3210","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:24:59.290142018Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3210","time":"2026-03-06T19:24:59.290296719Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3211","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:25:04.71290099Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3211","time":"2026-03-06T19:25:04.713287637Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","portal_mxid":"!KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$-YEx9Jz9HexVHIxvNzqx3G2wMatTOPYSD6MuBcPUpl4","event_type":"m.room.member","event_id":"$-YEx9Jz9HexVHIxvNzqx3G2wMatTOPYSD6MuBcPUpl4","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:25:04.713807751Z","message":"Sending implicit read receipt for event"} +{"level":"debug","portal_id":"4917658289477@s.whatsapp.net","portal_mxid":"!KZHfeuOSOKlIRQgEzO:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$-YEx9Jz9HexVHIxvNzqx3G2wMatTOPYSD6MuBcPUpl4","event_type":"m.room.member","event_id":"$-YEx9Jz9HexVHIxvNzqx3G2wMatTOPYSD6MuBcPUpl4","sender":"@theo:matrix.theocloud.dev","login_id":"4917641870516","membership":"leave","prev_membership":"join","target_user_id":"@theo:matrix.theocloud.dev","time":"2026-03-06T19:25:04.714894287Z","message":"Dropping leave event"} +{"level":"debug","transaction_id":"3212","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:25:08.429867015Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3212","time":"2026-03-06T19:25:08.430167965Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"491731828379@s.whatsapp.net","portal_mxid":"!ALaXkUIAPSQApoLseI:matrix.theocloud.dev","event_loop_index":9,"action":"handle matrix event","event_id":"$13Y68Q6gKnObZpQMbhVuXqlmgt-lPCqUL4pRVDG4R9A","event_type":"m.room.member","event_id":"$13Y68Q6gKnObZpQMbhVuXqlmgt-lPCqUL4pRVDG4R9A","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:25:08.430696391Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"3213","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:25:09.003975444Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3213","time":"2026-03-06T19:25:09.004135522Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3214","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:25:13.122975325Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3214","time":"2026-03-06T19:25:13.123383064Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363417948931600@g.us","portal_mxid":"!qUotrLYuNWPxuSMPyh:matrix.theocloud.dev","event_loop_index":1,"action":"handle matrix event","event_id":"$-7gpygdJKbYn6tWFBZD0NCVC4ZeqTTXnE9b5BX7ycMM","event_type":"m.room.member","event_id":"$-7gpygdJKbYn6tWFBZD0NCVC4ZeqTTXnE9b5BX7ycMM","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:25:13.123986571Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"3215","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:25:13.299392401Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3215","time":"2026-03-06T19:25:13.299523634Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3216","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:25:17.389014691Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3216","time":"2026-03-06T19:25:17.389454697Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4915735701057@s.whatsapp.net","portal_mxid":"!JMUjwQJufUGcdRZJPZ:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$gI95bsaGLUfLblp_-arGwpO6wbRlwdK5RejV7iADYLM","event_type":"m.room.member","event_id":"$gI95bsaGLUfLblp_-arGwpO6wbRlwdK5RejV7iADYLM","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:25:17.389997371Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"3217","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:25:17.800967262Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3217","time":"2026-03-06T19:25:17.801080756Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:25:20.305665322Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:25:20.349433126Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7168,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4749_1076_10_437_493_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.000177,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:25:24.492385796Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:25:43.81752545Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:25:43.8612371Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7185,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4768_1097_10_441_499_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.666698,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:25:54.497490755Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:09.379157324Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:09.423714274Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7186,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4768_1097_10_441_518_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.075027,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:26:24.502044202Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:34.68255789Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:34.725006513Z","message":""} +{"level":"debug","transaction_id":"3218","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:26:44.635958192Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3218","time":"2026-03-06T19:26:44.636496116Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363173737697025@g.us","portal_mxid":"!VxYjJEVsvmCCpBhUME:matrix.theocloud.dev","event_loop_index":3,"action":"handle matrix event","event_id":"$mGk4hw4qqS0CT__Mgf4k8VMLQ8DfClNuVD8W_wEfBSE","event_type":"m.room.member","event_id":"$mGk4hw4qqS0CT__Mgf4k8VMLQ8DfClNuVD8W_wEfBSE","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:26:44.637098715Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"3219","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:26:52.674358433Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3219","time":"2026-03-06T19:26:52.674458098Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7187,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4768_1097_10_441_518_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.158327,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:26:54.506650007Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:54.850132417Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:54.901873824Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.278693909Z","message":"1b3cba18b2e5e090d8705840"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.280142576Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":13,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACE32E3C95660B175E6","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","time":"2026-03-06T19:26:59.28026899Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.281160875Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.326003549Z","message":"<0/><0/>"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.349883576Z","message":"38d0933c490bd150d6241224"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.350599947Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.353565377Z","message":"00cfeec8013445c04f58996c"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.354189278Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.400663815Z","message":"39e41dd392ebbae530322537"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.401388637Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.425531201Z","message":"d7c5a01ab495eb0c84173bce"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.426184225Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.426369097Z","message":"45473b7f04189c90369a5c28"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.42696122Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.429302819Z","message":"091aba03b176b68a4f34443b"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.430092525Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.43837141Z","message":"5150fae288e0f9c1725434fc"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.439221809Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":13,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACE32E3C95660B175E6","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","req_id":7189,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":21.239991,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1944157 bytes>","time":"2026-03-06T19:26:59.44704204Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":13,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACE32E3C95660B175E6","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","req_id":7190,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825219447416534_40?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":35.754946,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":10000,"h":832,"mimetype":"video/mp4","size":1944157,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":10000,"h":832,"mimetype":"video/mp4","size":1944157,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/AFEyOmrPHCLEgQtFwKPiojRu"},"m.relates_to":{"event_id":"$mDVptqO1o4aQj3oab_11OOb7sDsAzq6xPMnJFHolzh0","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/AFEyOmrPHCLEgQtFwKPiojRu"},"time":"2026-03-06T19:26:59.483498132Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":13,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACE32E3C95660B175E6","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","event_id":"$JrQ5EXZnuWfRaV6i-rBN4GR-GgJdg8Jsn3H2J_CLb9s","part_id":"120363400918258753@g.us:21079833710744@lid:4ACE32E3C95660B175E6","time":"2026-03-06T19:26:59.483672808Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":14,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC5AFFCE95825AB3803","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","time":"2026-03-06T19:26:59.484379401Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3220","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:26:59.4997648Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3220","time":"2026-03-06T19:26:59.499912446Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3221","content":{"pdu":0,"unstable_edu":17,"unstable_to_device":0},"time":"2026-03-06T19:26:59.515824316Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3221","time":"2026-03-06T19:26:59.51606129Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.544006692Z","message":"710178fe8042ffcef5d00428"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.544223971Z","message":"f9796dc73953612f34853fbe"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.545784874Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.546613761Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":14,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC5AFFCE95825AB3803","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","req_id":7191,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":13.734469,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1767566 bytes>","time":"2026-03-06T19:26:59.568803327Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":14,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC5AFFCE95825AB3803","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","req_id":7192,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825219569264774_41?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":32.257389,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":832,"mimetype":"video/mp4","size":1767566,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":832,"mimetype":"video/mp4","size":1767566,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/nLxwbCabnEqzVSPhsbrrltlt"},"m.relates_to":{"event_id":"$jCz6_5593WFhfzeJXqfNr0CmvpQ1vq39iw8Q44yTao4","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/nLxwbCabnEqzVSPhsbrrltlt"},"time":"2026-03-06T19:26:59.60185559Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":14,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC5AFFCE95825AB3803","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","event_id":"$JRPC-VL-QT5tvr8NgTCgDEQB41gPWCSIp-OFbYZYLdg","part_id":"120363400918258753@g.us:21079833710744@lid:4AC5AFFCE95825AB3803","time":"2026-03-06T19:26:59.602068888Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":15,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A247E32B3A85C3FC601","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","time":"2026-03-06T19:26:59.602819552Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3222","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:26:59.604621062Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3222","time":"2026-03-06T19:26:59.604752784Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.652715589Z","message":"ad08bdfc88379d57e4f94da1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.65367117Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.663317705Z","message":"3905f7643cbb71dbdfdccd60"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.664057474Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":15,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A247E32B3A85C3FC601","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","req_id":7193,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":16.614132,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1787106 bytes>","time":"2026-03-06T19:26:59.682491345Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":15,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A247E32B3A85C3FC601","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","req_id":7194,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825219682882880_42?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":36.822974,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":848,"mimetype":"video/mp4","size":1787106,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":848,"mimetype":"video/mp4","size":1787106,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/pyzDdZEirhXyAkKcNRKhSpkl"},"m.relates_to":{"event_id":"$W1C-1v65tdMF3_yhT9yweUo5d3pNTF84yR4Ku2o3l58","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/pyzDdZEirhXyAkKcNRKhSpkl"},"time":"2026-03-06T19:26:59.720073363Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":15,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A247E32B3A85C3FC601","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","event_id":"$9fymKx36BURNdxMtZ7OyXAfCMcFdmHGHsWTcWn33H2M","part_id":"120363400918258753@g.us:21079833710744@lid:4A247E32B3A85C3FC601","time":"2026-03-06T19:26:59.72028289Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":16,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","time":"2026-03-06T19:26:59.721041167Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3223","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:26:59.727314323Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3223","time":"2026-03-06T19:26:59.727533768Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":16,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","req_id":7195,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":14.338045,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1378282 bytes>","time":"2026-03-06T19:26:59.783352772Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":16,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","req_id":7196,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825219783827839_43?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":34.130766,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1378282,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1378282,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/wUJpfKlphZCjBHbkIgabrydL"},"m.relates_to":{"event_id":"$LoUUSXxyjqzrPSQUaHTYi5uXeeihTYrQJfOrf8GVJ-4","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/wUJpfKlphZCjBHbkIgabrydL"},"time":"2026-03-06T19:26:59.818227917Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":16,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","event_id":"$o2nv8qKGu0AHQikqZbslXAGeoDPEc6q3VP4um9T-LAo","part_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","time":"2026-03-06T19:26:59.81840371Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":17,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","time":"2026-03-06T19:26:59.819045769Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.823790848Z","message":"02de7eab93df7e2843afc263"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.824430393Z","message":""} +{"level":"debug","transaction_id":"3224","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:26:59.825385625Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3224","time":"2026-03-06T19:26:59.825550103Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.826074967Z","message":"776cd0dcb8d2a3880af9c891"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.826802933Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.829995699Z","message":"d3f34cfbde7d661a2ee237b1"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.830834015Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.849812446Z","message":"4ac30944671caf626be5813a"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.850619054Z","message":""} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":17,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","req_id":7197,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":13.997146,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1384207 bytes>","time":"2026-03-06T19:26:59.882353743Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":17,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","req_id":7198,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825219882882309_44?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":33.846299,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1384207,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1384207,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/vIjRDZCeCPuVXXJYcLMxNiiq"},"m.relates_to":{"event_id":"$UiBp8PkU6r68q_bXIHKZ28_2UlfvmC5FozI8jMbMCWs","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/vIjRDZCeCPuVXXJYcLMxNiiq"},"time":"2026-03-06T19:26:59.917031304Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":17,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","event_id":"$4XdPeeGL6TLADaMfkaBIOmZjKtWuYUE_LWwv9iSBnIQ","part_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","time":"2026-03-06T19:26:59.91720123Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":18,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AB6BB671DF10ED6F6D1","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","time":"2026-03-06T19:26:59.917845315Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:26:59.92229147Z","message":"a9c02b85d218a7e56af8671e"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:26:59.922891973Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA37A57C47ECB2920B4","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","time":"2026-03-06T19:26:59.923036127Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3225","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:26:59.924684892Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3225","time":"2026-03-06T19:26:59.924790354Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA37A57C47ECB2920B4","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","req_id":7199,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":17.393292,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1517653 bytes>","time":"2026-03-06T19:27:00.042152839Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:27:00.054100256Z","message":"17915f9195d868893a98316b"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:27:00.054749369Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:27:00.054798818Z","message":"8590fb2ca9180c78c2c6ed42"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:27:00.055324869Z","message":""} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA37A57C47ECB2920B4","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","req_id":7201,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825220042540743_9?ts=1772825219000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":39.890304,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":848,"mimetype":"video/mp4","size":1517653,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":9000,"h":848,"mimetype":"video/mp4","size":1517653,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/PJeavXhzPJMVRPKDelqirkcU"},"m.relates_to":{"event_id":"$pkop882vFFfa8_q4Z2T-T8eW2tIc7ssmQChsK85ejtA","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/PJeavXhzPJMVRPKDelqirkcU"},"time":"2026-03-06T19:27:00.082732974Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":4,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AA37A57C47ECB2920B4","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","event_id":"$rPguIiaDgTOy2YaiW2Z9FLur8pKzzXFgJIvIm52Y4k8","part_id":"120363163455706585@g.us:280664972746828@lid:3AA37A57C47ECB2920B4","time":"2026-03-06T19:27:00.082932723Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A90C4AA038FED222D83","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","time":"2026-03-06T19:27:00.083666206Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:27:00.087849614Z","message":"913ea250397f591659a01a71"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:27:00.088567033Z","message":""} +{"level":"debug","transaction_id":"3226","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:00.098943838Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3226","time":"2026-03-06T19:27:00.099047274Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":18,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AB6BB671DF10ED6F6D1","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","req_id":7200,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":74.257695,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2285389 bytes>","time":"2026-03-06T19:27:00.109688292Z","message":"Request completed"} +{"level":"debug","transaction_id":"3227","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:27:00.113461029Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3227","time":"2026-03-06T19:27:00.113573614Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":18,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AB6BB671DF10ED6F6D1","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","req_id":7202,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825220110111746_45?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":33.810959,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":12000,"h":832,"mimetype":"video/mp4","size":2285389,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":12000,"h":832,"mimetype":"video/mp4","size":2285389,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/wPWyiWVdDvSAefGyMHBSzstE"},"m.relates_to":{"event_id":"$h77mlmjJ9wMkIDVSyNnVn3XaUkSqjCFyVAYPIBI94xA","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/wPWyiWVdDvSAefGyMHBSzstE"},"time":"2026-03-06T19:27:00.144255223Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":18,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AB6BB671DF10ED6F6D1","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","event_id":"$jcOsrS5pW4mV88v-JvNuT54lN4ryaxbOooESd5ZCRQw","part_id":"120363400918258753@g.us:21079833710744@lid:4AB6BB671DF10ED6F6D1","time":"2026-03-06T19:27:00.144419632Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":19,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A5AFA097521B7FDA3AD","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","time":"2026-03-06T19:27:00.144958814Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3228","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:00.152177843Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3228","time":"2026-03-06T19:27:00.152351401Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A90C4AA038FED222D83","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","req_id":7203,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":36.702356,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1356811 bytes>","time":"2026-03-06T19:27:00.171778847Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A90C4AA038FED222D83","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","req_id":7204,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825220172130782_10?ts=1772825220000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":39.525517,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1356811,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1356811,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/kFWgDYHgVCgLynvXYMLdCtAq"},"m.relates_to":{"event_id":"$-SiDi6reIysRbH59GBLeqvlbnzSKqInkmIfGAKpY4jY","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/kFWgDYHgVCgLynvXYMLdCtAq"},"time":"2026-03-06T19:27:00.211916881Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":5,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A90C4AA038FED222D83","sender_id":"280664972746828@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","event_id":"$VgCSekw6KkariPCZ1pE2QIpyynbrKhKvWCxgxU6d5v8","part_id":"120363163455706585@g.us:280664972746828@lid:3A90C4AA038FED222D83","time":"2026-03-06T19:27:00.21209875Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A0BE7B55D1CDF3B1AA4","sender_id":"44419206123644@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"remote_target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","time":"2026-03-06T19:27:00.212845503Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3229","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:00.22263731Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3229","time":"2026-03-06T19:27:00.222760861Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A0BE7B55D1CDF3B1AA4","sender_id":"44419206123644@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"remote_target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","req_id":7205,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":22.515031,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<2390521 bytes>","time":"2026-03-06T19:27:00.389446887Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A0BE7B55D1CDF3B1AA4","sender_id":"44419206123644@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"remote_target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","req_id":7206,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21LylQhmywHgJdpUtHoE:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825220389967421_37?ts=1772825220000&user_id=%40whatsapp_lid-44419206123644%3Amatrix.theocloud.dev","duration":39.415517,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"😅💪🏽","filename":"video.mp4","info":{"duration":12000,"h":832,"mimetype":"video/mp4","size":2390521,"w":464},"m.mentions":{},"m.new_content":{"body":"😅💪🏽","filename":"video.mp4","info":{"duration":12000,"h":832,"mimetype":"video/mp4","size":2390521,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/OxAXVekCecYWLpeNDMfnbXqY"},"m.relates_to":{"event_id":"$A2orisfC8odry7u2GnQrgOTNa-kQ417GMf85Iez1fqg","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/OxAXVekCecYWLpeNDMfnbXqY"},"time":"2026-03-06T19:27:00.429778732Z","message":"Request completed"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":6,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A0BE7B55D1CDF3B1AA4","sender_id":"44419206123644@lid","chat_id":"120363163455706585@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-44419206123644","sender_login":"4915776207693"},"remote_target_message_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","event_id":"$-PJn0cCIiFRLfJcOKr5tJs1hGhMdUEcd1Sz6AyX_yHE","part_id":"120363163455706585@g.us:44419206123644@lid:3A0BE7B55D1CDF3B1AA4","time":"2026-03-06T19:27:00.430044133Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"3230","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:00.439993573Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3230","time":"2026-03-06T19:27:00.440113702Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3231","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:27:00.457021451Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3231","time":"2026-03-06T19:27:00.457106798Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":19,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A5AFA097521B7FDA3AD","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","req_id":7207,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":191.157267,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<42663650 bytes>","time":"2026-03-06T19:27:01.575968874Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":19,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A5AFA097521B7FDA3AD","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","req_id":7208,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825221597098305_46?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":32.085646,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":227000,"h":832,"mimetype":"video/mp4","size":42663650,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":227000,"h":832,"mimetype":"video/mp4","size":42663650,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/pviwKMRWoqPbSrTJhufOnQQQ"},"m.relates_to":{"event_id":"$X302UYo58oDj6WaRKfIIv5w1e7i6j777WczzM43h-ic","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/pviwKMRWoqPbSrTJhufOnQQQ"},"time":"2026-03-06T19:27:01.629548738Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":19,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4A5AFA097521B7FDA3AD","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","event_id":"$TFvmVjCzFFh95f3d-Ms_UCpaqCnT7BOFLyWjvoOztDw","part_id":"120363400918258753@g.us:21079833710744@lid:4A5AFA097521B7FDA3AD","time":"2026-03-06T19:27:01.629741922Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":20,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","time":"2026-03-06T19:27:01.630565082Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3232","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:01.638057893Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3232","time":"2026-03-06T19:27:01.638221324Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":20,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","req_id":7209,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":14.715543,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1627530 bytes>","time":"2026-03-06T19:27:01.701898973Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":20,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","req_id":7210,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825221702406027_47?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":38.632306,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1627530,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1627530,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/pVjLlAmpqGITyzrPrWomgojl"},"m.relates_to":{"event_id":"$pu4HHMZdkakx54HaYwnru5UDsbDE5dfKbgVo9fqNnkA","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/pVjLlAmpqGITyzrPrWomgojl"},"time":"2026-03-06T19:27:01.741408217Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":20,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","event_id":"$RWRDqcYK3PDAMY54ynhF3MHQz7b1y_D9luTXIBQHRBE","part_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","time":"2026-03-06T19:27:01.741600074Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":21,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","time":"2026-03-06T19:27:01.742322731Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3233","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:01.745709379Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3233","time":"2026-03-06T19:27:01.745858981Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":21,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","req_id":7211,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":8.924017,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<578161 bytes>","time":"2026-03-06T19:27:01.776221481Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":21,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","req_id":7212,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825221776678808_11?ts=1772825219000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":41.412095,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":3000,"h":848,"mimetype":"video/mp4","size":578161,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":3000,"h":848,"mimetype":"video/mp4","size":578161,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/bpeKeDNdKWBTSUuoJCTgKgtc"},"m.relates_to":{"event_id":"$sgL3YC2VF_OveaiMbixWT-6GQ35j_kSpjhhQ17nC8YQ","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/bpeKeDNdKWBTSUuoJCTgKgtc"},"time":"2026-03-06T19:27:01.818394368Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":21,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","event_id":"$rLLDAzWdtuqckLOknXJMx8UVyKm0RPvGJf9P6UDmdeE","part_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","time":"2026-03-06T19:27:01.818564154Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":22,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AA6A168C55ECC356EEC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","time":"2026-03-06T19:27:01.819452756Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3234","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:01.826179329Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3234","time":"2026-03-06T19:27:01.82635114Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":22,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AA6A168C55ECC356EEC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","req_id":7213,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":48.291901,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<7104119 bytes>","time":"2026-03-06T19:27:02.083445381Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":22,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AA6A168C55ECC356EEC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","req_id":7214,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825222086602878_48?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":32.895746,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":38000,"h":832,"mimetype":"video/mp4","size":7104119,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":38000,"h":832,"mimetype":"video/mp4","size":7104119,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/BoIEmDVQAQaAxgcgwqXBTBzr"},"m.relates_to":{"event_id":"$fQuXtzwhSgCNkw6IasvyILreRqtGeZu7CGaGu6ovSm0","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/BoIEmDVQAQaAxgcgwqXBTBzr"},"time":"2026-03-06T19:27:02.119768564Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":22,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AA6A168C55ECC356EEC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","event_id":"$c9fJQJSN71ezeJHlVGPcxjRVgzTAiF996-SD__srPEI","part_id":"120363400918258753@g.us:21079833710744@lid:4AA6A168C55ECC356EEC","time":"2026-03-06T19:27:02.119949805Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":23,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","time":"2026-03-06T19:27:02.120667224Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3235","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:02.127006661Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3235","time":"2026-03-06T19:27:02.127164434Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":23,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","req_id":7215,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":14.61462,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1384207 bytes>","time":"2026-03-06T19:27:02.181957527Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":23,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","req_id":7216,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825222182428752_49?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":33.925639,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1384207,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1384207,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/LyqCinOByDarlvCOZyqSfgrT"},"m.relates_to":{"event_id":"$UiBp8PkU6r68q_bXIHKZ28_2UlfvmC5FozI8jMbMCWs","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/LyqCinOByDarlvCOZyqSfgrT"},"time":"2026-03-06T19:27:02.216670148Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":23,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AFC8EBD71FF2E3557FC","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","event_id":"$OyfcJr7ZJklQKibrh0dKR3m89r6xZ2zoe8KTF2jjQ4k","part_id":"120363400918258753@g.us:21079833710744@lid:4AFC8EBD71FF2E3557FC","time":"2026-03-06T19:27:02.216849992Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":24,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","time":"2026-03-06T19:27:02.217516147Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3236","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:02.221692641Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3236","time":"2026-03-06T19:27:02.221821709Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":24,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","req_id":7217,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":14.547083,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1378282 bytes>","time":"2026-03-06T19:27:02.279583933Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":24,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","req_id":7218,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825222280012276_50?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":35.763747,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1378282,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":7000,"h":848,"mimetype":"video/mp4","size":1378282,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/dmbwUJTuUIghdIpukuOkwHOD"},"m.relates_to":{"event_id":"$LoUUSXxyjqzrPSQUaHTYi5uXeeihTYrQJfOrf8GVJ-4","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/dmbwUJTuUIghdIpukuOkwHOD"},"time":"2026-03-06T19:27:02.31612237Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":24,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AC1E7144ABD1FCFD952","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","event_id":"$5ZwhDckm5viTTL1FWq65viQXuKpr2PXOpgG7tY3BJto","part_id":"120363400918258753@g.us:21079833710744@lid:4AC1E7144ABD1FCFD952","time":"2026-03-06T19:27:02.316350125Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":25,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","time":"2026-03-06T19:27:02.317116364Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3237","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:02.323927445Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3237","time":"2026-03-06T19:27:02.324020056Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":25,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","req_id":7219,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":15.771277,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<1627530 bytes>","time":"2026-03-06T19:27:02.389893544Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":25,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","req_id":7220,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825222390440059_51?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":37.246497,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1627530,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":8000,"h":848,"mimetype":"video/mp4","size":1627530,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/RUscNnfamJavOpydMgioFmXW"},"m.relates_to":{"event_id":"$pu4HHMZdkakx54HaYwnru5UDsbDE5dfKbgVo9fqNnkA","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/RUscNnfamJavOpydMgioFmXW"},"time":"2026-03-06T19:27:02.428041215Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":25,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4AD612CDFDE7C42B6655","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","event_id":"$DkCxVpmU39Lm-kPhVgx8kySAQ0KM39V2tgsf63Z06cI","part_id":"120363400918258753@g.us:21079833710744@lid:4AD612CDFDE7C42B6655","time":"2026-03-06T19:27:02.428240963Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":26,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","time":"2026-03-06T19:27:02.429116366Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3238","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:02.436362913Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3238","time":"2026-03-06T19:27:02.436507975Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":26,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","req_id":7221,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":67.307278,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<16606791 bytes>","time":"2026-03-06T19:27:02.976265059Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":26,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","req_id":7222,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825222984669799_10?ts=1772825219000&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":24.300546,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Das Wort zum Ende des Jahres 🙌🏻","filename":"video.mp4","info":{"duration":99000,"h":848,"mimetype":"video/mp4","size":16606791,"w":480},"m.mentions":{},"m.new_content":{"body":"Das Wort zum Ende des Jahres 🙌🏻","filename":"video.mp4","info":{"duration":99000,"h":848,"mimetype":"video/mp4","size":16606791,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/MfHzHPlnvAgptOdaTbIAMULk"},"m.relates_to":{"event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/MfHzHPlnvAgptOdaTbIAMULk"},"time":"2026-03-06T19:27:03.009326331Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":26,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","event_id":"$t-lsfZ2OxVkhp3ddiaa2WmzcbN-dxRInmRxCdwpVrD4","part_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","time":"2026-03-06T19:27:03.009520004Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":27,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","time":"2026-03-06T19:27:03.010250763Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3239","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:03.02530497Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3239","time":"2026-03-06T19:27:03.025435714Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3240","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:27:03.036967919Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3240","time":"2026-03-06T19:27:03.037082879Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":27,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","req_id":7223,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":9.428418,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<578161 bytes>","time":"2026-03-06T19:27:03.041633238Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":27,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","req_id":7224,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825223041953604_12?ts=1772825219000&user_id=%40whatsapp_lid-280664972746828%3Amatrix.theocloud.dev","duration":28.54807,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":3000,"h":848,"mimetype":"video/mp4","size":578161,"w":480},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":3000,"h":848,"mimetype":"video/mp4","size":578161,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/gQbtArvPEwTUnoceHJzyzOSK"},"m.relates_to":{"event_id":"$sgL3YC2VF_OveaiMbixWT-6GQ35j_kSpjhhQ17nC8YQ","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/gQbtArvPEwTUnoceHJzyzOSK"},"time":"2026-03-06T19:27:03.070804091Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":27,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3A7DE9F039A0862AF6D2","sender_id":"280664972746828@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-280664972746828","sender_login":"4915215159414"},"remote_target_message_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","event_id":"$zZOSn3fB7x3LtSXNnAbtaGsCyM-IkX2hs_67s92dovE","part_id":"120363400918258753@g.us:280664972746828@lid:3A7DE9F039A0862AF6D2","time":"2026-03-06T19:27:03.071018925Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":28,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACBF52899206373688A","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","time":"2026-03-06T19:27:03.071757157Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3241","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:03.077318832Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3241","time":"2026-03-06T19:27:03.077504332Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":28,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACBF52899206373688A","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","req_id":7225,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":29.766676,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<3836395 bytes>","time":"2026-03-06T19:27:03.30579111Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":28,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACBF52899206373688A","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","req_id":7226,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825223306288596_52?ts=1772825219000&user_id=%40whatsapp_lid-21079833710744%3Amatrix.theocloud.dev","duration":35.289518,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"","filename":"video.mp4","info":{"duration":20000,"h":832,"mimetype":"video/mp4","size":3836395,"w":464},"m.mentions":{},"m.new_content":{"body":"","filename":"video.mp4","info":{"duration":20000,"h":832,"mimetype":"video/mp4","size":3836395,"w":464},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/JnrEEwmGRkMvBOWWaDPVUGnV"},"m.relates_to":{"event_id":"$mf0G5pSdEBQDOjuTx4IXQMgp-E-yHRgjVxBjSyqcLxU","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/JnrEEwmGRkMvBOWWaDPVUGnV"},"time":"2026-03-06T19:27:03.341955611Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":28,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"4ACBF52899206373688A","sender_id":"21079833710744@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-21079833710744","sender_login":"4917642922234"},"remote_target_message_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","event_id":"$s9U2aEy3sO1ASUm5QD_w8Ib0Mlx7AHXLhYbc-zZnwKw","part_id":"120363400918258753@g.us:21079833710744@lid:4ACBF52899206373688A","time":"2026-03-06T19:27:03.342175544Z","message":"Sent message part edit to Matrix"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":29,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","time":"2026-03-06T19:27:03.342949117Z","message":"Handling remote event"} +{"level":"debug","transaction_id":"3242","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:03.349099491Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3242","time":"2026-03-06T19:27:03.349249861Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":29,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","req_id":7227,"method":"POST","url":"http://synapse:8008/_matrix/media/v3/upload?filename=video.mp4&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":89.652872,"status_code":200,"response_length":69,"response_mime":"application/json","req_body":"<16606791 bytes>","time":"2026-03-06T19:27:03.937856046Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":29,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","req_id":7228,"method":"PUT","url":"http://synapse:8008/_matrix/client/v3/rooms/%21YKbXdgLzcVyqdBUAME:matrix.theocloud.dev/send/m.room.message/mautrix-go_1772825223946826020_11?ts=1772825220000&user_id=%40whatsapp_lid-59622887026730%3Amatrix.theocloud.dev","duration":26.493732,"status_code":200,"response_length":59,"response_mime":"application/json","req_body":{"body":"Das Wort zum Ende des Jahres 🙌🏻","filename":"video.mp4","info":{"duration":99000,"h":848,"mimetype":"video/mp4","size":16606791,"w":480},"m.mentions":{},"m.new_content":{"body":"Das Wort zum Ende des Jahres 🙌🏻","filename":"video.mp4","info":{"duration":99000,"h":848,"mimetype":"video/mp4","size":16606791,"w":480},"m.mentions":{},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/fWrPgJxZuacTcYrMzKrzpXQK"},"m.relates_to":{"event_id":"$o9Sg0bbion7PkxPirtA1f9vGC84nptAxKdSF9CBhclg","rel_type":"m.replace"},"msgtype":"m.video","url":"mxc://matrix.theocloud.dev/fWrPgJxZuacTcYrMzKrzpXQK"},"time":"2026-03-06T19:27:03.973671476Z","message":"Request completed"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":29,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventEdit","message_id":"3AB2964CC0DFA219FB0F","sender_id":"59622887026730@lid","chat_id":"120363400918258753@g.us","from_me":false,"wa_event_type":"media retry","remote_sender":{"user_id":"lid-59622887026730","sender_login":"4917680818036"},"remote_target_message_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","event_id":"$BDG3IZN16IrOLNJMU0Ni3ENwJhCfovAxt50ICx7ESLY","part_id":"120363400918258753@g.us:59622887026730@lid:3AB2964CC0DFA219FB0F","time":"2026-03-06T19:27:03.973876673Z","message":"Sent message part edit to Matrix"} +{"level":"debug","transaction_id":"3243","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:03.979462722Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3243","time":"2026-03-06T19:27:03.979575168Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:27:20.84343242Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:27:20.887026735Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7188,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4769_1100_10_442_533_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.507946,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:27:24.511674227Z","message":"Request completed"} +{"level":"debug","transaction_id":"3244","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:27.266905537Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3244","time":"2026-03-06T19:27:27.267373898Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363163455706585@g.us","portal_mxid":"!LylQhmywHgJdpUtHoE:matrix.theocloud.dev","event_loop_index":7,"action":"handle matrix event","event_id":"$tZ3iuBSIBbkQ7jwlfXfTuWA_DV4z5CRAteJI78rdoAQ","event_type":"m.room.member","event_id":"$tZ3iuBSIBbkQ7jwlfXfTuWA_DV4z5CRAteJI78rdoAQ","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:27:27.267932985Z","message":"Sending implicit read receipt for event"} +{"level":"debug","transaction_id":"3245","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:27:30.13047439Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3245","time":"2026-03-06T19:27:30.13085964Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"120363400918258753@g.us","portal_mxid":"!YKbXdgLzcVyqdBUAME:matrix.theocloud.dev","event_loop_index":30,"action":"handle matrix event","event_id":"$rhyCfVjCUdc7XFbwlJ5pCjxbmBq3OY_gH7y-UZF02SQ","event_type":"m.room.member","event_id":"$rhyCfVjCUdc7XFbwlJ5pCjxbmBq3OY_gH7y-UZF02SQ","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:27:30.13146601Z","message":"Sending implicit read receipt for event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:27:48.823460149Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:27:48.866075205Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7229,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4789_1104_10_442_533_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.562215,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:27:54.516701452Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:28:10.154892295Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:28:10.198493803Z","message":""} +{"level":"debug","transaction_id":"3248","content":{"pdu":0,"unstable_edu":3,"unstable_to_device":0},"time":"2026-03-06T19:28:12.560046953Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3248","time":"2026-03-06T19:28:12.560182726Z","message":"Finished dispatching events from transaction"} +{"level":"debug","transaction_id":"3249","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:28:12.56468252Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3249","time":"2026-03-06T19:28:12.564777365Z","message":"Finished dispatching events from transaction"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7230,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1110_10_442_537_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30003.518857,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:28:24.52086614Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:28:39.395635408Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:28:39.439661556Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7231,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1112_10_442_545_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30006.17582,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:28:54.527537629Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:29:07.452972055Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:29:07.501177909Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7232,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1115_10_442_545_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30003.81016,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:29:24.531906387Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:29:33.361898817Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:29:33.405606694Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7233,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1115_10_442_545_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30003.463509,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:29:54.535830366Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:30:01.786200905Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:30:01.831048326Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7234,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1118_10_442_545_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.43891,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:30:24.540744552Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:30:30.913145403Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:30:30.966192298Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:30:48.073887823Z","message":"080908030812"} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7235,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1118_10_442_548_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.167218,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:30:54.545398221Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:30:56.404361606Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:30:56.447522897Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:31:19.648226016Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:31:19.691857838Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7236,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1121_10_442_549_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.488675,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:31:24.550397932Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:31:45.336649768Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:31:45.387173191Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7237,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1121_10_442_549_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30004.004356,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:31:54.554854934Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:32:08.243608128Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:32:08.286087071Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7238,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1124_10_442_549_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30003.978096,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:32:24.559285257Z","message":"Request completed"} +{"level":"debug","transaction_id":"3250","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:32:26.612228639Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3250","time":"2026-03-06T19:32:26.612392558Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:32:26.612919028Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":35,"action":"handle matrix event","event_id":"","event_type":"m.typing","user_id":"@theo:matrix.theocloud.dev","typing":true,"time":"2026-03-06T19:32:26.613177374Z","message":"Sent typing event"} +{"level":"debug","transaction_id":"3251","content":{"pdu":0,"unstable_edu":1,"unstable_to_device":0},"time":"2026-03-06T19:32:29.238690728Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3251","time":"2026-03-06T19:32:29.238797168Z","message":"Finished dispatching events from transaction"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:32:29.239058447Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":36,"action":"handle matrix event","event_id":"","event_type":"m.typing","user_id":"@theo:matrix.theocloud.dev","typing":false,"time":"2026-03-06T19:32:29.239314628Z","message":"Sent typing event"} +{"level":"debug","transaction_id":"3252","content":{"pdu":1,"unstable_edu":0,"unstable_to_device":0},"time":"2026-03-06T19:32:29.292907896Z","message":"Starting handling of transaction"} +{"level":"debug","transaction_id":"3252","time":"2026-03-06T19:32:29.292988075Z","message":"Finished dispatching events from transaction"} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":37,"action":"handle matrix event","event_id":"$OGXpruIRwESfbxgP-SABXrEyyxYQm9Z4FQREPOyR8mg","event_type":"m.room.message","event_id":"$OGXpruIRwESfbxgP-SABXrEyyxYQm9Z4FQREPOyR8mg","sender":"@theo:matrix.theocloud.dev","subaction":"implicit read receipt","time":"2026-03-06T19:32:29.293374651Z","message":"Sending implicit read receipt for event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:32:29.294750191Z","message":"Replacing SendMessage destination with LID as migration timestamp is set 4917620338641@s.whatsapp.net -> 236399445938270@lid"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","time":"2026-03-06T19:32:29.295135859Z","message":"Stored message secret key for outgoing message 3EB023EBC4443F79C5B8B5"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:32:29.296098423Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:32:29.906453105Z","message":"089ab2eb057a11a81275d35845ffd39270fca31bf4e830578170ed60a99116ff35e9648c0e000001a1eca73cd4255007f1629b0eadc6160d92d499333adb3e56024225dc1b161b34d55118f64ebad9eb5440f4822833f9529dda53ae0910a80df17cc85c975fad4efa416f23ecb9224ecbf7822596ef34dae96db2d362d567ae18a8959fb23a490e000036ce4073e67a0ca257e5021bcd0ee3bfc2526425ccab554e51be9a281ab9c3b51f"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:32:29.9099985Z","message":"d7333ebfdd58c93d82017d2046a578e004012343cea31cbeb2e2d0"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:32:29.957303255Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:32:31.762601995Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","lid":"236399445938270@lid","pn":"4917620338641@s.whatsapp.net","message_id":["3EB023EBC4443F79C5B8B5"],"evt_type":"receipt","time":"2026-03-06T19:32:31.762775693Z","message":"Forced LID DM sender to phone number in incoming message"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:32:31.763489619Z","message":""} +{"level":"debug","portal_id":"4917620338641@s.whatsapp.net","portal_mxid":"!RNSkXRfMcfgheHrFjq:matrix.theocloud.dev","event_loop_index":38,"action":"handle remote event","source_id":"4917641870516","bridge_evt_type":"RemoteEventDeliveryReceipt","remote_sender":{"user_id":"4917620338641"},"time":"2026-03-06T19:32:31.763571753Z","message":"Handling remote event"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:32:33.401506121Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:32:33.444016844Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:32:48.073002552Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","lid":"236399445938270@lid","pn":"4917620338641@s.whatsapp.net","message_id":["3EB023EBC4443F79C5B8B5"],"evt_type":"receipt","time":"2026-03-06T19:32:48.073125195Z","message":"Forced LID DM sender to phone number in own message sent from another device"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:32:48.073184281Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:32:53.837850145Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:32:53.881001183Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7239,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4791_1124_10_442_549_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30003.875729,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:32:54.563653303Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:33:23.485271997Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:33:23.529513902Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7240,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4792_1127_12_442_550_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30005.51176,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:33:24.569668275Z","message":"Request completed"} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Send","time":"2026-03-06T19:33:46.696974195Z","message":""} +{"level":"debug","user_mxid":"@theo:matrix.theocloud.dev","login_id":"4917641870516","component":"whatsmeow","sublogger":"Recv","time":"2026-03-06T19:33:46.742837626Z","message":""} +{"level":"debug","as_user_id":"@whatsappbot:matrix.theocloud.dev","req_id":7241,"method":"GET","url":"http://synapse:8008/_matrix/client/v3/sync?filter=0&since=s4792_1130_12_442_552_1_86_89_0_1_1_1&timeout=30000&user_id=%40whatsappbot%3Amatrix.theocloud.dev","duration":30003.459112,"status_code":200,"response_length":146,"response_mime":"application/json","time":"2026-03-06T19:33:54.573623965Z","message":"Request completed"} diff --git a/matrix/mautrix-whatsapp/mautrix-whatsapp.db b/matrix/mautrix-whatsapp/mautrix-whatsapp.db new file mode 100644 index 0000000..ab4de73 Binary files /dev/null and b/matrix/mautrix-whatsapp/mautrix-whatsapp.db differ diff --git a/matrix/mautrix-whatsapp/mautrix-whatsapp.db-shm b/matrix/mautrix-whatsapp/mautrix-whatsapp.db-shm new file mode 100644 index 0000000..e788c61 Binary files /dev/null and b/matrix/mautrix-whatsapp/mautrix-whatsapp.db-shm differ diff --git a/matrix/mautrix-whatsapp/mautrix-whatsapp.db-wal b/matrix/mautrix-whatsapp/mautrix-whatsapp.db-wal new file mode 100644 index 0000000..7f3b2c4 Binary files /dev/null and b/matrix/mautrix-whatsapp/mautrix-whatsapp.db-wal differ diff --git a/matrix/mautrix-whatsapp/registration.yaml b/matrix/mautrix-whatsapp/registration.yaml new file mode 100644 index 0000000..8683e2b --- /dev/null +++ b/matrix/mautrix-whatsapp/registration.yaml @@ -0,0 +1,14 @@ +id: whatsapp +url: http://mautrix-whatsapp:29318 +as_token: VNdDHV2vfcmIpy6KgCKvNMocxetQ951IqS7NHGJQRWXvf5QieY8klkRKZGcvzdkO +hs_token: KHsANomVJAjTbu88bhmAF93RrfqHh8hw9md8Kg8WVMmXvYFjjScj5ooJSeCe04CM +sender_localpart: WALPrykeO6l4gP4gsKubsPmTlJZbyPcU +rate_limited: false +namespaces: + users: + - regex: ^@whatsappbot:matrix\.theocloud\.dev$ + exclusive: true + - regex: ^@whatsapp_.*:matrix\.theocloud\.dev$ + exclusive: true +de.sorunome.msc2409.push_ephemeral: true +receive_ephemeral: true